/* ── Hero ────────────────────────────────────── */

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    column-gap: 4rem;
    align-items: center;
}

.hero .left-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    height: 300px;
}

.hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-kicker {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.hero-title {
    position: relative;
    font-family: "Yatra One", serif;
    font-size: clamp(1rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-light);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.hero-title a:hover {
    color: var(--accent-light);
}

.hero-title a:hover::after {
    transform: scaleX(1);
}

.hero-desc {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-panel-stack {
    position: relative;
    height: 380px;
}

.display-pic {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 1rem;
    min-width: 600px;
    max-width: 600px;
    overflow: hidden;
}

.display-pic img {
    display: block;
    height: 300px;
    border: 2px solid var(--ink);
    transition: transform 0.15s, box-shadow 0.15s;
}

.display-pic img:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 var(--ink);
}

#vista-da-gigantessa,
#latest-half-inch-high-episode {
    width: 1100px;
    height: max-content;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
}

/* ── Vista da Gigantessa ─────────────────────── */

.background-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 2.5rem 0;
    width: 100%;
    height: max-content;
    background-color: none;
}

#vista-da-gigantessa {
    margin: 0 auto;
}

#vista-da-gigantessa .display-pic {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 1rem;
    min-width: 425px;
    max-width: 425px;
    overflow: hidden;
}

#vista-da-gigantessa .hero-kicker {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

#vista-da-gigantessa .hero-kicker span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

#vista-da-gigantessa .hero-kicker img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 1.5rem;
}

#vista-da-gigantessa .btn-primary {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2px;
    width: max-content;
}

#vista-da-gigantessa .btn-primary #biccomi {
    display: inline-block;
    height: 1rem;
    margin-left: 0.25rem;
}

/* ── Art showcase ────────────────────────────── */

#art-showcase {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

#art-showcase .left {
    background-position: left;
}

#art-showcase .right {
    background-position: right;
}

.art-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.art-card {
    display: block;
    border: 2px solid var(--ink);
    transition: transform 0.15s, box-shadow 0.15s;
}

.art-card:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 var(--ink);
}

.art-card-art {
    background: var(--paper-dark);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--ink);
    background-size: cover;
    background-position: center;
}

/* ── Responsive ─────────────────────────────── */

@media (max-width: 900px) {
    #vista-da-gigantessa,
    #latest-half-inch-high-episode {
        width: 100%;
        height: max-content;
    }

    .background-wrapper {
        padding: 1rem 0;
    }

    #vista-da-gigantessa .btn-primary {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .hero {
        flex-direction: column;
        padding: 1.5rem 2rem;
        padding-top: 0;
        gap: 1.5rem;
    }

    .hero .left-side {
        flex-direction: column;
        gap: 1.5rem;
        height: max-content;
    }

    .hero-inner {
        width: 100%;
        overflow: hidden;
    }

    .display-pic {
        align-items: flex-start;
        max-width: 300px;
        height: auto;
        overflow: hidden;
    }

    .display-pic img {
        height: 200px;
        overflow: hidden;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.05;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .art-cards {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}