
.content-wrapper {
    width: 715px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.highlight-section {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.red-arrow {
    color: #cc0000;
    font-size: 12px;
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.highlight-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.highlight-image {
    width: 515px;
    aspect-ratio: 4/3;
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.itinerary-wrapper {
    width: 100%;
}

.itinerary-title {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}


.collapse-all-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.collapse-btn {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-icon {
    background: #b32121;
    color: #fff;
    width: 16px;
    height: 16px;
    line-height: 14px;
    text-align: center;
    border-radius: 2px;
    margin-right: 8px;
    font-weight: bold;
}


.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.day-label {
    color: #b32121;
    font-size: 18px;
    margin: 0;
}

.sub-text { font-weight: normal; }

.minus-icon {
    background: #b32121;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}


.description-text p { font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
.description-text h4 { margin: 20px 0 10px; font-size: 16px; }

.meta-row { margin: 20px 0; font-size: 14px; }
.meta-item { margin-bottom: 8px; }


.image-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.grid-item { width: 330px; text-align: center; }
.ratio-box { width: 100%; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 10px; }
.ratio-box img { width: 100%; height: 100%; object-fit: cover; }
.grid-item p { font-size: 13px; color: #666; }


.state-toggle { display: none; }


#master-collapse:checked ~ .day-content {
    display: none;
}


.state-toggle:not(:checked) ~ .day-content {
    display: none;
}