/* ========================================= */
/* GLOBAL BLOG STYLING */
/* ========================================= */

.blog-container,
.blog-detail-container {
    max-width: 1100px;
    margin: auto;
    padding: 120px 20px;
}

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

.blog-title {
    text-align: center;
    font-size: 50px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 90px;
    letter-spacing: -1px;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 70px;
}

/* CARD */
.blog-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 50px 100px rgba(0,0,0,0.12);
}

/* IMAGE */
.blog-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.6s ease;
}

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

/* TITLE */
.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin: 35px 35px 15px;
    line-height: 1.3;
}

/* CONTENT PREVIEW */
.blog-card p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    margin: 0 35px 20px;
    color: #444;
}

/* META */
.blog-meta {
    font-size: 13px;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: none;
}

.blog-meta span {
    font-weight: 600;
    color: #000;
}
/* READ MORE */
.blog-card a {
    margin: 0 35px 40px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    color: #c1121f;
    border-bottom: 2px solid #c1121f;
    padding-bottom: 4px;
    transition: 0.3s ease;
}

.blog-card a:hover {
    opacity: 0.7;
}

/* ========================================= */
/* BLOG DETAIL PAGE */
/* ========================================= */

.blog-title-detail {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

/* META */
.blog-detail-container .blog-meta {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 70px;
}

/* HERO IMAGE */
.blog-hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 80px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* CONTENT AREA */
.blog-content {
    background: #fcfbf8;
    padding: 70px 80px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* PARAGRAPHS */
.blog-content p {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 2.1;
    color: #2b2b2b;
    margin-bottom: 40px;
}

/* DROP CAP EFFECT */
.blog-content p:first-of-type::first-letter {
    font-size: 75px;
    float: left;
    line-height: 60px;
    padding-right: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 768px) {

    .blog-title {
        font-size: 38px;
    }

    .blog-title-detail {
        font-size: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 240px;
    }

    .blog-content p {
        font-size: 18px;
    }
}

/* ========================================= */
/* FEATURED BLOG HERO SECTION */
/* ========================================= */

.featured-blog {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 120px;
}

.featured-blog img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.1);
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.featured-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #444;
}

.featured-content a {
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid #c1121f;
    padding-bottom: 4px;
}

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

    .featured-blog img {
        height: 300px;
    }
}

/* ========================================= */
/* BLOG DETAIL CONTENT BACKGROUND UPGRADE */
/* ========================================= */

.blog-content {
    max-width: 820px;
    margin: auto;
    background: linear-gradient(145deg, #ffffff, #f9f9fb);
    padding: 60px 70px;
    border-radius: 35px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.06);
    position: relative;
}

/* Soft left border accent */
.blog-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    width: 5px;
    background: linear-gradient(to bottom, #c1121f, transparent);
    border-radius: 5px;
}

/* Paragraph spacing refinement */
.blog-content p {
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    line-height: 2.1;
    color: #2b2b2b;
    margin-bottom: 35px;
}

.blog-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -50px auto 80px;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.blog-title-detail {
    margin-bottom: 40px;
}

.blog-detail-container .blog-meta {
    margin-bottom: 60px;
}

/* ===== FEATURED HERO ===== */

.blog-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    margin: 120px 0;
}

.hero-text {
    flex: 1;
}

.blog-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

.blog-meta span {
    font-weight: 600;
    color: #000;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #c1121f;
    padding-bottom: 3px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    color: #c1121f;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}