.eet-shell {
    width: min(1180px, calc(100% - 93px));
    margin-inline: auto;
}

.c4t-journal {
    width: var(--container);
    margin: 0 auto;
    padding: 74px 0 clamp(76px, 9vw, 126px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 20px;
    padding: 34px clamp(18px, 4vw, 64px);
}

.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 0 14px 35px rgba(13, 59, 76, .10);
    overflow: hidden;
    transition: .25s;
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-card div {
    padding: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 0;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
    background: rgba(215, 181, 154, .94);
    color: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.blog-card h3 {
    color: var(--navy);
    font-size: 32px;
    margin: 12px 0 6px;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3vw, 39px);
    line-height: .95;
    font-weight: 500;
    height: 111px;
}

.blog-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════
   SHOW MORE FUNCTIONALITY
═══════════════════════════════════════ */
.dest-description-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.dest-description {
    font-family: var(--serif-body);
    color: rgba(31, 31, 31, 0.78);
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    overflow: hidden;
}

.dest-description.collapsed {
    max-height: 3.5em;
    /* Show approximately 2 lines */
    position: relative;
}

/* .dest-description.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(to bottom, transparent, var(--limestone-ivory));
    pointer-events: none;
} */

.dest-description.expanded {
    max-height: max-content
}

.dest-description.expanded::after {
    display: none;
}

.dest-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 24px;
    background: transparent;
    color: var(--deep-navy);
    border: 1px solid var(--antique-gold);
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
}

.dest-toggle-btn:hover {
    background: var(--deep-navy);
    color: var(--limestone-ivory);
    border-color: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.15);
}

.dest-toggle-btn:active {
    transform: translateY(0);
}

.toggle-icon {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.toggle-text {
    pointer-events: none;
}

.c4t-journal-upgraded .c4t-section-head p {
    max-width: 100% !important;
}

.c4t-section-head {
    text-align: center;
    /* max-width: 100%; */
    margin: 0 auto clamp(42px, 6vw, 72px);
    margin-top: 52px;
    margin-bottom: 20px;
}


/* ═══════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════ */

/* Toggle Description Styles */
.dest-description-wrapper {
    margin-top: 20px;
}

.dest-description {
    font-family: var(--ui, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.dest-description.collapsed {
    max-height: 4.8em;
    /* Show approximately 3 lines */
    position: relative;
}

/* .dest-description.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.2em;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
} */

.dest-toggle-btn {
    /* display: inline-flex; */
    /* align-items: center; */
    /* gap: 8px; */
    /* background: none; */
    /* border: none; */
    /* color: var(--navy, #2c3e50); */
    /* font-family: var(--ui, 'Inter', sans-serif); */
    /* font-size: 14px; */
    /* font-weight: 600; */
    /* cursor: pointer; */
    /* padding: 8px 0; */
    /* transition: all 0.2s ease; */
}

.dest-toggle-btn:hover {
    color: var(--gold, #d7b59a);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

/* Make all children non-clickable so button gets all clicks */
.dest-toggle-btn * {
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dest-description {
        font-size: 14px;
    }

    .dest-description.collapsed {
        max-height: 4.2em;
        /* Adjust for smaller font */
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .dest-toggle-btn {
        font-size: 13px;
    }

    .c4t-section-head {

        padding-left: 15px;
        padding-right: 15px;
    }
}


.c4t-journal {
    padding-bottom: 0;
}



.blog-grid {
    width: min(1426px, 100%);
    margin: 0 auto;
}

.c4t-journeys-showcase {
    padding-bottom: 0;
    padding-top: 59px;
}