:root {
    --bg: #F6CBBF;
    --card-bg: #FED1C1;
    --book-yellow: #FFF3D8;
}

.insight-inner-wrapper {
    background-color: var(--bg);
}

.insights-section {
    background-color: var(--bg);
    width: 100%;
    position: relative;
    padding-bottom: 40px;
}

.insights-banner-top {
    height: 250px;
    width: 100%;
    background-image: url('../image/insights-pattern.svg');
    background-size: cover;
    background-position: center;
}

.insights-title-badge {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--maroon);
    padding: 30px 80px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.insights-title-badge h1 {
    color: var(--custom-yellow);
    font-size: 78px;
    font-weight: 400;
    letter-spacing: 4px;
    margin: 0;
    height: 75px;
}

.insights-container {
    max-width: 1400px;
    margin: 20% auto 0;
    padding: 0 40px;
}

.featured-card {
    display: flex;
    align-items: center;
    gap: 60px;
}

.post-image-wrap {
    flex: 1;
    position: relative;
}

.decorative-border img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
}

.post-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: var(--custom-yellow);
    color: var(--maroon);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.post-content {
    flex: 1;
}

.post-date {
    display: block;
    font-size: 16px;
    color: var(--maroon);
    margin-bottom: 20px;
}

.post-title {
    font-size: 42px;
    color: var(--maroon);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 1px;
}

.btn-read-more {
    display: inline-block;
    border: 1px solid var(--maroon);
    color: var(--maroon);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--maroon);
    color: var(--custom-yellow);
}

.blog-post-page {
    color: var(--maroon);
    padding: 100px 20px 0;
    min-height: 100vh;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 50px;
}

.blog-post-page .post-date {
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.blog-post-page .post-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-meta {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
}

.share-btn {
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.share-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.article-image {
    width: 100%;
    margin-bottom: 40px;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
}

.mid-content-image {
    margin: 60px 0;
}

.intro-text {
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 40px;
    font-weight: 400;
}

.section-heading {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Lora', serif;
}

.article-body-content {
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 40px;
    font-weight: 400;
}

.related-articles {
    background-color: var(--bg);
    overflow: hidden;
    padding: 0 0 0 5%;
}

.related-section-title {
    font-size: 42px;
    color: var(--maroon);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
}

.articles-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 8% 10% 8%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.articles-slider::-webkit-scrollbar {
    display: none;
}

.related-card {
    flex: 0 0 440px;
    background-color: var(--card-bg);
    border-radius: 50px;
    padding: 20px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-5px);
}

.card-image-box {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 25px;
}

.card-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.card-info h3 {
    color: var(--maroon);
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Lora', serif;
}

@media screen and (max-width: 992px) {
    .featured-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .filter-btn .filter-label {
        display: none;
    }

    .blog-post-page {
        padding: 140px 40px 0;
    }

    .blog-post-page .post-date {
        font-size: 14px;
    }

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

    .post-meta {
        font-size: 14px;
    }

    .intro-text {
        font-size: 14px;
    }

    .section-heading {
        font-size: 20px;
    }

    .article-body-content {
        font-size: 14px;
    }

    .newsletter-full-width {
        min-height: 350px !important;
        padding: 0 0 !important;
    }

    .related-section-title {
        font-size: 30px;
    }

    .related-articles {
        padding: 20% 0 20% 40px;
    }

    .related-card {
        flex: 0 0 470px;
    }

    .card-info h3 {
        font-size: 14px;
    }

    .insights-title-badge h1 {
        font-size: 50px;
        height: 45px;
    }

    .post-badge {
        font-size: 16px;
    }

    .events-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 75px;
    }

    .insights-text-info p {
        font-size: 18px !important;
    }

    .events-grid-1 {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 75px;
    }

    .resize {
        padding: 130px 0 75px 0 !important;
    }

    .post-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .insights-section {
        height: auto;
    }

    .decorative-border img {
        border-radius: 0px;
    }

    .btn-read-more {
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 400;
    }
}

@media screen and (max-width: 500px) {
    .related-card {
        flex: 0 0 320px;
    }

    .insights-title-badge h1 {
        font-size: 40px;
        height: 35px;
    }

    .post-badge {
        font-size: 12px;
        top: 15px;
        left: 15px;
    }

    .insights-title-badge {
        padding: 30px 40px;
    }

    .insights-container {
        padding: 0 20px;
    }

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