/* ============================================
   CSS TRANG CHỦ (HOME PAGE)
   ============================================ */

/* CSS HERO SECTION */
.hero-section {
    padding-top: 60px;
    overflow: hidden;
}

.hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.ce-inner-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #212589;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
}

.hero-content {
    padding: 80px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.btn-hero-white {
    background: var(--white);
    color: var(--primary-color);
    transition: 0.2s;
}

.btn-hero-white:hover {
    background: #3e43b7;
    color: white;
    transform: translateY(-2px);
}

.slider-container img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.hero-section .btn-slide-heroHp {
    background: var(--primary-color);
}

.hero-section .btn-slide-heroHp::after {
    color: white !important;
}

/* KẾT THÚC CSS HERO SECTION */


/* CSS SKILLS SECTION (Đã chuyển sang components/skills.css) */
/* KẾT THÚC CSS SKILLS SECTION */


/* CSS PRODUCTS SECTION */
.productsSwiper {
    padding: 20px 0 60px;
}

.productsSwiper .swiper-slide {
    height: auto;
}

.bg-light .container {
    position: relative;
}

.products-nav-next,
.products-nav-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    transition: 0.2s;
}

.products-nav-next {
    right: -60px;
}

.products-nav-prev {
    left: -60px;
}

.products-nav-next:after,
.products-nav-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-card .product-image img {
    transition: 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-lg);
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    line-height: 1.5;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    list-style: none;
    padding: 4px 12px;
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 13px;
    color: var(--text-light);
    background: #f0f0f0;
    border-radius: 6px;
}

.product-meta li {
    display: block;
    margin-right: 12px;
    padding-right: 12px;
}

.product-meta li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.product-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.product-rating .stars {
    color: var(--secondary-color);
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    font-size: 12px;
}

.product-rating .review-count {
    font-size: 13px;
    color: var(--text-light);
}

.product-stock {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-stock.in-stock {
    color: #28a745;
}

.product-stock.out-of-stock {
    color: #dc3545;
}

.product-pricing {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-original {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 20px;
}

.product-btn {
    width: 100%;
    margin-top: auto;
}

.product-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* KẾT THÚC CSS PRODUCTS SECTION */


/* CSS NEWS SECTION */
.news-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: visible;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card:hover .news-thumb img {
    transform: scale(1.05);
}

.news-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.news-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-content {
    background: var(--white);
    padding: var(--spacing-lg);
    margin: -30px 20px 0 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    padding-top: 16px;
}

.news-content .post-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--spacing-sm);
}




.news-content .title {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content .title:hover {
    color: var(--primary-color);
}

.news-content .des-info {
    font-size: 15px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

/* KẾT THÚC CSS NEWS SECTION */


/* CSS PARTNERS SECTION */
.partners-section {
    background: var(--bg-light);
    overflow: hidden;
}

.slider-partner {
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.flex-partner-animation {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
}

.flex-partner-animation+.flex-partner-animation {
    margin-top: 32px;
}

.group-partner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.item-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 102px;
    height: 102px;
    background: var(--white);
    border-radius: 50%;
    overflow: hidden;
    border: solid 1px #d6d6d6;
    transition: var(--transition-normal);
}

.item-partner:hover {
    box-shadow: var(--shadow-md);
}

.item-partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

/* Animations */
.animation-partner-left {
    animation: scroll-left 40s linear infinite;
}

.animation-partner-right {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scroll-right {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* KẾT THÚC CSS PARTNERS SECTION */



/* CSS ACTIVITIES SECTION */
.slider-wrapper {
    position: relative;
}

.activitiesSwiper {
    padding: 20px 0 60px;
}

.activitiesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.activities-nav-next,
.activities-nav-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.activities-nav-next {
    right: -60px;
}

.activities-nav-prev {
    left: -60px;
}

.activities-nav-next:after,
.activities-nav-prev:after {
    font-size: 18px;
    font-weight: bold;
}



.activity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.activity-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.activity-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.activity-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.8px;
}

.activity-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.activity-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* KẾT THÚC CSS ACTIVITIES SECTION */


/* KẾT THÚC CSS ACTIVITIES SECTION */


/* Note: bg-header-hero base styles moved to other.css for reusability across pages */


/*responsive section hero */

/* Layout switch to 1 column ONLY on mobile */
@media (max-width: 767px) {
    .ce-inner-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        order: 1;
        width: 100%;
        height: 300px;
    }

    .hero-section {
        padding-top: 12px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .hero-desc {
        font-size: 0.875rem;
    }

    .hero-content {
        padding: 24px 20px;
    }

    .hero-image {
        height: 220px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

}

@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 30px 24px;
    }

    .hero-image {
        height: 250px;
    }

}

/* Tablet: Keep 2 columns, only adjust spacing and font sizes */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-content {
        padding: 24px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-section {
        padding-top: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-content {
        padding: 50px;
    }



    .products-nav-next,
    .products-nav-prev,
    .activities-nav-next,
    .activities-nav-prev {
        width: 40px;
        height: 40px;
    }

    .products-nav-next,
    .activities-nav-next {
        right: -50px;
    }

    .products-nav-prev,
    .activities-nav-prev {
        left: -50px;
    }
}

@media (min-width: 1200px) and (max-width: 1499px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .hero-content {
        padding: 60px;
    }



}

@media (min-width: 1500px) and (max-width: 1900px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-content {
        padding: 70px;
    }

}

/*End responsive section hero */

/*responsive sản phẩm mua nhiều */

@media (max-width: 991px) {
    .products-nav-next {
        right: 16px;
    }

    .products-nav-prev {
        left: 16px;
    }

    .products-nav-next,
    .products-nav-prev {
        top: 27%;
    }

    .productsSwiper {
        padding-top: 0;
        padding-bottom: 52px;
    }
}

@media(min-width: 992px) and (max-width: 1199px) {
    .products-nav-next {
        right: -12px;
    }

    .products-nav-prev {
        left: -12px;
    }

    .products-nav-next,
    .products-nav-prev {
        top: 30%;
    }
}

@media(min-width: 1200px) and (max-width: 1499px) {
    .products-nav-next {
        right: -52px;
    }

    .products-nav-prev {
        left: -52px;
    }

    .products-nav-next,
    .products-nav-prev {
        top: 30%;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 17px;
    }

    .product-status-row {
        gap: 4px;
        flex-wrap: wrap;
    }

}

/*end responsive sản phẩm mua nhiều */


/*responsive tin tức */
@media (max-width: 767px) {
    .news-content {
        padding: 16px;
        margin: -30px 12px 0 12px;
    }

    .news-grid {
        column-gap: 24px;
        row-gap: 36px;
        margin-top: 24px;
    }


    .news-content {
        padding-top: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .news-grid {
        column-gap: 20px;
        row-gap: 36px;
        margin-top: 30px;
    }

    .news-content {
        padding-top: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 20px;
    }

    .news-content {
        padding: 16px;
        padding-top: 12px;
        margin: -30px 12px 0 12px;
    }
}

/*end responsive tin tức */

/*responsive hoạt động */
@media(max-width: 991px) {
    .activities-nav-next {
        right: 16px;
    }

    .activities-nav-prev {
        left: 16px;
    }

    .activities-nav-next,
    .activities-nav-prev {
        top: 27%;
    }
}

@media(min-width:576px) and (max-width: 991px) {
    .activity-content {
        padding: 12px;
    }
}

@media(min-width:992px) and (max-width: 1199px) {
    .activities-nav-next {
        right: -12px;
    }

    .activities-nav-prev {
        left: -12px;
    }

    .activities-nav-next,
    .activities-nav-prev {
        top: 30%;
    }
}

/*end responsive hoạt động */



/*responsive đối tác*/
@media(max-width: 767px) {
    .item-partner {
        width: 84px;
        height: 84px;
    }

    .group-partner {
        gap: 20px;
    }

    .slider-partner {
        margin-top: 32px;
    }
}

/*end responsive đối tác */



/*CSs bổ sung block Về HRA*/

.about-HRA-section {
    overflow: hidden;
    background-image: url('/web/img/bg-light-caro.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wp-ct-aboutHRA-hp {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}

/* === Image Collage === */
.aboutHRA-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 560px;
}

/* Sub-column left */
.aboutHRA-img-col-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.aboutHRA-img-landscape img {
    height: 400px;
    object-fit: cover;
    border-radius: 80px;
    border-bottom-right-radius: 2px;
}

/* Badge */
.aboutHRA-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 22px;
    border-radius: 50px;
    border-bottom-left-radius: 2px;
}

.aboutHRA-badge-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.aboutHRA-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.aboutHRA-badge-text strong {
    font-size: 16px;
    font-weight: 800;
}

.aboutHRA-badge-text span {
    font-size: 17px;
    line-height: 1.7;
}

/* Sub-column right */
.aboutHRA-img-col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
}

.aboutHRA-img-circle {
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    padding: 12px;
    margin: 0 auto;
    flex-shrink: 0;
}

.aboutHRA-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.aboutHRA-img-portrait img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 80px;
    border-top-left-radius: 2px;
}

/* === Content Side === */
.aboutHRA-content {
    flex: 1;
    margin-top: 48px;
}

.aboutHRA-heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.aboutHRA-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #EAA525;
    border-radius: 2px;
}

.aboutHRA-heading .name-cpn {
    color: #e79d01;
}

.aboutHRA-desc {
    line-height: 2;
    margin-bottom: 28px;
}

.aboutHRA-desc b {
    font-weight: 900;
}

.aboutHRA-cta {
    margin-top: 60px;
}

/* Bottom Row: features + quote side by side */
.aboutHRA-bottom-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* Feature Items */
.aboutHRA-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.aboutHRA-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.aboutHRA-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: dashed 2px #e79d01;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 25px;
    color: #e79d01;
}

.aboutHRA-feature-info h4 {
    font-size: 28px;
    font-weight: 900;
    color: #e79d01;
    margin-bottom: 4px;
    line-height: 1.4;
}

.aboutHRA-feature-info p {
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
}

/* Quote */
.aboutHRA-quote {
    background: linear-gradient(135deg, #dbecff, #e8f4fd);
    padding: 20px 24px;
    margin: 0;
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    border-radius: 20px;
    border-left: solid 4px #3577d8;
}

.aboutHRA-quote::after {
    content: '\201D';
    position: absolute;
    bottom: -29px;
    right: 16px;
    font-size: 173px;
    height: 76px;
    color: #3a7ee2;
    opacity: 1;
    line-height: 1;
    font-family: Georgia, serif;
}

.aboutHRA-quote p {
    font-size: 17px;
    color: #3068b8;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/*CSS responsive section về HRA*/

/* Desktop lớn: 1500px - 1900px */
@media (min-width: 1500px) and (max-width: 1900px) {
    .aboutHRA-images {
        width: 500px;
    }

    .wp-ct-aboutHRA-hp {
        gap: 72px;
    }

    .aboutHRA-badge-text span {
        font-size: 16px;
    }

    .aboutHRA-content {
        margin-top: 20px;
    }
}

/* Laptop lớn: 1200px - 1499px */
@media (min-width: 1200px) and (max-width: 1499px) {
    .wp-ct-aboutHRA-hp {
        gap: 52px;
    }

    .aboutHRA-images {
        width: 420px;
    }

    .aboutHRA-img-landscape img {
        height: 340px;
        border-radius: 64px;
        border-bottom-right-radius: 2px;
    }

    .aboutHRA-img-portrait img {
        height: 300px;
        border-radius: 64px;
        border-top-left-radius: 2px;
    }

    .aboutHRA-img-col-left,
    .aboutHRA-images {
        gap: 20px;
    }

    .aboutHRA-heading {
        font-size: 2rem;
    }

    .aboutHRA-desc {
        margin-bottom: 20px;
    }

    .aboutHRA-feature-info h4 {
        font-size: 24px;
    }

    .aboutHRA-quote {
        padding: 16px;
    }

    .aboutHRA-quote p {
        font-size: 16px;

    }

    .aboutHRA-badge-text span {
        font-size: 16px;
    }

    .aboutHRA-badge-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .aboutHRA-badge {
        padding: 18px;
        border-radius: 44px;
        border-bottom-left-radius: 2px;
    }

    .aboutHRA-content {
        margin-top: 0;
    }
}

/* Laptop trung bình: 992px - 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .wp-ct-aboutHRA-hp {
        gap: 40px;
    }

    .aboutHRA-images {
        width: 420px;
        gap: 20px;
    }

    .aboutHRA-img-col-left {
        gap: 20px;
    }

    .aboutHRA-img-landscape img {
        height: 280px;
        border-radius: 58px;
        border-bottom-right-radius: 2px;
    }

    .aboutHRA-img-portrait img {
        height: 260px;
        border-radius: 58px;
        border-top-left-radius: 2px;
    }

    .aboutHRA-img-col-right {
        padding-top: 30px;
    }

    .aboutHRA-heading {
        font-size: 1.8rem;
    }

    .aboutHRA-features {
        flex: none;
        width: 100%;
        flex-direction: row;
    }

    .aboutHRA-feature-item {
        flex: 1;
    }

    .aboutHRA-bottom-row {
        flex-direction: column;
    }

    .aboutHRA-content {
        margin-top: 0px;
    }

    .aboutHRA-feature-info h4 {
        font-size: 22px;
    }


    .aboutHRA-badge-text span {
        font-size: 14px;
    }

    .aboutHRA-badge-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .aboutHRA-badge {
        padding: 16px;
        border-radius: 40px;
        border-bottom-left-radius: 2px;
    }

    .aboutHRA-cta {
        margin-top: 40px;
    }

    .aboutHRA-quote::after {
        font-size: 120px;
        height: 54px;
        bottom: -20px;
    }

    .aboutHRA-quote p {
        font-size: 16px;
    }
}

/* Tablet: 768px - 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .wp-ct-aboutHRA-hp {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .aboutHRA-images {
        width: 500px;
        gap: 24px;
    }

    .aboutHRA-img-col-left {
        gap: 24px;
    }

    .aboutHRA-img-landscape img {
        height: 260px;
        border-radius: 60px;
        border-bottom-right-radius: 2px;
    }

    .aboutHRA-img-portrait img {
        height: 260px;
        border-radius: 60px;
        border-top-left-radius: 2px;
    }

    .aboutHRA-badge-text span {
        font-size: 16px;
    }

    .aboutHRA-content {
        margin-top: 30px;
    }

    .aboutHRA-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .aboutHRA-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .aboutHRA-feature-info h4 {
        font-size: 24px;
    }

    .aboutHRA-cta {
        margin-top: 40px;
        text-align: center;
    }

    .aboutHRA-quote::after {
        font-size: 130px;
        height: 58px;
        bottom: -22px;
    }
}

/* Mobile lớn: 576px - 767px */
@media (min-width: 576px) and (max-width: 767px) {
    .wp-ct-aboutHRA-hp {
        flex-direction: column;
        gap: 32px;
    }

    .aboutHRA-images {
        display: none;
    }

    .aboutHRA-content {
        margin-top: 0;
    }

    .aboutHRA-heading {
        font-size: 1.6rem;
        text-align: center;
    }

    .aboutHRA-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .aboutHRA-bottom-row {
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
    }

    .aboutHRA-feature-info h4 {
        font-size: 22px;
    }

    .aboutHRA-feature-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .aboutHRA-feature-item {
        flex: 1;
    }

    .aboutHRA-features {
        gap: 24px;
        flex-direction: row;
        flex: none;
        width: 100%;
    }

    .aboutHRA-cta {
        margin-top: 36px;
        text-align: center;
    }

    .aboutHRA-quote::after {
        font-size: 110px;
        height: 50px;
        bottom: -18px;
    }

    .aboutHRA-quote p {
        font-size: 16px;
    }

    .aboutHRA-desc {
        margin-bottom: 12px;
    }
}

/* Mobile nhỏ: ≤ 575px */
@media (max-width: 575px) {
    .wp-ct-aboutHRA-hp {
        flex-direction: column;
        gap: 28px;
    }

    .aboutHRA-images {
        display: none;
    }

    .aboutHRA-content {
        margin-top: 0;
    }

    .aboutHRA-heading {
        font-size: 1.5rem;
        margin-bottom: 16px;
        padding-bottom: 12px;
        text-align: center;
    }

    .aboutHRA-heading::after {
        width: 35px;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
    }

    .aboutHRA-bottom-row {
        flex-direction: column;
        gap: 20px;
    }

    .aboutHRA-feature-info h4 {
        font-size: 20px;
    }


    .aboutHRA-features {
        gap: 20px;
    }

    .aboutHRA-cta {
        margin-top: 30px;
        text-align: center;
    }

    .aboutHRA-quote {
        padding: 16px 20px;
    }

    .aboutHRA-quote::after {
        font-size: 90px;
        height: 40px;
        bottom: -14px;
        right: 10px;
    }

    .aboutHRA-quote p {
        font-size: 16px;
    }

    .aboutHRA-desc {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .aboutHRA-feature-item {
        align-items: center;
    }
}

/*end CSS responsive section về HRA*/


/* end css về HRA */

/* ============================================
   KẾT THÚC CSS TRANG CHỦ (HOME PAGE)
   ============================================ */