/* Evergreen - Customers are Shopping - Featured Categories */
.FC-title {
    font-family: "Open Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}
.containerFC {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    max-width: fit-content;
    padding-inline: 0px;

}

.FC-img {
    border-radius: 8px;
    border: 1px solid #CCCCCC;
}

.FC-text {
    margin-top: 12px;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
}

.FC-text :hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .containerFC {
        overflow-x: auto;
        display: flex;
        gap: 12px;
        scroll-behavior: smooth;
    }

    .FC-title {
        font-size: 21px;
    }
    .FC-card {
        flex: 0 0 125px;
        position: relative;
    }

    .FC-img {
        border-radius: 4px;
    }
    .containerFC img {
        border-radius: 4px;
    }

    .FC-text {
        font-size: 14px;
    }
}
/* Evergreen - Customers are Shopping - Featured Categories */