.collection-hero {
    display: grid;
    grid-template-columns: 1fr;
    /*margin-top: var(--nav-height-mobile);*/
    margin-top: 40px;
    min-height: 450px;
}

.hero-image,
.hero-content {
    grid-area: 1 / 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(251, 240, 229, 0.85);
    padding: 40px 20px;
    z-index: 2;
}

.collection-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw + 1rem, 6.875rem);
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.collection-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 20px;
}

.collection-breadcrumb a {
    color: inherit;
    opacity: 0.5;
    text-decoration: none;
    transition: color 0.3s;
}

.collection-breadcrumb a:hover {
    color: #000000;
}

.collection-hero-subtitle {
    font-family: 'Archivo', cursive;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.6;
    color: #444444;
}

@media (min-width: 768px) {}

@media (min-width: 1024px) {
    .collection-hero {
        grid-template-columns: 1fr 1fr;
        /*margin-top: var(--nav-height-desktop);*/
        margin-top: 69px;
    }

    .hero-content {
        grid-area: auto;
        order: 1;
        background-color: #fbf0e5;
        text-align: left;
        padding: 60px 5vw;
    }

    .hero-image {
        grid-area: auto;
        order: 2;
    }

    .collection-hero-subtitle {
        font-size: 1rem;
    }

    .collection-breadcrumb {
        font-size: 0.9rem;
    }
}