.relax-hero {
    min-height: 58vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.relax-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.relax-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 45, 43, 0.6), rgba(21, 45, 43, 0.44));
}

.relax-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 760px;
    padding-top: 90px;
    padding-bottom: 26px;
}

.relax-kicker {
    margin: 0 0 8px;
    color: #d8f3ea;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    font-size: .8rem;
}

.relax-hero-content h1 {
    color: #eefcf7;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 10px;
}

.relax-hero-content p {
    color: #d8efe7;
}

.relax-intro {
    padding: 58px 0 20px;
}

.relax-list .container > h2 {
    margin-bottom: 14px;
}

.relax-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.relax-card {
    background: #fff;
    border: 1px solid #d9e9e3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(16, 64, 57, 0.08);
    display: flex;
    flex-direction: column;
}

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

.relax-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.relax-body p {
    margin-bottom: 4px;
}

.relax-body .btn {
    margin-top: auto;
}

@media (max-width: 980px) {
    .relax-grid {
        grid-template-columns: 1fr;
    }
}
