/* ===== Blog pages ===== */
.blog-hero {
    position: relative;
    margin-top: 100px;
    padding: 90px 0 70px;
    background: linear-gradient(rgba(0, 45, 90, 0.78), rgba(0, 45, 90, 0.78)), url('Home Pages/3.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
}
.blog-hero .eyebrow {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 12px;
}
.blog-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.blog-hero p {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.92;
}

/* Listing */
.blog-list-section {
    padding: 70px 0 90px;
    background: #f8f9fa;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 90, 156, 0.15);
}
.blog-card-image {
    height: 210px;
    background: #fff;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #005a9c;
    background: rgba(0, 90, 156, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.blog-card h2 {
    font-size: 1.3rem;
    line-height: 1.35;
    color: #222;
    margin-bottom: 12px;
}
.blog-card p {
    color: #555;
    font-size: 0.98rem;
    margin-bottom: 20px;
    flex: 1;
}
.blog-meta {
    font-size: 0.88rem;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.read-more {
    color: #ff6b35;
    font-weight: 600;
}

/* Article */
.article-section {
    padding: 60px 0 80px;
    background: #fff;
}
.article-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.article-back {
    display: inline-block;
    color: #005a9c;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 25px;
}
.article-back:hover { color: #ff6b35; }
.article-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.article-body h2 {
    font-size: 1.6rem;
    color: #005a9c;
    margin: 36px 0 14px;
}
.article-body p,
.article-body li {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #444;
}
.article-body p { margin-bottom: 18px; }
.article-body ul,
.article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: #222; }
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 25px;
    font-size: 1rem;
}
.article-body th,
.article-body td {
    border: 1px solid #e3e6ea;
    padding: 10px 14px;
    text-align: left;
}
.article-body th {
    background: #005a9c;
    color: #fff;
    font-weight: 600;
}
.article-body tr:nth-child(even) td { background: #f8f9fa; }

.article-cta {
    margin-top: 45px;
    padding: 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #005a9c, #0a74c4);
    color: #fff;
    text-align: center;
}
.article-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.article-cta p {
    opacity: 0.92;
    margin-bottom: 20px;
}
.article-cta a {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}
.article-cta a:hover { background: #e55a2b; }

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .blog-hero { margin-top: 70px; padding: 60px 0 50px; }
    .blog-hero h1 { font-size: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .article-body h2 { font-size: 1.35rem; }
    .article-body table { font-size: 0.9rem; }
}
