/**
 * Shared homepage editorial sections (themes, production, how-it-works strip).
 * Used on / and collection landing pages.
 */

.home-hiw {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.home-hiw__header {
    text-align: center;
    margin-bottom: 2.375rem;
}

.home-hiw__eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #B27A5B;
}

.home-hiw__title {
    margin: 0.625rem 0 0;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--bc-ink);
}

.home-hiw__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.home-hiw__grid {
    display: grid;
    gap: 1.625rem;
}

.home-hiw__card {
    background: var(--bc-surface, #FBF6F0);
    border: 1px solid var(--bc-border, #DCCABD);
    border-radius: 1.125rem;
    padding: 1.75rem;
}

.home-hiw__num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: #D8A07E;
    line-height: 1;
}

.home-hiw__card-title {
    margin: 0.5rem 0 0;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--bc-ink);
}

.home-hiw__card-body {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5A4F47;
}

.home-hiw__card-body strong {
    color: #2A2018;
    font-weight: 600;
}

@media (min-width: 820px) {
    .home-hiw__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
