/* ============================================================
   blog-base.css — shared styles for the Projects, News/AHG Updates
   and Insights pages. Load BEFORE each page's own stylesheet.
   ============================================================ */

/* ── Standardized hero button (common across all blog/news/project pages) ── */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    background: #ffffff;
    color: #0a2540;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: .3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-btn i { transition: transform 0.3s ease; }
.hero-btn:hover {
    background: #066D77;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}
.hero-btn:hover i { transform: translateX(4px); }
@media (max-width: 767px) {
    .hero-btn { padding: 13px 30px; font-size: 0.85rem; }
}

.featured-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-image-side {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.featured-box:hover .featured-image-side img {
    transform: scale(1.05);
}

.featured-content-side {
    flex: 1;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    background: #ff8d1b;
    color: #fff;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 25px;
    width: fit-content;
}

.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.featured-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

.featured-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 45px;
    padding-top: 35px;
    border-top: 1px solid #f1f5f9;
}

.meta-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.meta-list li {
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.meta-list li i {
    color: #ff8d1b;
    margin-right: 12px;
    font-size: 0.9rem;
}

.btn-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-featured-cta:hover {
    background: #1e293b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    color: #fff;
}

