.banner_page {
    padding: 50px 0;
    background-image: url(/frontend/images/hub_bg.jpg);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.banner_page h1 {
    font-size: 60px;
    font-weight:600;
    color: #fff;
}

.banner_page .social_hub {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.banner_page .social_hub .social_item>img {
    width: 36px;
    height: 36px;
}

.highlight {
    color: var(--primary);
}

.section_hub {
    padding: 40px 0;
}
.section_hub h2 {
    font-size:40px;
    font-weight: 600;
    padding-bottom: 14px;
}
.section_hub.today_best_deal {
    background-color: #F1F1F1;
}
.list-product-affiliate.hub_page {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 40px
}
.list-product-affiliate.hub_page .item .bottom .name {
    font-size: var(--size-h3) !important;
}

.list-product-affiliate.hub_page.today_best_deal {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap:20px
}
.list-product-affiliate.hub_page.today_best_deal .item {
    grid-template-columns: 220px 1fr;
}
.list-product-affiliate.hub_page.today_best_deal .item .bottom {
    padding: 12px 20px;
    justify-content: flex-start;
    background-color: #fff;
}
.list-product-affiliate.hub_page.today_best_deal .item .bottom .see-price {
    padding: 8px 12px
}

.hub_see_more {
    padding:6px 18px;
    background-color: #fff;
    border: 2px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}
.hub_see_more:hover {
    color: #fff;
    background-color: var(--primary)
}

@media(max-width:576px) {
    .list-product-affiliate.hub_page,
    .list-product-affiliate.hub_page.today_best_deal {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 18px
    }

    .list-product-affiliate.hub_page.today_best_deal .item {
        display: flex;
        flex-direction: column;
    }
    .list-product-affiliate.hub_page.today_best_deal .item .bottom {
        padding: 8px;
    }
    .list-product-affiliate.hub_page.today_best_deal .item .bottom .see-price {
        max-width: unset;
        padding: 5px 8px
    }

    .section_hub h2 {
        font-size:32px
    }
    .banner_page h1 {
        font-size: 48px;
    }
}
