/* ============================================
   BLOG PAGES — Styling
   ============================================ */

/* Blog Hero Banner */
.blog-hero {
    position: relative;
    padding: 160px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.92) 0%, rgba(34, 34, 34, 0.75) 100%);
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero .breadcrumb {
    margin-bottom: 16px;
}

.blog-hero .breadcrumb-item a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
}

.blog-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.blog-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
    max-width: 700px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-meta span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

/* Blog Article Content */
.blog-content {
    background: var(--white);
}

.blog-content p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--soft-gold);
}

.blog-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-content a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.blog-img {
    width: 100%;
    border-radius: var(--radius);
    margin: 24px 0 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Blog CTA Box */
.blog-cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    margin-top: 40px;
}

.blog-cta-box h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.92rem !important;
    margin-bottom: 20px !important;
}

/* ============================================
   BLOG CAROUSEL — Homepage Section
   ============================================ */
.blog-carousel-section {
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-tag {
    display: inline-block;
    background: var(--soft-gold);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: fit-content;
}

.blog-card-body h5 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-body p {
    color: var(--text-body);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-link {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--accent-hover);
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

/* Blog Swiper */
.blogs-swiper .swiper-slide {
    height: auto;
}

.blogs-swiper .swiper-pagination {
    position: relative;
    margin-top: 28px;
}

.blogs-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 40px;
    }

    .blog-hero h1 {
        font-size: 1.6rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-cta-box {
        padding: 28px 20px;
    }

    .blog-card-img {
        height: 160px;
    }
}