/* === Hero Section === */
.hero-section {
    position: relative;
    height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 32px;
}

.hero-title {
    font-size: 45px;
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-link-white {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

    .btn-link-white:hover {
        opacity: 0.8;
    }

    .btn-link-white .arrow-icon {
        font-size: 1.32px;
    }

.btn-primary-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

    .btn-primary-outline:hover {
        background-color: white;
        color: var(--primary-color);
    }

/* ===== Video Control Button — Góc trên bên phải ===== */
.video-control {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 4;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

    .video-control:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: white;
        transform: scale(1.08);
    }

    .video-control:focus {
        outline: none;
    }

    .video-control i {
        pointer-events: none;
    }

/* === Disease Search Section === */
.disease-search-section {
    padding: 48px 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

    .disease-search-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
        opacity: 0.3;
    }

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Layout 2 cột: chữ cái bên trái, search bên phải */
.disease-search-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.disease-search-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

/* Alphabet Grid - Blue Theme */
.alphabet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 480px;
}

.alphabet-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid #0051a5;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #0051a5;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .alphabet-letter:hover:not(.disabled) {
        background: #0051a5;
        color: #ffffff;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 81, 165, 0.3);
    }

    .alphabet-letter.disabled {
        opacity: 0.25;
        cursor: not-allowed;
        border-color: #9ca3af;
        color: #9ca3af;
    }

.search-box {
    position: relative;
    max-width: 100%;
    margin: 0;
}

.search-label {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    font-size: 16px;
    text-align: center;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    padding: 4px 16px;
    box-shadow: none;
    transition: border-color 0.2s;
}

    .search-input-wrapper:focus-within {
        border-color: #0051a5;
        box-shadow: 0 0 0 3px rgba(0, 81, 165, 0.1);
    }

.search-icon-prefix {
    color: #6b7280;
    font-size: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 4px 0;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    background: transparent;
    color: #1f2937;
}

    .search-input:focus {
        outline: none;
    }

    .search-input::placeholder {
        color: #9ca3af;
    }

.search-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #0051a5 0%, #003d7a 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .search-btn:hover {
        background: linear-gradient(135deg, #003d7a 0%, #002d5c 100%);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

.search-icon {
    font-size: 18px;
}

/* === Content Sections === */
.content-section {
    padding: 50px 0;
}

    .content-section.bg-light {
        background-color: #f8f9fa;
    }

.section-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

    .two-column-layout.reverse {
        direction: rtl;
    }

        .two-column-layout.reverse > * {
            direction: ltr;
        }

.content-text {
    margin-bottom: 32px;
}

    .content-text p {
        margin-bottom: 16px;
        line-height: 1.8;
    }

.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

    .text-link:hover {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }

.content-image {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

    .btn-secondary:hover {
        background-color: var(--secondary-color);
        color: white;
    }

.btn-tertiary {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-bottom: 32px;
}

    .btn-tertiary:hover {
        border-color: var(--secondary-color);
        color: var(--secondary-color);
    }

/* === Locations Section === */
.locations-section {
    padding: 60px 0;
    background-color: white;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.location-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.location-card:hover .location-image {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 32px 16px;
}

.location-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.location-subtitle {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.location-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.location-card:hover .location-link {
    opacity: 1;
}

/* === Care Areas Section === */
.care-areas-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.care-area {
    position: relative;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

    .care-area:hover {
        transform: translateY(-4px);
        border-color: #0051a5;
    }

.care-area-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0051a5;
}

.care-area-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.care-area-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Responsive Adjustments for Care Areas */
@media (max-width: 991px) {
    .care-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .care-areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Locations Section - Enhanced Styling */
.locations-section {
    padding: 60px 0;
    background-color: #fff;
}

.location-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .location-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.location-info {
    padding: 16px;
}

.location-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.location-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.location-link {
    display: inline-block;
    padding: 10px 20px;
    background: #0051a5;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

    .location-link:hover {
        background: #003d7a;
    }

/* Responsive Adjustments for Locations Section */
@media (max-width: 991px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Disease Search Section — White Background ===== */
.disease-search-section {
    padding: 48px 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Layout 2 cột: chữ cái bên trái, search bên phải */
.disease-search-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.disease-search-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

/* ===== Alphabet Grid ===== */
.alphabet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 480px;
}

.alphabet-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid #0051a5;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #0051a5;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .alphabet-letter:hover:not(.disabled) {
        background: #0051a5;
        color: #ffffff;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 81, 165, 0.3);
    }

    .alphabet-letter.disabled {
        opacity: 0.25;
        cursor: not-allowed;
        border-color: #9ca3af;
        color: #9ca3af;
    }

.search-box {
    position: relative;
    max-width: 100%;
    margin: 0;
}

.search-label {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    font-size: 16px;
    text-align: center;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    padding: 4px 16px;
    box-shadow: none;
    transition: border-color 0.2s;
}

    .search-input-wrapper:focus-within {
        border-color: #0051a5;
        box-shadow: 0 0 0 3px rgba(0, 81, 165, 0.1);
    }

.search-icon-prefix {
    color: #6b7280;
    font-size: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 4px 0;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    background: transparent;
    color: #1f2937;
}

    .search-input:focus {
        outline: none;
    }

    .search-input::placeholder {
        color: #9ca3af;
    }

/* ===== Search Results Dropdown ===== */
.search-results {
    /*position: absolute;*/
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #0051a5;
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: none;
}

.search-results-list {
    padding: 8px 0;
}

.search-result-item {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    color: #374151;
    transition: background 0.2s;
}

    .search-result-item:last-child {
        border-bottom: none;
    }

    .search-result-item:hover {
        background: #f3f4f6;
    }

.result-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

    .result-name strong {
        color: #0051a5;
        background: #e0f2fe;
        padding: 0 2px;
    }

.result-description {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

.search-result-empty {
    padding: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* ===== Featured Blogs Section ===== */
.featured-blogs-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 12px;
    }

    .section-header .section-description {
        font-size: 1.1rem;
        color: #6b7280;
        max-width: 600px;
        margin: 0 auto;
    }

.featured-blogs-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 30px;
}

/* Mỗi bài viết: 2 cột — ảnh + nội dung */
.featured-blog-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* So le: bài lẻ đảo cột */
.featured-blog-item--reverse {
    direction: rtl;
}

    .featured-blog-item--reverse > * {
        direction: ltr;
    }

/* Ảnh */
.featured-blog-image {
    width: 100%;
   /* aspect-ratio: 16 / 10;*/
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .featured-blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .featured-blog-image:hover img {
        transform: scale(1.04);
    }

/* Nội dung */
.featured-blog-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.featured-blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.featured-blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    margin: 0;
}

    .featured-blog-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
    }

    .featured-blog-title a:hover {
        color: #0051a5;
    }

.featured-blog-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-blog-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.featured-blog-readmore {
    font-size: 14px;
    font-weight: 600;
    color: #0051a5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

    .featured-blog-readmore:hover {
        gap: 8px;
        color: #003d7a;
    }

/* Đường phân cách giữa các bài */
.featured-blog-item + .featured-blog-item {
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .featured-blog-item,
    .featured-blog-item--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .featured-blog-title {
        font-size: 1.2rem;
    }

    .featured-blog-item + .featured-blog-item {
        padding-top: 32px;
    }
}

/* ===== Equipment Section ===== */
.equipment-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* Cột trái */
.equipment-intro {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 15px;
    align-self: flex-start;
}

.equipment-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Georgia', serif;
    line-height: 1.2;
    margin: 0;
}

.equipment-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.equipment-explore-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #0051a5;
    border-radius: 30px;
    color: #0051a5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    align-self: flex-start;
    margin-top: 8px;
}

    .equipment-explore-btn:hover {
        background: #0051a5;
        color: #ffffff;
    }

/* ===== Card — dùng height cố định thay vì grid-template-rows ===== */
.equipment-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: #1f2937;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .equipment-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    }

/* Hàng 1 — chiều cao lớn hơn */
.equipment-card--tall {
    height: 260px;
}

/* Hàng 2 — chiều cao nhỏ hơn */
.equipment-card--short {
    height: 210px;
}

.equipment-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.equipment-card:hover img {
    transform: scale(1.06);
}

.equipment-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    z-index: 1;
}

.equipment-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px 18px;
    z-index: 2;
}

.equipment-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.3;
}

    .equipment-card-title span {
        opacity: 0.85;
    }

.equipment-card-category {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .equipment-title {
        font-size: 1.8rem;
    }

    .equipment-card--tall,
    .equipment-card--short {
        height: 200px;
    }

    .equipment-section {
        padding: 48px 0;
    }
}

@media (max-width: 576px) {
    .equipment-card--tall,
    .equipment-card--short {
        height: 180px;
        margin-bottom: 4px;
    }
}

/* ===== Disease Search — Responsive Mobile ===== */
@media (max-width: 768px) {
    .disease-search-layout {
        grid-template-columns: 1fr;   /* 1 cột thay vì 2 */
        gap: 20px   ;
    }

    .alphabet-grid {
        max-width: 100%;              /* Cho phép wrap đầy chiều ngang */
    }

    .disease-search-left {
        order: 1;                     /* Chữ cái lên trên */
    }

    .disease-search-right {
        order: 2;                     /* Search xuống dưới */
    }

    .disease-search-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .alphabet-letter {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .featured-blogs-list {
        display: flex;
        flex-direction: column;
        gap: 13px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .disease-search-section {
        padding: 20px 0;
    }

    .alphabet-letter {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* ===== Care Areas Section — Lĩnh vực chuyên sâu ===== */
.care-areas-section {
    padding: 72px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* Cột 1: Giới thiệu */
.care-areas-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 32px;
}

.care-areas-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Georgia', serif;
    line-height: 1.25;
    margin: 0;
}

.care-areas-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.care-areas-explore-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #0051a5;
    border-radius: 30px;
    color: #0051a5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.25s ease;
    margin-top: 8px;
}

    .care-areas-explore-btn:hover {
        background: #0051a5;
        color: #ffffff;
    }

/* Danh sách bài viết */
.care-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .care-area-list li {
        border-bottom: 1px solid #e5e7eb;
    }

        .care-area-list li:first-child {
            border-top: 1px solid #e5e7eb;
        }

    .care-area-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 4px;
        text-decoration: none;
        transition: padding-left 0.2s ease;
    }

        .care-area-list a:hover {
            padding-left: 8px;
        }

.care-area-name {
    font-size: 15px;
    font-weight: 500;
    color: #0051a5;
    line-height: 1.4;
}

.care-area-arrow {
    font-size: 18px;
    color: #0051a5;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.care-area-list a:hover .care-area-arrow {
    transform: translateX(3px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .care-areas-intro {
        padding-right: 0;
        margin-bottom: 32px;
    }

    .care-areas-title {
        font-size: 1.8rem;
    }

    .care-areas-section {
        padding: 48px 0;
    }

}

@media (max-width: 576px) {
    .care-areas-title {
        font-size: 1.5rem;
    }
}

/* === (append to end of file) === */

/* ===== Nút Đọc thêm — outline xanh ===== */
.btn-readmore-outline {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid #0051a5;
    border-radius: 30px;
    color: #0051a5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .btn-readmore-outline:hover {
        background: #0051a5;
        color: #ffffff;
    }

/* ===== Equipment intro — đẩy nút xuống dưới, không đè ảnh ===== */
.equipment-intro {
    justify-content: flex-start;
}

/* ===== Custom cho mobile ===== */

@media (max-width: 768px) {

    .hero-title {
        font-size: 22px;
        font-weight: 300;
        margin-bottom: 10px;
        line-height: 1.2;
        font-family: 'Georgia', serif;
    }

    .featured-blogs-list {
        display: flex;
        flex-direction: column;
        gap: 13px;
        margin-bottom: 30px;
    }

    .featured-blogs-section {
        padding: 20px 0;
    }

    .equipment-section {
        padding: 20px 0;
    }
}