/* ==================================================
   TRANG SHOP VIỆT - CSS TRANG NỘI DUNG
   File: assets/css/tsv-pages.css

   Gồm:
   01. Trang chính sách: .tsv-policy-page
   02. Trang giới thiệu: .tsv-about-page
================================================== */


/* ==================================================
   01. TRANG CHÍNH SÁCH
================================================== */

.tsv-policy-page {
    max-width: 980px;
    margin: 45px auto 60px;
    padding: 42px 46px 55px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
    color: #1f2937;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tsv-policy-page h1 {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--tsv-h1-size, 24px);
    line-height: 1.35;
    margin-bottom: 34px;
    color: var(--tsv-heading-color, #082b63);
    text-transform: none;
    font-weight: 700;
    letter-spacing: 0;
    position: relative;
}

.tsv-policy-page h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 16px auto 0;
    background: #f5a623;
    border-radius: 99px;
}

.tsv-policy-page h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--tsv-h2-size, 22px);
    line-height: 1.45;
    margin-top: 34px;
    margin-bottom: 14px;
    padding-left: 14px;
    color: var(--tsv-heading-color, #082b63);
    font-weight: 700;
    letter-spacing: 0;
    border-left: 4px solid #1f78d1;
}

.tsv-policy-page p {
    margin-bottom: 16px;
}

.tsv-policy-page strong {
    color: var(--tsv-heading-color, #082b63);
    font-weight: 700;
}

.tsv-policy-page ul {
    margin: 12px 0 20px 22px;
    padding-left: 10px;
}

.tsv-policy-page ul li {
    margin-bottom: 10px;
    padding-left: 3px;
}

@media only screen and (max-width: 1024px) {
    .tsv-policy-page h1 {
        font-size: var(--tsv-h1-size-tablet, 22px);
    }

    .tsv-policy-page h2 {
        font-size: var(--tsv-h2-size-tablet, 20px);
    }
}

@media only screen and (max-width: 768px) {
    .tsv-policy-page {
        margin: 25px 12px 45px;
        padding: 28px 18px 38px;
        font-size: 16px;
        line-height: 1.75;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }

    .tsv-policy-page h1 {
        font-size: var(--tsv-h1-size-mobile, 20px);
        line-height: 1.35;
        margin-bottom: 28px;
    }

    .tsv-policy-page h1::after {
        width: 58px;
        height: 3px;
        margin-top: 12px;
    }

    .tsv-policy-page h2 {
        font-size: var(--tsv-h2-size-mobile, 18px);
        line-height: 1.4;
        margin-top: 28px;
        padding-left: 12px;
        border-left-width: 4px;
    }

    .tsv-policy-page ul {
        margin-left: 18px;
        padding-left: 6px;
    }
}


/* ==================================================
   02. TRANG GIỚI THIỆU
================================================== */

.tsv-about-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 15px 60px;
    color: #1f2937;
}

.tsv-about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    margin-bottom: 55px;
}

.tsv-about-label {
    display: inline-block;
    color: #1f78d1;
    font-weight: 700;
    margin-bottom: 10px;
}

.tsv-about-text h1 {
    font-size: var(--tsv-h1-size, 24px);
    line-height: 1.25;
    color: var(--tsv-heading-color, #082b63);
    margin-bottom: 18px;
    text-transform: none;
}

.tsv-about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tsv-about-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.tsv-about-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.tsv-about-btn {
    display: inline-block;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
}

.tsv-about-btn.primary {
    background: #1f78d1;
    color: #ffffff !important;
}

.tsv-about-btn.secondary {
    background: #f5a623;
    color: #ffffff !important;
}

.tsv-about-btn:hover {
    opacity: 0.9;
}

.tsv-about-section {
    margin-bottom: 55px;
}

.tsv-about-section h2,
.tsv-about-commitment h2 {
    text-align: center;
    font-size: var(--tsv-h2-size, 22px);
    color: var(--tsv-heading-color, #082b63);
    margin-bottom: 28px;
}

.tsv-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tsv-about-card {
    background: #ffffff;
    padding: 26px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
}

.tsv-about-card h3 {
    color: var(--tsv-heading-color, #082b63);
    font-size: var(--tsv-h3-size, 18px);
    margin-bottom: 10px;
}

.tsv-about-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.tsv-process-list {
    display: grid;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.tsv-process-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    padding: 22px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
}

.tsv-process-item span {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1f78d1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.tsv-process-item h3 {
    color: var(--tsv-heading-color, #082b63);
    font-size: var(--tsv-h3-size, 18px);
    margin-bottom: 6px;
}

.tsv-process-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.tsv-about-commitment {
    text-align: center;
    background: #f4f8ff;
    padding: 38px 28px;
    border-radius: 18px;
}

.tsv-about-commitment p {
    max-width: 820px;
    margin: 0 auto 22px;
    font-size: 17px;
    line-height: 1.8;
}

.tsv-about-commitment .tsv-about-btn.primary {
    display: inline-block !important;
    background: #1f78d1 !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(31, 120, 209, 0.25);
}

.tsv-about-commitment .tsv-about-btn.primary:hover {
    background: #f5a623 !important;
    color: #ffffff !important;
}

@media only screen and (max-width: 1024px) {
    .tsv-about-text h1 {
        font-size: var(--tsv-h1-size-tablet, 22px);
    }

    .tsv-about-section h2,
    .tsv-about-commitment h2 {
        font-size: var(--tsv-h2-size-tablet, 20px);
    }

    .tsv-about-card h3,
    .tsv-process-item h3 {
        font-size: var(--tsv-h3-size-tablet, 17px);
    }
}

@media only screen and (max-width: 768px) {
    .tsv-about-page {
        padding: 30px 15px 45px;
    }

    .tsv-about-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 42px;
    }

    .tsv-about-text h1 {
        font-size: var(--tsv-h1-size-mobile, 20px);
    }

    .tsv-about-grid {
        grid-template-columns: 1fr;
    }

    .tsv-about-section h2,
    .tsv-about-commitment h2 {
        font-size: var(--tsv-h2-size-mobile, 18px);
    }

    .tsv-about-card h3,
    .tsv-process-item h3 {
        font-size: var(--tsv-h3-size-mobile, 16px);
    }

    .tsv-process-item {
        padding: 20px 18px;
    }
}