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

.blog-page {
    background-color: #fdfbf4;
    min-height: 100vh;
}

.blog-hero-section {
    background-color: #CD222C;
    padding: 80px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.blog-hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -40px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.blog-page-title {
    font-family: 'Lora', serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.blog-page-subtitle {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.blog-posts-section {
    padding: 70px 20px 100px;
}

.blog-posts-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(90, 40, 20, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(205, 34, 44, 0.08);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(90, 40, 20, 0.13);
}

.blog-card-inner {
    padding: 36px 40px;
}

.blog-card-meta {
    margin-bottom: 14px;
}

.blog-card-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #CD222C;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 700;
    color: #5A2814;
    margin-bottom: 16px;
    line-height: 1.35;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card-title a:hover {
    color: #CD222C;
}

.blog-card-excerpt {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 24px;
}

.blog-card-excerpt p {
    margin: 0;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #CD222C;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.25s ease, color 0.25s ease;
    letter-spacing: 0.5px;
}

.blog-card-link:hover {
    color: #8B1818;
    border-color: #8B1818;
}

.blog-card-link i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

.blog-no-posts {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: #888;
    text-align: center;
    padding: 60px 0;
    font-style: italic;
}

/* ========== SINGLE POST ========== */

.single-post-page {
    background-color: #fdfbf4;
    min-height: 100vh;
}

.single-post-hero {
    background-color: #CD222C;
    padding: 60px 20px 55px;
    position: relative;
    overflow: hidden;
}

.single-post-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.single-post-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.single-post-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    transition: color 0.25s ease;
}

.single-post-back:hover {
    color: #fff;
}

.single-post-back i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.single-post-back:hover i {
    transform: translateX(-4px);
}

.single-post-title {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 18px;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.single-post-meta span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.single-post-content-section {
    padding: 60px 20px 100px;
}

.single-post-content-container {
    max-width: 760px;
    margin: 0 auto;
}

.single-post-content {
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.85;
    color: #444;
}

.single-post-content p {
    margin-bottom: 22px;
}

.single-post-content h2,
.single-post-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #5A2814;
    margin-top: 36px;
    margin-bottom: 16px;
}

.single-post-content h2 {
    font-size: 26px;
    font-weight: 700;
}

.single-post-content h3 {
    font-size: 20px;
    font-weight: 700;
}

.single-post-footer-nav {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(205, 34, 44, 0.12);
}

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

@media screen and (max-width: 768px) {
    .blog-page-title {
        font-size: 38px;
    }

    .blog-page-subtitle {
        font-size: 16px;
    }

    .blog-hero-section {
        padding: 60px 20px 50px;
    }

    .blog-posts-section {
        padding: 50px 16px 70px;
    }

    .blog-card-inner {
        padding: 26px 24px;
    }

    .blog-card-title {
        font-size: 22px;
    }

    .single-post-title {
        font-size: 30px;
    }

    .single-post-hero {
        padding: 50px 20px 45px;
    }

    .single-post-content-section {
        padding: 40px 16px 70px;
    }

    .single-post-content {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .blog-page-title {
        font-size: 30px;
    }

    .blog-card-inner {
        padding: 22px 18px;
    }

    .single-post-title {
        font-size: 24px;
    }
}
