/* =========================================================
   CENLUX - THÔNG TIN CHUNG
   ĐÃ GIẢM KÍCH THƯỚC TEXT
========================================================= */

.thong-tin-chung {
    --ttc-main: #d90000;
    --ttc-main-dark: #b80000;
    --ttc-red-light: #ff2a2a;
    --ttc-text: #101827;
    --ttc-muted: #4b5563;
    --ttc-line: #e5e7eb;
    --ttc-white: #ffffff;
    --ttc-bg: #f5f5f5;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 24px 20px;
    background: var(--ttc-bg);
    box-sizing: border-box;
}

.thong-tin-chung *,
.thong-tin-chung *::before,
.thong-tin-chung *::after {
    box-sizing: border-box;
}

.ttc-khung {
    position: relative;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 40px 44px 48px;
    background: var(--ttc-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.ttc-khung::before {
    content: "";
    position: absolute;
    left: -130px;
    top: -160px;
    width: 430px;
    height: 430px;
    background: linear-gradient(135deg, #b80000 0%, #ff2020 100%);
    border-radius: 0 0 100% 0;
    z-index: 0;
}

.ttc-khung::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -180px;
    width: 620px;
    height: 320px;
    background: linear-gradient(135deg, #d90000 0%, #ff2a2a 100%);
    border-radius: 0 100% 0 0;
    z-index: 0;
}

.ttc-tieu-de,
.ttc-noi-dung {
    position: relative;
    z-index: 2;
}

.ttc-tieu-de {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 36px;
    text-align: center;
}

.ttc-tieu-de h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--ttc-text);
    text-transform: uppercase;
}

.ttc-tieu-de span {
    position: relative;
    display: block;
    width: 90px;
    height: 3px;
    background: var(--ttc-main);
    border-radius: 999px;
}

.ttc-tieu-de span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 14px;
    height: 8px;
    background: var(--ttc-main);
    border-radius: 999px;
    transform: translateY(-50%);
}

.ttc-tieu-de span:first-child::after {
    right: -4px;
}

.ttc-tieu-de span:last-child::after {
    left: -4px;
}

.ttc-noi-dung {
    display: grid;
    grid-template-columns: 36% 64%;
    align-items: center;
    gap: 36px;
}

.ttc-ben-trai {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttc-ben-trai::before {
    content: "";
    position: absolute;
    inset: 20px 0 20px 20px;
    background: #ffffff;
    border-radius: 0 0 120px 0;
    box-shadow: 12px 18px 36px rgba(0, 0, 0, 0.08);
}

.ttc-anh-logo {
    position: relative;
    z-index: 2;
    width: 76%;
    max-width: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttc-anh-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ttc-ben-phai {
    width: 100%;
    padding-right: 24px;
}

.ttc-dong {
    display: grid;
    grid-template-columns: 46px 270px 16px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 8px 0;
    border-bottom: 1px solid var(--ttc-line);
}

.ttc-dong:last-child {
    border-bottom: 0;
}

.ttc-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--ttc-main);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex: 0 0 auto;
    box-shadow: 0 6px 14px rgba(217, 0, 0, 0.22);
}

.ttc-label {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--ttc-text);
}

.ttc-dau {
    font-size: 17px;
    font-weight: 700;
    color: var(--ttc-text);
    text-align: center;
}

.ttc-gia-tri {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: var(--ttc-text);
}

.ttc-gia-tri a {
    color: var(--ttc-main);
    text-decoration: none;
    font-weight: 500;
}

.ttc-gia-tri a:hover {
    color: var(--ttc-main-dark);
}

/* Laptop nhỏ */
@media (max-width: 1280px) {
    .ttc-khung {
        padding: 38px 30px 44px;
    }

    .ttc-noi-dung {
        grid-template-columns: 34% 66%;
        gap: 26px;
    }

    .ttc-dong {
        grid-template-columns: 44px 240px 16px minmax(0, 1fr);
        gap: 12px;
    }

    .ttc-label,
    .ttc-gia-tri {
        font-size: 15px;
    }

    .ttc-dau {
        font-size: 16px;
    }

    .ttc-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .ttc-noi-dung {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ttc-ben-trai {
        min-height: 340px;
    }

    .ttc-anh-logo {
        width: 68%;
        max-width: 330px;
    }

    .ttc-ben-phai {
        padding-right: 0;
    }

    .ttc-dong {
        grid-template-columns: 44px 230px 16px minmax(0, 1fr);
    }

    .ttc-tieu-de h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .thong-tin-chung {
        padding: 16px 10px;
    }

    .ttc-khung {
        padding: 28px 14px 30px;
        border-radius: 14px;
    }

    .ttc-khung::before {
        left: -170px;
        top: -190px;
        width: 340px;
        height: 340px;
    }

    .ttc-khung::after {
        left: -120px;
        bottom: -190px;
        width: 420px;
        height: 260px;
    }

    .ttc-tieu-de {
        gap: 10px;
        margin-bottom: 24px;
    }

    .ttc-tieu-de h2 {
        font-size: 23px;
    }

    .ttc-tieu-de span {
        width: 28px;
        height: 3px;
    }

    .ttc-tieu-de span::after {
        width: 10px;
        height: 6px;
    }

    .ttc-noi-dung {
        gap: 22px;
    }

    .ttc-ben-trai {
        min-height: auto;
        padding: 26px 0;
    }

    .ttc-ben-trai::before {
        inset: 0;
        border-radius: 16px;
    }

    .ttc-anh-logo {
        width: 72%;
        max-width: 250px;
    }

    .ttc-dong {
        grid-template-columns: 36px 1fr;
        gap: 7px 10px;
        align-items: start;
        min-height: auto;
        padding: 12px 0;
    }

    .ttc-icon {
        grid-row: span 3;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .ttc-label {
        font-size: 13.5px;
        line-height: 1.35;
    }

    .ttc-dau {
        display: none;
    }

    .ttc-gia-tri {
        grid-column: 2;
        font-size: 13.5px;
        line-height: 1.45;
    }

    .ttc-gia-tri a {
        word-break: break-word;
    }
}

/* Mobile nhỏ */
@media (max-width: 420px) {
    .ttc-tieu-de h2 {
        font-size: 21px;
    }

    .ttc-tieu-de span {
        width: 22px;
    }

    .ttc-anh-logo {
        width: 78%;
    }

    .ttc-label,
    .ttc-gia-tri {
        font-size: 13px;
    }
}



/* =========================================================
   CENLUX - TẦM NHÌN / SỨ MỆNH / GIÁ TRỊ CỐT LÕI
   Prefix class: clx-
========================================================= */

.clx-tam-sang-section {
    --clx-ts-red: #e60000;
    --clx-ts-red-dark: #b90000;
    --clx-ts-text: #111827;
    --clx-ts-muted: #667085;
    --clx-ts-line: #e5e7eb;
    --clx-ts-white: #ffffff;
    --clx-ts-bg: #f7f7f7;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 16px 10px;
    background: var(--clx-ts-bg);
    overflow: hidden;
    box-sizing: border-box;
}

.clx-tam-sang-section *,
.clx-tam-sang-section *::before,
.clx-tam-sang-section *::after {
    box-sizing: border-box;
}

.clx-tam-sang-wrap {
    position: relative;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 32px 14px 28px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

.clx-tam-sang-hero-img {
    position: absolute;
    right: -60px;
    top: 70px;
    width: 260px;
    height: 220px;
    background-image: url("https://cenlux.com.vn/wp-content/uploads/2026/06/37957356_eeuo_0n2a_230116-scaled.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 150px 0 0 150px;
    opacity: 0.28;
    z-index: 0;
}

.clx-tam-sang-hero-img::before {
    content: "";
    position: absolute;
    inset: -18px 0 auto -18px;
    width: 140px;
    height: 140px;
    border: 18px solid var(--clx-ts-red);
    border-right: 0;
    border-bottom: 0;
    border-radius: 120px 0 0 0;
}

.clx-tam-sang-wrap::before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -150px;
    width: 420px;
    height: 250px;
    background: linear-gradient(135deg, #e60000, #ff2b2b);
    border-radius: 0 100% 0 0;
    opacity: 0.95;
    z-index: 0;
}

.clx-tam-sang-heading,
.clx-tam-sang-main,
.clx-gia-tri-title,
.clx-gia-tri-list {
    position: relative;
    z-index: 2;
}

.clx-tam-sang-heading {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 6px;
}

.clx-tam-sang-heading h2 {
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--clx-ts-text);
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.clx-tam-sang-heading h2 strong {
    color: var(--clx-ts-red);
}

.clx-tam-sang-heading h2 span {
    color: #5b1c1c;
}

.clx-tam-sang-heading p {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--clx-ts-muted);
    text-transform: uppercase;
}

.clx-tam-sang-heading p strong {
    color: var(--clx-ts-red);
}

.clx-tam-sang-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
}

.clx-tam-sang-dots span {
    width: 38px;
    height: 2px;
    background: #cfd4dc;
}

.clx-tam-sang-dots b {
    width: 7px;
    height: 7px;
    background: var(--clx-ts-red);
    border-radius: 999px;
}

.clx-tam-sang-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.clx-tam-sang-card {
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.clx-tam-nhin-card {
    position: relative;
    padding: 26px 20px 28px;
    overflow: hidden;
}

.clx-tam-nhin-card::before {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    width: 92px;
    height: 92px;
    background: linear-gradient(135deg, var(--clx-ts-red), #ff3a3a);
    border-radius: 18px 0 100px 0;
}

.clx-tam-sang-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--clx-ts-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
    position: relative;
    z-index: 2;
}

.clx-tam-sang-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--clx-ts-red);
    font-weight: 900;
    text-transform: uppercase;
}

.clx-tam-sang-card h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 10px;
    background: var(--clx-ts-red);
    border-radius: 99px;
}

.clx-tam-nhin-card p,
.clx-su-menh-head p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--clx-ts-text);
}

.clx-tam-nhin-card strong {
    color: var(--clx-ts-red);
    font-weight: 900;
}

.clx-su-menh-card {
    padding: 26px 18px 18px;
    overflow: hidden;
}

.clx-su-menh-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.clx-su-menh-head .clx-tam-sang-icon {
    margin-bottom: 0;
}

.clx-su-menh-list {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--clx-ts-line);
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.clx-su-menh-item {
    position: relative;
    padding: 26px 18px 20px;
    border-bottom: 1px solid var(--clx-ts-line);
    text-align: left;
}

.clx-su-menh-item:last-child {
    border-bottom: 0;
}

.clx-su-menh-item>span {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--clx-ts-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.clx-su-menh-small-icon {
    margin: 10px auto 12px;
    color: var(--clx-ts-red);
    font-size: 40px;
    line-height: 1;
    text-align: center;
}

.clx-su-menh-item h4 {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.35;
    color: var(--clx-ts-red);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.clx-su-menh-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.clx-su-menh-item li {
    position: relative;
    margin-bottom: 7px;
    padding-left: 13px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--clx-ts-text);
}

.clx-su-menh-item li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--clx-ts-red);
}

.clx-gia-tri-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 30px auto -1px;
    max-width: 560px;
}

.clx-gia-tri-title h3 {
    margin: 0;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--clx-ts-red), var(--clx-ts-red-dark));
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.clx-gia-tri-title span {
    flex: 1;
    height: 2px;
    background: var(--clx-ts-red);
    position: relative;
}

.clx-gia-tri-title span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    background: var(--clx-ts-red);
    border-radius: 999px;
    transform: translateY(-50%);
}

.clx-gia-tri-title span:first-child::after {
    right: 0;
}

.clx-gia-tri-title span:last-child::after {
    left: 0;
}

.clx-gia-tri-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 16px;
    background: linear-gradient(180deg, #fff8f8, #fff3f3);
    border: 1px solid #ffd6d6;
    border-radius: 16px;
}

.clx-gia-tri-item {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #ffd0d0;
}

.clx-gia-tri-item:last-child {
    border-bottom: 0;
}

.clx-gia-tri-icon {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--clx-ts-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(230, 0, 0, 0.16);
    border-bottom: 5px solid var(--clx-ts-red);
}

.clx-gia-tri-item h4 {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.35;
    color: var(--clx-ts-text);
    font-weight: 900;
}

.clx-gia-tri-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--clx-ts-text);
}

/* Tablet */
@media (min-width: 768px) {
    .clx-tam-sang-section {
        padding: 24px 20px;
    }

    .clx-tam-sang-wrap {
        padding: 46px 28px 36px;
    }

    .clx-tam-sang-hero-img {
        right: -30px;
        top: 62px;
        width: 360px;
        height: 260px;
        opacity: 0.45;
    }

    .clx-tam-sang-heading h2 {
        font-size: 30px;
    }

    .clx-tam-sang-heading p {
        font-size: 16px;
    }

    .clx-tam-sang-main {
        grid-template-columns: 32% 68%;
        gap: 22px;
    }

    .clx-tam-nhin-card {
        padding: 32px 26px;
    }

    .clx-su-menh-card {
        padding: 32px 26px 22px;
    }

    .clx-su-menh-head {
        grid-template-columns: 96px 1fr;
        align-items: center;
    }

    .clx-su-menh-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .clx-su-menh-item {
        border-right: 1px solid var(--clx-ts-line);
    }

    .clx-su-menh-item:nth-child(2),
    .clx-su-menh-item:nth-child(4) {
        border-right: 0;
    }

    .clx-su-menh-item:nth-child(3) {
        border-bottom: 0;
    }

    .clx-gia-tri-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .clx-gia-tri-item {
        padding: 18px 16px;
    }

    .clx-gia-tri-item:nth-child(odd) {
        border-right: 1px solid #ffd0d0;
    }

    .clx-gia-tri-item:nth-child(3),
    .clx-gia-tri-item:nth-child(4) {
        border-bottom: 0;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .clx-tam-sang-wrap {
        padding: 54px 50px 46px;
    }

    .clx-tam-sang-hero-img {
        right: -10px;
        top: 48px;
        width: 430px;
        height: 300px;
        opacity: 0.75;
    }

    .clx-tam-sang-heading {
        margin-bottom: 62px;
    }

    .clx-tam-sang-heading h2 {
        font-size: 38px;
    }

    .clx-tam-sang-heading p {
        font-size: 19px;
    }

    .clx-tam-sang-main {
        grid-template-columns: 31% 69%;
        gap: 22px;
    }

    .clx-tam-nhin-card {
        min-height: 410px;
        padding: 44px 34px 38px;
    }

    .clx-su-menh-card {
        min-height: 410px;
        padding: 32px 22px 18px;
    }

    .clx-su-menh-head {
        grid-template-columns: 120px 1fr;
        margin-bottom: 24px;
    }

    .clx-tam-sang-icon {
        width: 96px;
        height: 96px;
        font-size: 50px;
    }

    .clx-tam-sang-card h3 {
        font-size: 20px;
    }

    .clx-tam-nhin-card p,
    .clx-su-menh-head p {
        font-size: 14px;
    }

    .clx-su-menh-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .clx-su-menh-item {
        border-bottom: 0;
        border-right: 1px solid var(--clx-ts-line);
    }

    .clx-su-menh-item:last-child {
        border-right: 0;
    }

    .clx-su-menh-item:nth-child(2),
    .clx-su-menh-item:nth-child(4) {
        border-right: 1px solid var(--clx-ts-line);
    }

    .clx-su-menh-item:nth-child(4) {
        border-right: 0;
    }

    .clx-gia-tri-title {
        margin-top: 42px;
    }

    .clx-gia-tri-title h3 {
        font-size: 19px;
        padding: 12px 36px;
    }

    .clx-gia-tri-list {
        grid-template-columns: repeat(4, 1fr);
        padding: 28px 26px;
    }

    .clx-gia-tri-item {
        grid-template-columns: 78px 1fr;
        padding: 18px 22px;
        border-bottom: 0;
        border-right: 1px solid #ffd0d0;
    }

    .clx-gia-tri-item:last-child {
        border-right: 0;
    }

    .clx-gia-tri-icon {
        width: 72px;
        height: 72px;
        font-size: 38px;
    }

    .clx-gia-tri-item h4 {
        font-size: 15px;
    }

    .clx-gia-tri-item p {
        font-size: 13.5px;
    }
}

/* Desktop lớn */
@media (min-width: 1366px) {
    .clx-tam-sang-wrap {
        padding: 58px 50px 50px;
    }

    .clx-tam-sang-heading h2 {
        font-size: 42px;
    }

    .clx-tam-sang-heading p {
        font-size: 20px;
    }

    .clx-tam-sang-hero-img {
        width: 470px;
        height: 330px;
    }
}





/* =========================================================
   CENLUX - Ý NGHĨA LOGO
   Text size đã giảm nhỏ
========================================================= */

.y-nghia-logo-cenlux {
    --yl-red: #e60000;
    --yl-red-dark: #bd0000;
    --yl-text: #111827;
    --yl-muted: #4b5563;
    --yl-line: #eeeeee;
    --yl-bg: #f6f6f6;
    --yl-white: #ffffff;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 24px 16px;
    background: var(--yl-bg);
    box-sizing: border-box;
    overflow: hidden;
}

.y-nghia-logo-cenlux *,
.y-nghia-logo-cenlux *::before,
.y-nghia-logo-cenlux *::after {
    box-sizing: border-box;
}

.ynghia-khung {
    position: relative;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 34px 36px 28px;
    background: var(--yl-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.ynghia-khung::before {
    content: "";
    position: absolute;
    left: -150px;
    top: -210px;
    width: 520px;
    height: 360px;
    background: linear-gradient(135deg, #c40000, #ff2424);
    border-radius: 0 0 100% 0;
    z-index: 0;
}

.ynghia-khung::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -210px;
    width: 520px;
    height: 300px;
    background: linear-gradient(135deg, #ff2424, #c40000);
    border-radius: 100% 0 0 0;
    z-index: 0;
}

.ynghia-tieu-de,
.ynghia-noi-dung,
.ynghia-ket-luan {
    position: relative;
    z-index: 2;
}

.ynghia-tieu-de {
    text-align: center;
    margin-bottom: 20px;
}

.ynghia-tieu-de h2 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    color: var(--yl-text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ynghia-tieu-de h2 span {
    color: var(--yl-red);
}

.ynghia-tieu-de p {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
    color: var(--yl-text);
    font-weight: 500;
}

.ynghia-tieu-de p strong {
    color: var(--yl-red);
    font-weight: 900;
}

.ynghia-noi-dung {
    display: grid;
    grid-template-columns: 28% 72%;
    gap: 0;
    margin-top: 18px;
}

.ynghia-logo-box {
    min-height: 600px;
    padding: 62px 30px 38px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ynghia-logo-box img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin-bottom: 28px;
}

.ynghia-logo-box p {
    max-width: 340px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: var(--yl-text);
    text-align: center;
}

.ynghia-list {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.ynghia-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 22px;
    align-items: center;
    padding: 19px 30px;
    border-bottom: 1px solid var(--yl-line);
}

.ynghia-item:last-child {
    border-bottom: 0;
}

.ynghia-icon {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #ffd6d6;
    color: var(--yl-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(230, 0, 0, 0.12);
}

.ynghia-icon::after {
    content: "";
    position: absolute;
    right: -28px;
    top: 18px;
    width: 1px;
    height: 62px;
    background: #efb7b7;
}

.ynghia-icon span {
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
    color: var(--yl-red);
}

.ynghia-logo-mini span {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.ynghia-text h3 {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--yl-text);
    font-weight: 900;
    text-transform: uppercase;
}

.ynghia-text h4 {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.35;
    color: var(--yl-red);
    font-weight: 800;
}

.ynghia-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--yl-text);
}

.ynghia-text ul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.ynghia-text li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--yl-text);
}

.ynghia-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--yl-red);
    border-radius: 999px;
}

.ynghia-ket-luan {
    width: 84%;
    margin: 20px auto 0;
    padding: 18px 24px;
    background: linear-gradient(180deg, #fff8f8, #fff0f0);
    border: 1px solid #ffd6d6;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 76px 1fr 430px;
    gap: 22px;
    align-items: center;
}

.ynghia-ket-luan-icon {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--yl-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.15);
    border-bottom: 5px solid var(--yl-red);
}

.ynghia-ket-luan p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--yl-text);
    font-weight: 800;
}

.ynghia-ket-luan strong {
    display: block;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--yl-red), var(--yl-red-dark));
    border-radius: 14px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

/* Laptop */
@media (max-width: 1280px) {
    .ynghia-khung {
        padding: 32px 26px 26px;
    }

    .ynghia-noi-dung {
        grid-template-columns: 31% 69%;
    }

    .ynghia-logo-box {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ynghia-item {
        grid-template-columns: 118px 1fr;
        gap: 20px;
        padding: 18px 26px;
    }

    .ynghia-icon {
        width: 88px;
        height: 88px;
    }

    .ynghia-icon span {
        font-size: 40px;
    }

    .ynghia-text h3 {
        font-size: 17px;
    }

    .ynghia-text h4 {
        font-size: 14px;
    }

    .ynghia-text p,
    .ynghia-text li {
        font-size: 13.5px;
    }

    .ynghia-ket-luan {
        width: 92%;
        grid-template-columns: 72px 1fr 360px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .ynghia-tieu-de h2 {
        font-size: 30px;
    }

    .ynghia-tieu-de p {
        font-size: 16px;
    }

    .ynghia-noi-dung {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ynghia-logo-box {
        min-height: auto;
        padding: 38px 24px;
    }

    .ynghia-logo-box img {
        max-width: 240px;
    }

    .ynghia-ket-luan {
        width: 100%;
        grid-template-columns: 72px 1fr;
    }

    .ynghia-ket-luan strong {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .y-nghia-logo-cenlux {
        padding: 16px 10px;
    }

    .ynghia-khung {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .ynghia-khung::before {
        left: -180px;
        top: -230px;
        width: 420px;
        height: 330px;
    }

    .ynghia-khung::after {
        right: -210px;
        bottom: -230px;
        width: 430px;
        height: 300px;
    }

    .ynghia-tieu-de h2 {
        font-size: 23px;
    }

    .ynghia-tieu-de p {
        font-size: 13.5px;
    }

    .ynghia-logo-box {
        padding: 30px 18px;
    }

    .ynghia-logo-box img {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .ynghia-logo-box p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .ynghia-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 16px;
        text-align: center;
    }

    .ynghia-icon {
        width: 78px;
        height: 78px;
    }

    .ynghia-icon::after {
        display: none;
    }

    .ynghia-icon span {
        font-size: 36px;
    }

    .ynghia-logo-mini span {
        font-size: 14px;
    }

    .ynghia-text h3 {
        font-size: 15.5px;
    }

    .ynghia-text h4 {
        font-size: 13.5px;
    }

    .ynghia-text p,
    .ynghia-text li {
        font-size: 13px;
    }

    .ynghia-text ul {
        text-align: left;
    }

    .ynghia-ket-luan {
        padding: 18px 14px;
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .ynghia-ket-luan-icon {
        width: 62px;
        height: 62px;
        font-size: 34px;
        margin: 0 auto;
    }

    .ynghia-ket-luan p {
        font-size: 13.5px;
    }

    .ynghia-ket-luan strong {
        padding: 13px 14px;
        font-size: 13px;
    }
}

/* Mobile nhỏ */
@media (max-width: 420px) {
    .ynghia-tieu-de h2 {
        font-size: 21px;
    }

    .ynghia-logo-box img {
        max-width: 190px;
    }
}




/* =========================================================
   SƠ ĐỒ TỔ CHỨC - HIỂN THỊ BẰNG ẢNH
========================================================= */

.so-do-to-chuc-anh {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 24px 16px;
    background: #f5f5f5;
    box-sizing: border-box;
}

.so-do-to-chuc-anh *,
.so-do-to-chuc-anh *::before,
.so-do-to-chuc-anh *::after {
    box-sizing: border-box;
}

.sdtc-anh-khung {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.sdtc-anh-khung img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px) {
    .so-do-to-chuc-anh {
        padding: 20px 12px;
    }

    .sdtc-anh-khung {
        border-radius: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .so-do-to-chuc-anh {
        padding: 16px 10px;
    }

    .sdtc-anh-khung {
        border-radius: 12px;
    }
}




/* =========================================================
   CENLUX - THƯ VIỆN TÀI LIỆU
   Prefix class: clx-
========================================================= */

.clx-thu-vien-tai-lieu {
    --clx-tvtl-red: #e60000;
    --clx-tvtl-red-dark: #c90000;
    --clx-tvtl-text: #111827;
    --clx-tvtl-muted: #5b6472;
    --clx-tvtl-border: #dfe3e8;
    --clx-tvtl-bg: #f6f6f6;
    --clx-tvtl-white: #ffffff;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 30px 38px 46px;
    background: var(--clx-tvtl-bg);
    box-sizing: border-box;
}

.clx-thu-vien-tai-lieu *,
.clx-thu-vien-tai-lieu *::before,
.clx-thu-vien-tai-lieu *::after {
    box-sizing: border-box;
}

.clx-tvtl-khung {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

/* Header */
.clx-tvtl-heading-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 42px;
}

.clx-tvtl-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.clx-tvtl-heading-icon {
    width: 48px;
    height: 48px;
    color: var(--clx-tvtl-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    line-height: 1;
    flex: 0 0 auto;
}

.clx-tvtl-heading h2 {
    margin: 0 0 5px;
    font-size: 32px;
    line-height: 1.12;
    color: var(--clx-tvtl-text);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.clx-tvtl-heading p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--clx-tvtl-muted);
}

/* Title */
.clx-tvtl-title-line {
    margin-bottom: 26px;
}

.clx-tvtl-title-line h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.2;
    color: var(--clx-tvtl-red);
    font-weight: 900;
    text-transform: uppercase;
}

/* Grid */
.clx-tvtl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 28px;
}

/* Card */
.clx-tvtl-card {
    min-height: 190px;
    padding: 24px;
    background: var(--clx-tvtl-white);
    border: 1px solid var(--clx-tvtl-border);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.055);
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    align-items: start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.clx-tvtl-card:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 0, 0, 0.5);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

/* Icon */
.clx-tvtl-icon {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clx-tvtl-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    width: 1em;
    height: 1em;
}

.clx-tvtl-red {
    background: #ffdce2;
    color: #ef233c;
}

.clx-tvtl-blue {
    background: #dceeff;
    color: #1684ee;
}

.clx-tvtl-green {
    background: #dff6eb;
    color: #12a96b;
}

.clx-tvtl-yellow {
    background: #fff2cf;
    color: #f5aa00;
}

.clx-tvtl-purple {
    background: #efddff;
    color: #8a30c9;
}

.clx-tvtl-steel {
    background: #e8eef5;
    color: #3577ae;
}

.clx-tvtl-orange {
    background: #ffe9d8;
    color: #f47a00;
}

.clx-tvtl-pink {
    background: #ffdce8;
    color: #df1b63;
}

/* Content */
.clx-tvtl-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 142px;
}

.clx-tvtl-content h4 {
    margin: 2px 0 12px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--clx-tvtl-text);
    font-weight: 900;
}

.clx-tvtl-content p {
    margin: 0 0 20px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--clx-tvtl-text);
}

/* Button */
.clx-tvtl-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px;
    width: 168px;
    height: 42px;
    margin-top: auto;
    padding: 0 18px;
    border: 1px solid var(--clx-tvtl-red);
    border-radius: 7px;
    background: #ffffff;
    color: var(--clx-tvtl-red);
    font-size: 14px;
    line-height: 1 !important;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.clx-tvtl-btn i {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
    font-size: 12px;
    line-height: 1 !important;
    transform: none !important;
}

.clx-tvtl-btn:hover {
    background: var(--clx-tvtl-red);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Laptop */
@media (max-width: 1280px) {
    .clx-thu-vien-tai-lieu {
        padding-left: 28px;
        padding-right: 28px;
    }

    .clx-tvtl-heading-icon {
        width: 44px;
        height: 44px;
        font-size: 34px;
    }

    .clx-tvtl-heading h2 {
        font-size: 29px;
    }

    .clx-tvtl-grid {
        gap: 24px;
    }

    .clx-tvtl-card {
        min-height: 184px;
        grid-template-columns: 74px 1fr;
        gap: 20px;
        padding: 22px;
    }

    .clx-tvtl-icon {
        width: 66px;
        height: 66px;
    }

    .clx-tvtl-icon i {
        font-size: 28px;
    }

    .clx-tvtl-content h4 {
        font-size: 17px;
    }

    .clx-tvtl-content p {
        font-size: 13px;
    }

    .clx-tvtl-btn {
        width: 158px;
        height: 40px;
        font-size: 13.5px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .clx-tvtl-heading-row {
        margin-bottom: 34px;
    }

    .clx-tvtl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .clx-thu-vien-tai-lieu {
        padding: 22px 12px 34px;
    }

    .clx-tvtl-heading {
        gap: 12px;
        align-items: flex-start;
    }

    .clx-tvtl-heading-icon {
        width: 38px;
        height: 38px;
        font-size: 30px;
    }

    .clx-tvtl-heading h2 {
        font-size: 21px;
    }

    .clx-tvtl-heading p {
        font-size: 13px;
    }

    .clx-tvtl-title-line h3 {
        font-size: 20px;
    }

    .clx-tvtl-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .clx-tvtl-card {
        min-height: auto;
        grid-template-columns: 58px 1fr;
        gap: 14px;
        padding: 16px;
    }

    .clx-tvtl-icon {
        width: 54px;
        height: 54px;
        border-radius: 12px;
    }

    .clx-tvtl-icon i {
        font-size: 23px;
    }

    .clx-tvtl-content {
        min-height: auto;
    }

    .clx-tvtl-content h4 {
        margin: 0 0 8px;
        font-size: 16px;
    }

    .clx-tvtl-content p {
        margin-bottom: 16px;
        font-size: 13px;
        line-height: 1.55;
    }

    .clx-tvtl-btn {
        width: 142px;
        height: 38px;
        margin-top: 0;
        gap: 14px;
        font-size: 13px;
    }

    .clx-tvtl-btn i {
        font-size: 11px;
    }
}

/* Mobile nhỏ */
@media (max-width: 420px) {
    .clx-tvtl-card {
        grid-template-columns: 1fr;
    }

    .clx-tvtl-icon {
        width: 58px;
        height: 58px;
    }

    .clx-tvtl-btn {
        width: 100%;
    }
}

/* =========================================================
   CENLUX - BLOG ARCHIVE
   1 bài viết / 1 hàng - Full width
========================================================= */

/* Wrapper blog */
#content.blog-wrapper.blog-archive {
    --clx-blog-main: #e60000;
    --clx-blog-main-dark: #b90000;
    --clx-blog-text: #111827;
    --clx-blog-muted: #667085;
    --clx-blog-border: #e5e7eb;
    --clx-blog-bg: #f6f6f6;
    --clx-blog-white: #ffffff;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 32px 16px 48px;
    background: var(--clx-blog-bg);
    box-sizing: border-box;
}

#content.blog-wrapper.blog-archive *,
#content.blog-wrapper.blog-archive *::before,
#content.blog-wrapper.blog-archive *::after {
    box-sizing: border-box;
}

/* Ép vùng bài viết full width */
#content.blog-wrapper.blog-archive>.row {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

#content.blog-wrapper.blog-archive .large-9.col {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Ẩn sidebar */
#content.blog-wrapper.blog-archive .post-sidebar {
    display: none !important;
}

/* Danh sách bài viết */
#post-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

/* Card bài viết */
#post-list article.post {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

#post-list article.post .article-inner {
    width: 100%;
    padding: 18px;
    background: var(--clx-blog-white);
    border: 1px solid var(--clx-blog-border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

/* Có ảnh: layout ảnh trái nội dung phải */
#post-list article.post:has(.entry-image) .article-inner {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    grid-template-areas:
        "image header"
        "image content"
        "image footer";
    column-gap: 26px;
    align-items: start;
}

/* Không có ảnh: full text */
#post-list article.post:not(:has(.entry-image)) .article-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "header"
        "content"
        "footer";
}

#post-list article.post .article-inner:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 0, 0, 0.3);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

/* Cho phép tách image và title ra khỏi header Flatsome */
#post-list article.post .entry-header {
    display: contents;
}

#post-list article.post .entry-image {
    grid-area: image;
    width: 100%;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f1f1;
}

#post-list article.post .entry-image a {
    display: block;
    width: 100%;
    height: 100%;
}

#post-list article.post .entry-image img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

#post-list article.post .article-inner:hover .entry-image img {
    transform: scale(1.03);
}

/* Badge ngày */
#post-list article.post .badge.post-date {
    top: 12px;
    left: 12px;
    right: auto;
}

#post-list article.post .badge-inner {
    background: var(--clx-blog-main);
    color: #ffffff;
    border: 0;
}

/* Header text */
#post-list article.post .entry-header-text {
    grid-area: header;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 0 10px !important;
}

#post-list article.post .entry-category {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#post-list article.post .entry-category a {
    color: var(--clx-blog-main);
    text-decoration: none;
}

#post-list article.post .entry-title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 900;
    color: var(--clx-blog-text);
}

#post-list article.post .entry-title a {
    color: var(--clx-blog-text);
    text-decoration: none;
}

#post-list article.post .entry-title a:hover {
    color: var(--clx-blog-main);
}

#post-list article.post .entry-divider {
    display: none;
}

#post-list article.post .entry-meta.uppercase {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--clx-blog-muted);
    text-transform: none;
    letter-spacing: 0;
}

#post-list article.post .entry-meta a {
    color: var(--clx-blog-muted);
    text-decoration: none;
}

#post-list article.post .entry-meta a:hover {
    color: var(--clx-blog-main);
}

/* Content */
#post-list article.post .entry-content {
    grid-area: content;
    padding: 0;
    margin: 0;
}

#post-list article.post .entry-summary {
    margin: 0;
}

#post-list article.post .entry-summary p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--clx-blog-muted);
}

/* Button đọc tiếp */
#post-list article.post .entry-summary .text-center {
    text-align: left !important;
}

#post-list article.post .more-link.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 132px;
    height: 38px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid var(--clx-blog-main);
    border-radius: 8px;
    background: #ffffff;
    color: var(--clx-blog-main);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
}

#post-list article.post .more-link.button:hover {
    background: var(--clx-blog-main);
    color: #ffffff;
    box-shadow: none;
}

#post-list article.post .more-link .meta-nav {
    display: inline-block;
    line-height: 1;
}

/* Footer meta */
#post-list article.post>.article-inner>footer.entry-meta {
    grid-area: footer;
    margin: 14px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--clx-blog-border);
    font-size: 12px;
    line-height: 1.45;
    color: var(--clx-blog-muted);
}

#post-list article.post footer.entry-meta a {
    color: var(--clx-blog-muted);
    text-decoration: none;
}

#post-list article.post footer.entry-meta a:hover {
    color: var(--clx-blog-main);
}

#post-list article.post .comments-link.pull-right {
    float: none !important;
    margin-left: 12px;
}

/* Tablet */
@media (max-width: 1024px) {
    #content.blog-wrapper.blog-archive {
        padding: 28px 14px 42px;
    }

    #post-list article.post:has(.entry-image) .article-inner {
        grid-template-columns: 260px minmax(0, 1fr);
        column-gap: 22px;
    }

    #post-list article.post .entry-image img {
        height: 190px;
    }

    #post-list article.post .entry-title {
        font-size: 21px;
    }

    #post-list article.post .entry-summary p {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #content.blog-wrapper.blog-archive {
        padding: 20px 10px 34px;
    }

    #content.blog-wrapper.blog-archive>.row {
        padding-left: 0;
        padding-right: 0;
    }

    #post-list {
        gap: 18px;
    }

    #post-list article.post .article-inner,
    #post-list article.post:has(.entry-image) .article-inner,
    #post-list article.post:not(:has(.entry-image)) .article-inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "header"
            "content"
            "footer";
        gap: 0;
        padding: 14px;
        border-radius: 14px;
    }

    #post-list article.post:not(:has(.entry-image)) .article-inner {
        grid-template-areas:
            "header"
            "content"
            "footer";
    }

    #post-list article.post .entry-image {
        margin-bottom: 14px;
    }

    #post-list article.post .entry-image img {
        height: 210px;
    }

    #post-list article.post .entry-title {
        font-size: 19px;
    }

    #post-list article.post .entry-category {
        font-size: 11px;
    }

    #post-list article.post .entry-meta.uppercase {
        font-size: 11.5px;
    }

    #post-list article.post .entry-summary p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    #post-list article.post .more-link.button {
        width: 100%;
        height: 38px;
    }

    #post-list article.post>.article-inner>footer.entry-meta {
        font-size: 11.5px;
    }

    #post-list article.post .comments-link.pull-right {
        display: block;
        margin-left: 0;
        margin-top: 6px;
    }
}

/* Mobile nhỏ */
@media (max-width: 420px) {
    #post-list article.post .entry-image img {
        height: 180px;
    }

    #post-list article.post .entry-title {
        font-size: 18px;
    }
}