/* ---------- Brand highlight section ---------- */
.gm-highlight-section {
    position: relative;
    overflow: hidden;
}

.gm-highlight {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1.5rem;
}

.gm-highlight__background {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: lowercase;
    pointer-events: none;
}

.gm-highlight__background span {
    font-family: "Nexa", sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 16vw, 11rem);
    line-height: 1;
    color: #3e3e3e;
}

.gm-highlight__cards {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 920px;
}

.gm-highlight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem;
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
    border-radius: 1.5rem;
    background: rgba(97, 95, 95, 0.973);
    backdrop-filter: blur(6px);
    color: #2c2c2c;
    box-shadow: var(--shadow-card);
    min-height: 170px;
    overflow: hidden;
}

.gm-highlight-card--primary {
    background: #f16b23f3;
    color: #fff;
}

.gm-highlight-card__icon {
    position: absolute;
    z-index: 0;
    top: 1rem;
    width: 80%;
    height: 80%;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 0.9rem;
}

.gm-highlight-card__title {
    z-index: 1;
    font-family: "Nexa", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3rem);
    text-align: center;
    margin: 0;
    text-transform: lowercase;
    font-weight: bold;
    line-height: 1.1;
}

.gm-highlight-card__subtitle {
    z-index: 1;
    font-family: "Nexa", sans-serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 4.5vw, 1.75rem);
    line-height: 1.2;
    margin: 0;
    text-transform: lowercase;
    font-weight: bold;
}

@media (max-width: 480px) {
    .gm-highlight-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 150px;
        border-radius: 1.25rem;
        padding: 0.75rem;
        gap: 0.65rem;
    }
}

@media (min-width: 768px) {
    .gm-highlight-card__icon {
        right: 1rem;
    }
    .gm-highlight {
        padding: 6rem 2rem;
    }

    .gm-highlight-card {
        padding: 2.25rem;
        border-radius: 2rem;
        gap: 1rem;
        min-height: 220px;
    }

    .gm-highlight-card__subtitle {
        font-size: 2.125rem;
    }
}

@media (min-width: 1024px) {
    .gm-highlight-card {
        flex: 1 1 calc(25% - 2.5rem);
        max-width: calc(25% - 2.5rem);
    }

    .gm-highlight__cards {
        gap: 2.5rem;
    }

    .gm-highlight-card:nth-child(2n) {
        transform: translateY(1.5rem);
    }

    .gm-highlight-card:nth-child(2n + 1) {
        transform: translateY(-0.75rem);
    }
}
