/* 
 * Bệnh viện đa khoa khu vực Vân Hồ - Global CSS
 */

/* Avatar standardization */
.article-main-image,
.news-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
}
.news-card-image {
    height: 240px;
    overflow: hidden;
}
.news-card-image img {
    height: 100%;
}

/* Page Hero Header (Common for inner pages) */
.page-hero {
    background: linear-gradient(135deg, #173a66 0%, #1a5498 50%, #1e6bb8 100%);
    position: relative;
    overflow: hidden;
    padding: 30px 0 28px;
    max-height: 250px;
}
.page-hero::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.page-hero::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.75); font-weight: 600; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb span { color: rgba(255,255,255,0.5); }
.page-hero h1 {
    font-family: "Inter","Roboto",Arial,sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Shared UI Components */
.empty-state {
    padding: 56px 0 64px;
    text-align: center;
}
.empty-state-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #eef5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #2f6fb8;
}



