.cc-activities__header {
    background: #2C2828;
    text-align: center;
    padding: 88px 24px 80px;
    position: relative;
    overflow: hidden;
}

.cc-activities__header::before {
    content: 'Casa Christa';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.03);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -2px;
}

.cc-activities__eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #A8957A;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cc-activities__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 300;
    font-style: italic;
    color: #F7F2EC;
    line-height: 1.1;
    margin: 0 0 20px;
}

.cc-activities__subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(247,242,236,0.55);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.75;
}

.cc-activities__body {
    background: #F7F2EC;
    padding: 64px 40px 80px;
}

.cc-activities__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.cc-activities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ── KÁRTYA ── */
.cc-act__card {
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cc-act__img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
    flex-shrink: 0;
}

.cc-act__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cc-act__card:hover .cc-act__img-wrap img {
    transform: scale(1.06);
}

.cc-act__tag {
    position: absolute;
    bottom: 20px; left: 20px;
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #FFFFFF;
    text-transform: uppercase;
    background: rgba(44,40,40,0.65);
    padding: 5px 12px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.cc-act__content {
    padding: 32px 36px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cc-act__card:hover .cc-act__content {
    border-top-color: #A8957A;
}

.cc-act__num {
    position: absolute;
    top: 20px; right: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    font-style: italic;
    color: #E8E0D6;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: color 0.3s ease;
}

.cc-act__card:hover .cc-act__num {
    color: #DDD5C8;
}

.cc-act__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: #2C2828;
    line-height: 1.2;
    margin: 0 0 14px;
    max-width: 75%;
}

.cc-act__desc {
    font-family: 'Jost', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: #7A7270;
    line-height: 1.8;
    flex: 1;
}

/* ── CTA ── */
.cc-act__cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 40px;
    background: #FFFFFF;
    border-top: 1px solid #E8E0D6;
}

.cc-act__cta-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: #7A7270;
}

.cc-act__cta-text strong {
    color: #2C2828;
    font-weight: 400;
}

.cc-act__cta-btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #2C2828;
    padding: 14px 32px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.cc-act__cta-btn:hover { background: #A8957A; color: #FFFFFF; }

/* ── MOBIL ── */
@media (max-width: 768px) {
    .cc-activities__grid { grid-template-columns: 1fr; }
    .cc-activities__body { padding: 40px 20px 60px; }
    .cc-act__img-wrap { height: 220px; }
    .cc-act__cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px;
    }
}
