/* Simple Blog Hub - Marketing Page Alignment */

/* 1. Simple Hero - Matching Homepage Hero Style */
.blog-hero-simple {
    padding: 50px 0 50px;
    background: #fdfdfd;
}

.hero-grid-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center; /* Center vertically without stretching */
}


.hero-text-simple {
    flex: none;
    display: block;
}



.hero-text-simple h1 {
    font-size: 3rem; /* Reduced for better balance */
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}


.hero-text-simple h1 span {
    color: var(--primary-blue);
}

.hero-text-simple p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    line-height: 1.8;
}

.hero-image-simple {
    width: 100%;
    /* height: auto - removing any fixed heights */
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.hero-image-simple img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
}





/* 2. Simple Navigation */
.blog-nav-simple {
    padding: 30px 0;
    background: var(--white);
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-pills-simple {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 10px 24px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 4px;
    font-family: inherit; /* explicitly use brand font */
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.nav-btn.active,
.nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* 3. Simple 2x3 Grid */
.blog-grid-simple {
    padding: 50px 0;
}

.blog-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.blog-card-simple {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.card-img-simple {
    height: 220px;
    overflow: hidden;
}

.card-img-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content-simple {
    padding: 30px;
}

.card-cat-simple {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.card-content-simple h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.4;
    margin-bottom: 15px;
}

.card-content-simple p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-link-simple {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 4. Simple Pagination */
.pagination-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.pg-pages {
    display: flex;
    gap: 10px;
}

.pg-item, .pg-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: var(--white);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-item.active {
    background: var(--primary-blue);
    color: var(--white);
}

.pg-btn.disabled {
    opacity: 0.3;
    cursor: default;
}

/* 5. Simple CTA Banner */
.final-cta-simple {
    padding-bottom: 120px;
}

.cta-banner-simple {
    background: linear-gradient(135deg, #fdfdfd 0%, #f1f5f9 100%);
    padding: 80px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.cta-banner-simple h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.cta-banner-simple p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Base Width (1200px lock) */
.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Response Fixes */
@media (max-width: 992px) {
    .hero-grid-simple { grid-template-columns: 1fr; gap: 50px; }
    .blog-grid-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-text-simple h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .blog-grid-inner { grid-template-columns: 1fr; }
    .cta-banner-simple { padding: 40px 20px; }
    .cta-banner-simple h2 { font-size: 2.2rem; }
}
