/* Featured Brands Grid — ae990ee3 */

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

.fbg-ae990ee3-section {
    background-color: #1C1410;
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

.fbg-ae990ee3-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.fbg-ae990ee3-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: #FAF8F5;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 0;
    line-height: 1.3;
}

.fbg-ae990ee3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.fbg-ae990ee3-card {
    background-color: #2C1810;
    border: 0.5px solid rgba(184, 115, 51, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

a.fbg-ae990ee3-card {
    cursor: pointer;
}

.fbg-ae990ee3-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 115, 51, 0.45);
    box-shadow: 0 8px 24px rgba(14, 12, 10, 0.4);
}

.fbg-ae990ee3-image-wrap {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}

.fbg-ae990ee3-image-wrap img.fbg-ae990ee3-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.fbg-ae990ee3-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(184, 115, 51, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fbg-ae990ee3-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    color: #FAF8F5;
    margin: 0 0 6px 0;
    padding: 0;
    line-height: 1.4;
}

.fbg-ae990ee3-category {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #B87333;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .fbg-ae990ee3-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fbg-ae990ee3-heading {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .fbg-ae990ee3-section {
        padding: 40px 16px;
    }

    .fbg-ae990ee3-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .fbg-ae990ee3-heading {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .fbg-ae990ee3-card {
        padding: 14px;
    }

    .fbg-ae990ee3-brand-name {
        font-size: 16px;
    }
}
