/* ── CuatroSie7e Exhibition Section ── */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;1,300;1,400&family=Libre+Franklin:wght@300;400&display=swap');

/* Section */
.cs7-exhibition-dc73a1d3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

/* Inner wrapper */
.cs7-inner-dc73a1d3 {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 64px;
    width: 100%;
    margin: 0 auto;
}

/* ── Text Column ── */
.cs7-col-text-dc73a1d3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow */
.cs7-eyebrow-dc73a1d3 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: block;
}

/* Title */
.cs7-title-dc73a1d3 {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: clamp(58px, 7vw, 96px);
    line-height: 0.95;
    margin: 0 0 42px 0;
    padding: 0;
    letter-spacing: -0.02em;
}

.cs7-title-l1-dc73a1d3 {
    display: block;
}

.cs7-title-l2-dc73a1d3 {
    display: block;
    font-style: italic;
    font-weight: 300;
}

/* Description */
.cs7-description-dc73a1d3 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 0 40px 0;
    padding: 0;
}

/* Metadata */
.cs7-meta-group-dc73a1d3 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 48px;
}

.cs7-meta-dc73a1d3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cs7-meta-icon-dc73a1d3 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
}

.cs7-meta-icon-dc73a1d3 svg {
    width: 16px;
    height: 16px;
}

.cs7-meta-text-dc73a1d3 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

/* CTA */
.cs7-cta-dc73a1d3 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s ease;
}

.cs7-cta-label-dc73a1d3 {
    position: relative;
}

.cs7-cta-line-dc73a1d3 {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s ease;
    transform: scaleX(0.6);
}

.cs7-cta-dc73a1d3:hover .cs7-cta-line-dc73a1d3 {
    transform: scaleX(1);
}

.cs7-cta-arrow-dc73a1d3 {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs7-cta-arrow-dc73a1d3 svg {
    width: 18px;
    height: 18px;
}

.cs7-cta-dc73a1d3:hover .cs7-cta-arrow-dc73a1d3 {
    transform: translateX(4px);
}

/* ── Image Column ── */
.cs7-col-image-dc73a1d3 {
    position: relative;
    overflow: hidden;
}

.cs7-image-wrap-dc73a1d3 {
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.cs7-artwork-dc73a1d3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs7-image-wrap-dc73a1d3:hover .cs7-artwork-dc73a1d3 {
    transform: scale(1.02);
}

/* ── Entrance Animation ── */
.cs7-animate-dc73a1d3 {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs7-animate-dc73a1d3.cs7-visible-dc73a1d3 {
    opacity: 1;
    transform: translateY(0);
}

.cs7-col-image-dc73a1d3.cs7-animate-dc73a1d3 {
    transition-delay: 0.15s;
}

/* ── Responsive — Tablet ── */
@media (max-width: 1024px) {
    .cs7-inner-dc73a1d3 {
        gap: 40px;
    }

    .cs7-title-dc73a1d3 {
        font-size: clamp(42px, 6vw, 68px);
    }

    .cs7-description-dc73a1d3 {
        font-size: 18px;
    }

    .cs7-image-wrap-dc73a1d3 {
        min-height: 400px;
    }
}

/* ── Responsive — Mobile ── */
@media (max-width: 767px) {
    .cs7-inner-dc73a1d3 {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cs7-col-image-dc73a1d3 {
        order: -1;
    }

    .cs7-image-wrap-dc73a1d3 {
        min-height: 340px;
    }

    .cs7-title-dc73a1d3 {
        font-size: clamp(36px, 10vw, 54px);
        margin-bottom: 32px;
    }

    .cs7-description-dc73a1d3 {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .cs7-meta-group-dc73a1d3 {
        margin-bottom: 36px;
    }

    .cs7-eyebrow-dc73a1d3 {
        margin-bottom: 22px;
    }
}
