/* Reset CSS & Cơ bản */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Bóng đổ nhẹ */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d82b68; /* Màu hồng đậm */
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
}

/* Navigation Menu */
.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px; /* Khoảng cách giữa các menu item */
}

.nav-link {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d82b68;
}

/* Hiệu ứng gạch dưới cho active/hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px; /* Điều chỉnh vị trí đường gạch dưới */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #d82b68;
    transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 20px; /* Độ dài của đường gạch dưới giống trong hình */
}

.nav-link.active {
    font-weight: 600;
}

/* --- Mega Menu Styles --- */
.has-mega-menu {
    position: static; /* Để mega menu có thể stretch full width của container */
}

.mega-menu {
    position: absolute;
    top: 100%; /* Đặt ngay dưới header */
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f5f9;
    border-bottom: 3px solid #d82b68; /* Điểm nhấn dưới cùng */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 20px 0; /* Giảm padding tổng thể */
}

/* Khi hover vào li có mega menu thì hiện menu lên */
.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
}

.mega-col {
    flex: 1;
    border-right: 1px solid #f1f5f9;
    padding: 0 20px;
}

.mega-col:last-child {
    border-right: none;
}

.mega-title {
    color: #d82b68;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 8px; /* Giảm khoảng cách để gọn hơn */
    position: relative;
    padding-left: 10px;
}

.mega-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #94a3b8; /* Chấm bi nhạt màu hơn */
    font-size: 12px;
    line-height: 18px;
    top: 0;
}

.mega-list a {
    color: #475569; /* Xám nhạt hơn xíu */
    text-decoration: none;
    font-size: 13px; /* Nhỏ gọn hơn */
    font-weight: 500;
    transition: color 0.2s ease;
}

.mega-list a:hover {
    color: #d82b68;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px; /* Nút bo tròn */
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-login {
    color: #555;
    background-color: #f1f3f5;
    border-color: #e9ecef;
}

.btn-login:hover {
    background-color: #e2e6ea;
}

.btn-register {
    color: #d82b68;
    background-color: transparent;
    border-color: #d82b68;
}

.btn-register:hover {
    background-color: #d82b68;
    color: #ffffff;
}

/* Responsive cơ bản */
@media (max-width: 992px) {
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Ẩn menu trên mobile, có thể làm hamburger menu sau */
    }
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    margin-bottom: 80px; /* Nhường chỗ cho widget search đè lên */
}

.banner-background {
    width: 100%;
    height: 600px; /* Tăng chiều cao để không che chữ */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-content {
    position: absolute;
    top: 10%; /* Kéo chữ lên cao hơn */
    left: 10%;
    color: #111;
    max-width: 700px; /* Rộng hơn để text/stats không rớt dòng quá nhiều */
}

.banner-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Stats Layout */
.stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-stat {
    font-size: 20px;
    color: #ff8fb3; /* Màu hồng nhạt cho icon stat */
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 16px;
    color: #333;
}

.stat-text span {
    font-size: 12px;
    color: #777;
}

/* Search Widget Container - Đè lên nửa dưới của banner */
.search-widget-container {
    position: absolute;
    bottom: -80px; /* Căn chỉnh để đè một nửa ra ngoài */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px; /* Cho rộng ra bằng header */
    z-index: 10;
}

.search-widget {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px;
}

/* Widget Tabs */
.widget-tabs {
    display: flex;
    border-bottom: 1px solid #f1f3f5;
    margin-bottom: 20px;
}

.tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
}

.tab.active {
    color: #d82b68;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d82b68;
}

/* Service Icons */
.service-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 90px;
    border: 1px solid #f1f3f5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-item:hover {
    border-color: #d82b68;
    box-shadow: 0 2px 10px rgba(216,43,104,0.1);
}

.icon-circle {
    font-size: 24px;
    color: #d82b68; /* Màu hồng cho icon */
    margin-bottom: 8px;
}

.service-item span {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* Widget Bottom Row */
.widget-bottom {
    display: flex;
    gap: 15px;
}

/* Custom Location Selector */
.location-selector {
    flex: 1;
    position: relative;
}

.loc-selector-btn {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    color: #495057;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.loc-selector-btn:hover {
    border-color: #d82b68;
}

.loc-selector-btn i.fa-location-dot {
    color: #d82b68;
    margin-right: 5px;
}

.loc-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    width: 600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2d8ee;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-selector.active .loc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.loc-dropdown-single {
    width: 300px;
}
.loc-dropdown-single .loc-col {
    padding: 0;
}
.loc-dropdown-single .vn-col {
    border-right: none;
}
.dropdown-right {
    left: auto;
    right: 0;
}
.dropdown-right.loc-dropdown-single {
    width: 380px; /* Hơi rộng hơn để chứa grid 2 cột cho quốc gia */
}

.loc-header {
    background-color: #1a429b; /* Màu xanh đậm từ hình */
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px 10px 0 0; /* Khớp với viền box */
}

.loc-number {
    margin-right: 5px;
}

.loc-dropdown-inner {
    display: flex;
    padding: 20px;
}

.loc-col {
    flex: 1;
    padding: 0 10px;
}

.vn-col {
    border-right: 1px solid #e9ecef;
}

.loc-title {
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.loc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loc-list li {
    margin-bottom: 8px;
    position: relative;
}

/* Bullet cho Tỉnh thành */
.vn-col .loc-list li {
    padding-left: 12px;
}
.vn-col .loc-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #94a3b8;
}

.loc-list a {
    color: #475569;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loc-list a img {
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.loc-list a:hover {
    color: #d82b68;
}

/* Lưới cho Quốc gia */
.grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
}
.grid-list li {
    margin-bottom: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    font-size: 15px;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #334155;
}

.btn-search {
    padding: 12px 30px;
    background-color: #d82b68;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 150px;
}

.btn-search:hover {
    background-color: #b92055;
}

/* Responsive cho phần banner */
@media (max-width: 992px) {
    .service-icons {
        justify-content: flex-start;
    }
    .service-item {
        width: calc(25% - 10px); /* 4 item 1 hàng */
    }
}

@media (max-width: 768px) {
    .service-item {
        width: calc(33.33% - 10px); /* 3 item 1 hàng */
    }
    .widget-bottom {
        flex-direction: column;
    }
    .btn-search {
        width: 100%;
    }
    .banner-background {
        height: 300px;
    }
    .search-widget-container {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: -20px;
    }
    .search-widget {
        border-radius: 20px 20px 0 0;
    }
}

/* Container Chung */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Popular Services Section */
.popular-services {
    padding: 120px 0 60px; /* Padding top lớn hơn để nhường chỗ cho widget search đè lên (80px + 40px margin) */
    background-color: #fff;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 90px;
    background-color: transparent;
    text-align: center;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: #fde8ef;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: #fff0f5; /* Màu nền hồng nhạt xíu */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
}

.service-card:hover .service-icon-box {
    background-color: #ffe4ec;
    box-shadow: 0 4px 15px rgba(216,43,104,0.15);
}

.service-icon-box i {
    font-size: 28px;
    color: #111; /* Màu icon đậm */
}

.service-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

/* Responsive cho Popular Services */
@media (max-width: 992px) {
    .popular-services {
        padding-top: 60px; /* Trên mobile search widget đổi vị trí nên ko cần khoảng cách lớn nữa */
    }
    .service-card {
        width: calc(25% - 20px);
    }
}

@media (max-width: 576px) {
    .service-card {
        width: calc(33.33% - 20px);
    }
}

/* Top Facilities Section */
.top-facilities {
    padding: 60px 0;
    background-color: #f8f9fa; /* Màu nền xám nhạt để tách biệt với khối trên */
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.view-all {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all:hover {
    color: #d82b68;
}

.view-all i {
    margin-left: 5px;
    font-size: 12px;
}

.facilities-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.facilities-grid::-webkit-scrollbar {
    display: none;
}

.facility-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(25% - 15px); /* 4 cột */
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.facility-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-color: #d82b68;
}

.facility-logo {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facility-logo img {
    max-width: 80%;
    max-height: 80%;
}

.facility-info {
    flex-grow: 1;
    overflow: hidden;
}

.facility-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.facility-location {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.facility-rating {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.facility-rating i {
    color: #ffc107; /* Màu vàng ngôi sao */
    margin-right: 5px;
    font-size: 12px;
}

.facility-rating strong {
    color: #333;
    margin-right: 5px;
}

.facility-rating span {
    color: #999;
}

/* Responsive cho Top Facilities */
@media (max-width: 1100px) {
    .facility-card {
        width: calc(50% - 10px); /* 2 cột trên tablet */
    }
}

@media (max-width: 600px) {
    .facility-card {
        width: 100%; /* 1 cột trên mobile */
    }
}

/* Latest Reviews Section */
.latest-reviews {
    padding: 60px 0;
    background-color: #fff;
}

.review-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    gap: 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.review-content {
    flex: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.user-name strong {
    color: #333;
}

.verified {
    color: #28a745;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.user-location {
    font-size: 12px;
    color: #777;
}

.review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.review-meta strong {
    color: #333;
}

.divider {
    color: #ccc;
    font-size: 10px;
}

.facility-name, .review-date {
    color: #555;
}

.review-date {
    margin-left: auto; /* Đẩy sang phải nếu có không gian */
    color: #999;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-score {
    font-weight: 700;
    color: #333;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.review-images {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.image-box {
    width: 160px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 6px 15px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    border-radius: 0 12px 0 0;
}

.label-before {
    background-color: rgba(0, 0, 0, 0.6);
}

.label-after {
    background-color: rgba(216, 43, 104, 0.8); /* Màu hồng trong mờ */
}

.view-all-container {
    text-align: right;
    margin-top: 15px;
}

.view-all-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: #d82b68;
}

/* Responsive cho Latest Reviews */
@media (max-width: 900px) {
    .review-card {
        flex-direction: column;
    }
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .review-date {
        margin-left: 0;
    }
    .review-images {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .image-box {
        width: 140px;
        height: 180px;
    }
}

/* Exclusive Offers Section */
.exclusive-offers {
    padding: 0 0 60px 0;
    background-color: #fff;
}

.offer-banner {
    background: linear-gradient(to right, #fdf4f9, #fce8f3); /* Gradient hồng nhạt rất tinh tế */
    border-radius: 12px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    box-shadow: 0 4px 15px rgba(216,43,104,0.05); /* Bóng đổ hồng siêu nhẹ */
}

.offer-text h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 8px;
    font-weight: 700;
}

.offer-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
}

.offer-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.offer-image img {
    width: 120px; /* Tăng kích thước ảnh lên cho dài/to ra */
    height: auto;
    filter: drop-shadow(0 10px 10px rgba(216, 43, 104, 0.2));
    transform: translateY(-5px);
}

.btn-offer {
    background-color: #d82b68; /* Đổi nút sang màu hồng đồng bộ thương hiệu */
    color: #fff;
    padding: 12px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-offer:hover {
    background-color: #b02355; /* Màu hồng đậm hơn khi hover */
}

/* Responsive cho Exclusive Offers */
@media (max-width: 768px) {
    .offer-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .offer-action {
        flex-direction: column;
        gap: 15px;
    }
}

/* Latest Articles Section */
.latest-articles {
    padding: 60px 0;
    background-color: #fff;
}

.articles-header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.articles-title-box {
    background-color: #eb2f2f; /* Màu đỏ nổi bật giống mẫu */
    padding: 10px 20px;
    position: relative;
    margin-bottom: -2px; /* Kéo xuống đè lên viền */
}

.articles-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    font-style: italic; /* Chữ hơi nghiêng giống mẫu */
}

.triangle-down {
    position: absolute;
    bottom: -8px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #eb2f2f;
}

.articles-filter {
    display: flex;
    gap: 25px;
    margin-left: 30px;
    align-items: center;
}

.articles-filter a {
    color: #777;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 15px 0;
}

.articles-filter a:hover, .articles-filter a.active {
    color: #222;
}

.articles-filter i {
    font-size: 10px;
    margin-left: 3px;
}

.articles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.article-card {
    width: calc(20% - 16px); /* 5 cột trên PC */
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-3px);
}

.article-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background-color: #f8fafc;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-thumb img {
    transform: scale(1.05);
}

.article-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.article-card:hover .article-title {
    color: #eb2f2f;
}

/* Responsive cho Articles */
@media (max-width: 1100px) {
    .article-card {
        width: calc(25% - 15px); /* 4 cột trên laptop nhỏ */
    }
}
@media (max-width: 900px) {
    .articles-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .articles-filter {
        margin-left: 0;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .articles-filter a {
        padding: 5px 0;
    }
    .article-card {
        width: calc(33.333% - 14px); /* 3 cột trên tablet */
    }
}
@media (max-width: 600px) {
    .article-card {
        width: calc(50% - 10px); /* 2 cột trên mobile */
    }
}

/* Footer Section */
.site-footer {
    background-image: url('bg-footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fdf2f8; /* Đổi fallback thành sáng */
    color: #334155;
    padding: 70px 0 30px;
    font-size: 14px;
    border-top: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col {
    width: calc(23% - 22.5px);
}

.brand-col {
    width: calc(31% - 22.5px);
}

.footer-logo {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo i {
    color: #d82b68;
}

.footer-desc {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    color: #d82b68;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(216,43,104,0.1);
}

.social-links a:hover {
    background-color: #d82b68;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(216,43,104,0.2);
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: #d82b68;
}

.contact-col ul li {
    display: flex;
    gap: 12px;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.contact-col ul li i {
    color: #d82b68;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(216, 43, 104, 0.15); /* Viền hồng mờ */
    color: #64748b;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-col, .brand-col {
        width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .footer-col, .brand-col {
        width: 100%;
    }
}

/* --- Service Page Banner --- */
.service-page-banner {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 100px 0;
    min-height: 450px;
}

.service-page-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-banner-content {
    max-width: 750px;
    width: 100%;
}

.service-banner-content h1 {
    font-size: 54px;
    font-weight: 800;
    color: #0c2b5e; /* Màu xanh đen */
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.service-banner-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #e92b70; /* Màu hồng */
    margin-bottom: 35px;
    text-transform: uppercase;
}

.service-banner-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid #ff99bc; /* Viền hồng nhạt */
    color: #e92b70;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.feature-text strong {
    font-size: 15px;
    color: #0c2b5e;
    font-weight: 700;
    margin-bottom: 3px;
}

.feature-text span {
    font-size: 13px;
    color: #64748b;
}

/* --- Danh Mục Dịch Vụ Section --- */
.services-list-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header .section-title {
    font-size: 26px;
    font-weight: 800;
    color: #0c2b5e;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header .section-subtitle {
    color: #64748b;
    font-size: 15px;
    margin-top: 8px;
}

.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-category-row {
    display: flex;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 250px;
}

.sc-left {
    width: 250px;
    flex-shrink: 0;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.sc-header {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 10px;
}

.sc-number {
    background-color: #0c2b5e;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

.sc-title {
    font-size: 15px;
    font-weight: 700;
    color: #0c2b5e;
    line-height: 1.3;
}

.sc-image {
    flex: 1;
    overflow: hidden;
}

.sc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-right {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sc-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
    margin-bottom: 20px;
}

.sc-links li {
    display: flex;
    align-items: center;
}

.sc-links li::before {
    content: "•";
    color: #e92b70;
    font-size: 18px;
    margin-right: 8px;
    line-height: 1;
}

.sc-links a {
    color: #4a5568;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.sc-links a:hover {
    color: #e92b70;
}

.sc-action {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e92b70;
    border: 1px solid #ff99bc;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
    background: #fff;
}

.btn-view-all:hover {
    background: #fff0f6;
}

/* Responsive */
@media (max-width: 992px) {
    .service-category-row {
        flex-direction: column;
    }
    .sc-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .sc-image {
        height: 150px;
    }
    .sc-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .sc-links {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SERVICE DETAIL PAGE STYLES
   ========================================= */
.breadcrumb {
    padding: 20px 0;
    color: #666;
    font-size: 14px;
}
.breadcrumb a {
    color: #666;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #d82b68;
}

.service-detail-header h1 {
    font-size: 28px;
    color: #111;
    margin-bottom: 10px;
}
.service-rating {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 25px;
}
.service-rating i {
    color: #ffc107;
    margin-right: 5px;
}
.service-rating strong {
    margin-right: 5px;
    color: #333;
}
.service-rating span {
    color: #888;
}

.service-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 40px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}
.service-tabs::-webkit-scrollbar {
    display: none;
}
.tab-item {
    padding: 12px 0;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    position: relative;
}
.tab-item.active {
    font-weight: 600;
    color: #d82b68;
}
.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d82b68;
}

.overview-section {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.overview-image {
    flex: 0 0 350px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}
.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.overview-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.overview-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.overview-list li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}
.overview-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #666;
    border-radius: 50%;
    margin-right: 15px;
    display: inline-block;
}
.overview-list li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.overview-list li a:hover {
    color: #d82b68;
}

/* Override section title for doctors */
.featured-doctors .section-header .section-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    text-transform: none;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.doctor-card {
    background: #f8f9fa;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.doctor-img-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}
.doctor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.doctor-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #111;
}
.doc-rating {
    color: #ffc107;
    font-size: 13px;
}
.doc-rating strong {
    color: #333;
    margin-left: 5px;
}

.btn-book-consult-wrap {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}
.btn-book-consult {
    display: inline-block;
    background-color: #d82b68;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    max-width: 400px;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 16px;
}
.btn-book-consult:hover {
    background-color: #be1c56;
    transform: scale(1.02);
}

/* =========================================
   ARTICLE DETAIL PAGE STYLES
   ========================================= */
.article-page {
    background-color: #f8f9fa;
    padding: 40px 0 80px 0;
}
.article-layout {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
.article-main {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.article-sidebar {
    width: 320px;
    flex-shrink: 0;
}
.article-header {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 25px;
    margin-bottom: 30px;
}
.article-header h1 {
    font-size: 32px;
    color: #111;
    line-height: 1.4;
    margin-bottom: 15px;
}
.article-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    align-items: center;
}
.article-meta .author {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 600;
}
.article-meta .author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}
.article-meta i {
    margin-right: 5px;
}

.article-content h2 {
    font-size: 24px;
    color: #111;
    margin: 40px 0 20px 0;
    padding-top: 20px;
}
.article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}
.article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}
.article-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}
.article-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}
.article-content ul li strong {
    color: #111;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}
.price-table th, .price-table td {
    border: 1px solid #eaeaea;
    padding: 15px 20px;
    text-align: left;
}
.price-table th {
    background-color: #fdf2f8;
    color: #d82b68;
    font-weight: 700;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}
.sidebar-widget h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #d82b68;
}
.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-list li {
    margin-bottom: 15px;
}
.widget-list li a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
}
.widget-list li a:hover {
    color: #d82b68;
}
.widget-doctor {
    display: flex;
    gap: 15px;
    align-items: center;
}
.widget-doctor img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}
.widget-doctor .info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.widget-doctor .info span {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}
.widget-doctor .btn-sm {
    display: inline-block;
    padding: 6px 15px;
    background-color: #d82b68;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.widget-doctor .btn-sm:hover {
    background-color: #be1c56;
}
.btn-back-service:hover {
    background-color: #0c2b5e !important;
    color: #fff !important;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .article-layout {
        flex-direction: column;
    }
    .article-sidebar {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .article-main {
        padding: 25px;
    }
    .article-header h1 {
        font-size: 24px;
    }
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* =========================================
   DOCTOR PROFILE PAGE STYLES
   ========================================= */
.doctor-profile-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}
.doc-profile-header {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}
.doc-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}
.doc-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
}
.verified-badge {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    font-size: 14px;
}
.doc-label {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.doc-info-main h1 {
    font-size: 24px;
    color: #111;
    margin-bottom: 8px;
}
.doc-rating-reviews {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}
.doc-rating-reviews i {
    color: #ffc107;
    margin-right: 5px;
}
.doc-rating-reviews strong {
    margin-right: 5px;
}
.doc-rating-reviews span {
    color: #666;
}
.doc-specialty {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    margin-bottom: 12px;
}
.doc-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
}
.doc-credentials li {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}
.doc-credentials li::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #555;
    border-radius: 50%;
    margin-right: 10px;
}

.doc-tabs-nav {
    display: flex;
    gap: 25px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}
.doc-tabs-nav::-webkit-scrollbar { display: none; }
.doc-tabs-nav a {
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
}
.doc-tabs-nav a.active {
    color: #d82b68;
}
.doc-tabs-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d82b68;
}

.doc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.stat-box {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
}
.stat-box strong {
    display: block;
    font-size: 20px;
    color: #111;
    margin-bottom: 5px;
}
.stat-box span {
    font-size: 13px;
    color: #666;
}

.doc-before-after h2 {
    font-size: 18px;
    color: #111;
    margin-bottom: 15px;
}
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.ba-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.doc-cta-wrap {
    text-align: center;
    margin-top: 20px;
}
.btn-doc-book {
    display: inline-block;
    background-color: #d82b68;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s;
}
.btn-doc-book:hover {
    background-color: #be1c56;
}

@media (max-width: 576px) {
    .doc-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .doc-credentials li {
        justify-content: center;
    }
    .doc-stats, .ba-grid {
        grid-template-columns: 1fr;
    }
}


/* Filter Dropdown */
.filter-dropdown {
    position: relative;
    display: inline-block;
}
.filter-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 8px;
    padding: 8px 0;
    border: 1px solid #eee;
}
.filter-dropdown .dropdown-menu.show {
    display: flex;
    flex-direction: column;
}
.filter-dropdown .dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}
.filter-dropdown .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #e50914; /* Brand color */
}

/* =========================================
   ARTICLE DETAIL PAGE STYLES (bai-viet-chi-tiet)
   ========================================= */
.art-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.art-breadcrumb a {
    color: #d82b68;
    text-decoration: none;
    font-weight: 500;
}
.art-breadcrumb i {
    font-size: 11px;
}
.art-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 20px;
}
.art-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}
.art-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.art-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.art-author-info {
    display: flex;
    flex-direction: column;
}
.art-author-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 15px;
}
.art-author-role {
    font-size: 13px;
    color: #64748b;
}
.art-meta-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #64748b;
}
.art-content {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 40px;
}
.art-content p {
    margin-bottom: 20px;
}
.art-excerpt {
    font-size: 18px !important;
    font-weight: 500;
    color: #1e293b !important;
    font-style: italic;
    border-left: 4px solid #d82b68;
    padding-left: 15px;
    margin-bottom: 30px !important;
}
.art-content figure {
    margin: 30px 0;
    text-align: center;
}
.art-content img {
    max-width: 100%;
    border-radius: 12px;
    height: auto;
}
.art-content figcaption {
    font-size: 13px;
    color: #64748b;
    margin-top: 10px;
    font-style: italic;
}
.art-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.art-tags i {
    color: #94a3b8;
}
.art-tags a {
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.2s;
}
.art-tags a:hover {
    background: #d82b68;
    color: #fff;
}
