.single-destinatie {
    background: #f6f4ee;
}

.single-destinatie__hero {
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(201, 165, 92, .23), transparent 32%),
        linear-gradient(135deg, #07100c 0%, #123021 55%, #28482f 100%);
}

.single-destinatie__hero-inner {
    max-width: 900px;
}

.single-destinatie__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1rem;
}

.single-destinatie__meta span {
    display: inline-flex;
    padding: .45rem .75rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    color: #f1d38b;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.single-destinatie__hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: .98;
}

.single-destinatie__lead {
    max-width: 760px;
    margin: 1.4rem 0 0;
    color: rgba(255,255,255,.8);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.single-destinatie__duration {
    margin-top: 1rem;
    color: rgba(255,255,255,.72);
}

.single-destinatie__media {
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
}

.single-destinatie__media figure {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(8, 25, 17, .2);
}

.single-destinatie__image {
    display: block;
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}

.single-destinatie__content-section {
    padding-block: clamp(3rem, 7vw, 6rem);
}

.single-destinatie__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.single-destinatie__content {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(15, 45, 30, .1);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(10, 31, 20, .07);
    color: #4f5d54;
    line-height: 1.8;
}

.single-destinatie__content h2,
.single-destinatie__content h3 {
    color: #142b20;
}

.single-destinatie__content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.single-destinatie__aside {
    position: sticky;
    top: 110px;
}

.single-destinatie__info-card {
    padding: 1.5rem;
    border: 1px solid rgba(15, 45, 30, .1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(10, 31, 20, .07);
}

.single-destinatie__info-card h2 {
    margin-top: 0;
    color: #142b20;
    font-size: 1.4rem;
}

.single-destinatie__info-card div {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: .9rem 0;
    border-top: 1px solid #e7ebe8;
}

.single-destinatie__info-card div:first-of-type {
    border-top: 0;
}

.single-destinatie__info-card span {
    color: #7a867e;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.single-destinatie__info-card strong {
    color: #183527;
}

.single-destinatie__back {
    display: inline-flex;
    margin-top: 1rem;
    color: #183527;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 900px) {
    .single-destinatie__layout {
        grid-template-columns: 1fr;
    }

    .single-destinatie__aside {
        position: static;
    }
}

@media (max-width: 680px) {
    .single-destinatie__hero {
        padding-top: 6.5rem;
    }

    .single-destinatie__media {
        margin-top: -1.5rem;
    }

    .single-destinatie__media figure {
        border-radius: 16px;
    }

    .single-destinatie__content {
        padding: 1.2rem;
        border-radius: 16px;
    }
}