/* ===========================
   BLOG LISTING PAGE STYLES
   =========================== */

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--primary-blue);
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2942 50%, #1a3a5c 100%);
    z-index: 0;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232, 131, 12, 0.06);
    top: -150px;
    right: -100px;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 650px;
    margin: 0 auto;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    background: rgba(232, 131, 12, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-hero-title span {
    color: var(--accent-orange);
}

.page-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: var(--accent-orange);
    font-weight: 600;
}

/* ===== BLOG GRID ===== */
.blog-listing-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange-light);
}

.blog-card-img {
    height: 260px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-body {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
}

.blog-card-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.blog-card-link {
    font-weight: 700;
    color: var(--accent-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
