/* ===================== PAGE HERO ===================== */
.page-hero {
    background: linear-gradient(135deg, #003760 0%, #0056a3 60%, #0092c8 100%);
    padding: 22px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3e%3ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/%3e%3c/svg%3e") repeat;
    pointer-events: none;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(16px, 3vw, 26px);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
}
.back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    margin-bottom: 10px;
    transition: color 0.2s;
    text-decoration: none !important;
}
.back-to-news:hover { color: #fff; }


/* ===================== LAYOUT ===================== */
.page-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 28px 20px;
}


/* ===================== ARTICLE CONTENT ===================== */
.article-title-block { margin-bottom: 18px; }
.article-title-block h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #01669A;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.article-title-block h4 {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}
.article-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto 6px;
    border-radius: 8px;
}
.img-caption {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}
.article-section { margin-bottom: 36px; }
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f2fe;
}
.section-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0092c8;
    line-height: 1.4;
    margin: 0;
}
.article-body p {
    font-size: 15px;
    color: #374151;
    line-height: 1.85;
    margin-bottom: 16px;
}
.pull-quote {
    background: linear-gradient(135deg, #003760 0%, #0072b5 100%);
    color: #e0f2fe;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}
.pull-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: -6px;
    left: 14px;
    font-family: Georgia, serif;
    line-height: 1;
}
.cta-block {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    margin: 28px 0 0;
}
.cta-block h3 { font-size: 1.1rem; color: #003760; margin-bottom: 8px; }
.cta-block p  { font-size: 14px; color: #4b6a8a; margin-bottom: 18px; }
.cta-buttons  { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.cta-pill-primary { background: #0092c8; color: #fff !important; }
.cta-pill-primary:hover { background: #0072b5; transform: translateY(-1px); }
.cta-pill-outline { background: transparent; color: #0072b5 !important; border: 2px solid #0072b5; }
.cta-pill-outline:hover { background: #0072b5; color: #fff !important; transform: translateY(-1px); }

/* ===================== SIDEBAR ===================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.widget-title {
    font-size: 15px;
    font-weight: 700;
    color: #0092c8;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5fb;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-banner {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: block;
}
.sidebar-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.sidebar-banner:hover img { transform: scale(1.02); }
.sidebar-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sidebar-quick-links li a {
    font-size: 13px;
    color: #0092c8;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s, gap 0.2s;
    text-decoration: none !important;
}
.sidebar-quick-links li:last-child a { border-bottom: none; }
.sidebar-quick-links li a:hover { color: #003760; gap: 12px; }
.sidebar-quick-links li a i { font-size: 10px; color: #aad4ee; flex-shrink: 0; }