.training-schedule {
    font-family: Montserrat, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    background: linear-gradient(0deg, #FFFFFF 0%, #F3FAFF 100%);
    padding-top: 60px;
}

@media (min-width: 1200px) {
    .training-schedule .container {
        width: 1200px;
    }
}

@media (max-width: 767px) {
    .training-schedule {
        font-size: 14px;
    }
}

/*#region Banner*/
.banner {
    background: url('/sites/misa/images/pages/training-schedule/bg-banner.webp') no-repeat center center;
    background-size: cover;
    padding: 48px 0 32px;
    text-align: center;
    color: #FFFFFF;
}

.banner-title {
    font-family: Montserrat Bold, Arial, sans-serif;
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.banner-desc {
    font-family: Montserrat Medium, Arial, sans-serif;
    line-height: 1.375;
}

@media (max-width: 979px) {
    .banner-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 28px;
    }
}

/*#endregion*/

/*#region products*/
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px 0 24px;
}

.mobile-show {
    display: none;
}

.products-title {
    font-family: Montserrat SemiBold, Arial, sans-serif;
    font-size: 32px;
    line-height: 1.5;
    color: #008FEC;
}

.products-search {
    width: 100%;
    max-width: 270px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background-color: #FFFFFF;
    border: 1px solid #DFE1E6;
    border-radius: 6px;
}

.products-search .search-icon {
    flex-shrink: 0;
}

#categories-navbar {
    border: 1px solid #DFE1E6;
    border-radius: 6px;
    height: 38px;
    padding: 0 4px;
}

.products-search input {
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    color: #74869A;
    background-color: transparent;
}

.products-search .search-shortkey {
    font-size: 14px;
    line-height: 20px;
    color: #6B778C;
    padding: 2px 12px 2px 9px;
    background-color: #F0F2F4;
    border-radius: 6px;
}

.product-groups {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.product-group {
    font-family: Montserrat SemiBold, Arial, sans-serif;
    line-height: 24px;
    text-align: center;
    padding: 6px 16px;
    border-radius: 8px;
    background-color: #F0F2F4;
    cursor: pointer;
}

.product-group.active {
    color: #F6FBFF;
    background-color: #008FEC;
}

.products-navbar {
    display: none;
    gap: 16px;
    border-bottom: 1px solid #D9D9D9;
}

.navbar-item {
    font-family: Montserrat Medium, Arial, sans-serif;
    line-height: 1.5;
    color: #172B4D;
    padding: 0 16px 12px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.navbar-item.active {
    font-family: Montserrat SemiBold, Arial, sans-serif;
    color: #008FEC;
    border-color: #008FEC;
}

.products-navbar.active {
    display: flex;
}

.products-content {
    margin-top: 36px;
}

.products-category {
    margin-bottom: 44px;
}

.category-title {
    font-family: Roboto SemiBold, Arial, sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: #172B4D;
    margin-bottom: 16px;
}

.category-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.training-image img {
    margin-bottom: 16px;
}

.product-item {
    background-color: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 300px;
    margin: 0 auto;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.product-item:hover {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.24);
}

.product-thumb {
    display: block;
    aspect-ratio: 1.85;
    position: relative;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.product-logo {
    width: 44px;
    height: 44px;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 2px;
}

.product-title {
    font-family: Roboto Bold, Arial, sans-serif;
    color: #FFFFFF;
    margin-top: 8px;
}

.product-infor {
    position: absolute;
    top: 36px;
    left: 16px;
}

.products-category[data-category="quan-tri-tai-chinh-nha-nuoc"] .product-infor {
    top: 64px;
}

.product-desc {
    font-family: Roboto, Arial, sans-serif;
    padding: 16px;
    font-size: 12px;
    line-height: 1.5;
    color: #6B778C;
}

.product-desc br {
	display: none;
}

.product-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 16px 16px;
    padding: 8px;
    background-color: #008FEC;
    color: #FFFFFF;
    font-family: Roboto Medium, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    border-radius: 6px;
}

.no-product {
    display: none;
    text-align: center;
    padding-bottom: 36px;
}

@media (max-width: 979px) {
    .products-title {
        font-size: 24px;
    }

    .products-navbar {
        gap: 0;
    }

    .category-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .mobile-show {
        display: block;
    }

    .pc-show {
        display: none;
    }

    .product-groups {
        display: none;
    }

    .products-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .category-title {
        font-size: 18px;
    }

    .header-section {
        display: block;
    }

    .header-filter {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .products-search input {
        font-size: 12px;
    }

    .products-search .search-shortkey {
        display: none;
    }

    .category-content {
        gap: 16px;
    }

    .products-navbar.active {
        display: none;
    }
}

@media (max-width: 400px) {
    .header-filter {
        flex-direction: column;
    }

    #categories-navbar {
        width: 100%;
        max-width: 270px;
    }
}

/*#endregion*/