/* =========================================================
   BLOG PAGE ONLY
   ========================================================= */

/* =========================================================
   BLOG LAYOUT
   ========================================================= */

.blog-page .blog-main-section {
    padding: 40px 0 80px;
}


/* Sidebar */

.blog-page .blog-sidebar {
    position: relative;
}

.blog-page .sidebar-widget {
    margin-bottom: 24px;
}


/* Blog posts */

.blog-page .blog-post-card {
    height: 100%;
}


/* Empty image */

.blog-page .card-thumb-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F1F5F9;

    color: #94A3B8;

    font-size: 2rem;
}


/* Pagination */

.blog-page .blog-pagination ul {
    display: flex;
    align-items: center;

    list-style: none;

    padding: 0;
    margin: 0;

    gap: 8px;
}

.blog-page .blog-pagination li {
    margin: 0;
}

.blog-page .blog-pagination a,
.blog-page .blog-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 40px;

    padding: 0 12px;

    border-radius: 8px;

    text-decoration: none;

    color: var(--text-main);

    border: 1px solid transparent;
}

.blog-page .blog-pagination .current {
    background: var(--primary-red);
    color: #ffffff;
}

.blog-page .blog-pagination a:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* =========================================================
   BLOG HERO
   ========================================================= */

.blog-page .blog-hero-section {
    background: linear-gradient(
        180deg,
        #FFFFFF 0%,
        #FAFAFC 100%
    );

    padding: 60px 0 40px;
}

.blog-page .eyebrow-tag {
    color: var(--accent-orange);

    font-weight: 800;

    font-size: 0.8rem;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    display: block;

    margin-bottom: 12px;
}

.blog-page .hero-title {
    font-size: 2.75rem;

    font-weight: 800;

    color: var(--dark-maroon);

    line-height: 1.2;

    margin-bottom: 16px;
}

.blog-page .hero-subtitle {
    color: var(--text-muted);

    font-size: 1.05rem;

    line-height: 1.6;

    max-width: 520px;

    margin-bottom: 0;
}

/* ---------------------------------------------------------
   Category Filter
   --------------------------------------------------------- */

.blog-page .filter-btn {
    display: inline-block;
    background: #FAFAFC;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.blog-page .filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.blog-page .filter-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}


/* ---------------------------------------------------------
   Search
   --------------------------------------------------------- */

.blog-page .search-input-group {
    position: relative;
    min-width: 240px;
}

.blog-page .search-input-group .form-control {
    background: #FAFAFC;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding-right: 38px;
    font-size: 0.85rem;
}

.blog-page .search-input-group .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.15rem rgba(122, 10, 10, 0.08);
}

.blog-page .search-input-group .search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.85rem;
}


/* ---------------------------------------------------------
   Blog Post Card
   --------------------------------------------------------- */

.blog-page .blog-post-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-page .blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-color: #CBD5E1;
}


/* ---------------------------------------------------------
   Blog Thumbnail
   --------------------------------------------------------- */

.blog-page .card-thumb-holder {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #F1F5F9;
}

.blog-page .card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-page .blog-post-card:hover .card-thumb-img {
    transform: scale(1.05);
}


/* ---------------------------------------------------------
   Category Badge
   --------------------------------------------------------- */

.blog-page .category-overlay-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;

    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;

    padding: 3px 10px;

    font-size: 0.68rem;
    font-weight: 800;

    color: var(--accent-orange);

    text-transform: uppercase;
    letter-spacing: 0.5px;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);

    text-decoration: none;
}


/* ---------------------------------------------------------
   Blog Card Content
   --------------------------------------------------------- */

.blog-page .card-content-holder {
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    flex-grow: 1;
}

.blog-page .post-title {
    font-size: 1.05rem;
    font-weight: 700;

    color: var(--dark-maroon);

    line-height: 1.35;

    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.blog-page .post-title a {
    color: inherit;
}

.blog-page .post-title a:hover {
    color: var(--primary-red);
}

.blog-page .post-excerpt {
    font-size: 0.83rem;
    color: var(--text-muted);

    line-height: 1.5;

    margin-bottom: 16px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* ---------------------------------------------------------
   Post Meta
   --------------------------------------------------------- */

.blog-page .post-meta-bar {
    font-size: 0.75rem;
    color: var(--text-muted);

    font-weight: 500;

    display: flex;
    align-items: center;

    gap: 14px;

    border-top: 1px solid #F1F5F9;

    padding-top: 12px;
}


/* ---------------------------------------------------------
   Pagination
   --------------------------------------------------------- */

.blog-page .pagination-custom {
    margin-bottom: 0;
}

.blog-page .pagination-custom .page-item .page-link {
    border: 1px solid var(--border-color);

    color: var(--text-main);

    font-weight: 600;
    font-size: 0.85rem;

    border-radius: 8px !important;

    margin: 0 3px;

    padding: 6px 14px;

    transition: all 0.2s ease;
}

.blog-page .pagination-custom .page-item.active .page-link {
    background-color: var(--primary-red);
    border-color: var(--primary-red);

    color: #ffffff;
}

.blog-page .pagination-custom .page-item .page-link:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}


/* =========================================================
   BLOG SIDEBAR
   ========================================================= */

.blog-page .blog-sidebar {
    width: 100%;
}


/* ---------------------------------------------------------
   Sidebar Widget
   --------------------------------------------------------- */

.blog-page .sidebar-widget {
    background: #ffffff;

    border: 1px solid var(--border-color);

    border-radius: 12px;

    padding: 24px;

    margin-bottom: 24px;
}


/* ---------------------------------------------------------
   Widget Title
   --------------------------------------------------------- */

.blog-page .widget-title {
    font-size: 1.1rem;

    font-weight: 800;

    color: var(--dark-maroon);

    margin-bottom: 20px;
}


/* ---------------------------------------------------------
   Popular Topics
   --------------------------------------------------------- */

.blog-page .topic-item-list {
    list-style: none;

    padding: 0;

    margin: 0;
}

.blog-page .topic-item-list li {
    margin-bottom: 16px;
}

.blog-page .topic-item-list li:last-child {
    margin-bottom: 0;
}


.blog-page .topic-item-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    text-decoration: none;

    color: var(--text-main);

    transition: color 0.2s ease;
}

.blog-page .topic-item-link:hover {
    color: var(--primary-red);
}


/* Icon */

.blog-page .topic-icon-box {
    width: 28px;

    min-width: 28px;

    height: 28px;

    border-radius: 6px;

    background: #FAFAFC;

    color: var(--accent-orange);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.8rem;
}


.blog-page .topic-name {
    font-size: 0.88rem;

    font-weight: 700;
}


.blog-page .topic-count {
    font-size: 0.75rem;

    color: var(--text-muted);

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Sidebar Buttons
   --------------------------------------------------------- */

.blog-page .btn-outline-gold-custom {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border: 1px solid var(--accent-orange);

    border-radius: 7px;

    background: transparent;

    color: var(--accent-orange);

    font-size: 0.8rem;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.2s ease;
}

.blog-page .btn-outline-gold-custom:hover {
    background: var(--accent-orange);

    color: #ffffff;

    border-color: var(--accent-orange);
}


/* ---------------------------------------------------------
   Newsletter
   --------------------------------------------------------- */

.blog-page .newsletter-widget {
    background: linear-gradient(
        135deg,
        #7A0A0A 0%,
        #4A0000 100%
    );

    border: none;

    color: #ffffff;
}


.blog-page .newsletter-widget .widget-title {
    color: #ffffff;
}


.blog-page .newsletter-desc {
    font-size: 0.83rem;

    color: #E2E8F0;

    line-height: 1.5;

    margin-bottom: 18px;
}


.blog-page .newsletter-widget .form-control {
    border: none;

    background: #ffffff;

    color: #333333;

    box-shadow: none;
}


.blog-page .newsletter-widget .form-control:focus {
    border-color: transparent;

    box-shadow: none;
}


.blog-page .btn-gold-action {
    background: var(--accent-orange);

    border: 1px solid var(--accent-orange);

    color: #ffffff;

    font-weight: 700;

    border-radius: 8px;

    padding: 10px 15px;

    transition: all 0.2s ease;
}


.blog-page .btn-gold-action:hover {
    background: #ffffff;

    color: var(--dark-maroon);

    border-color: #ffffff;
}


.blog-page .newsletter-note {
    font-size: 0.72rem;

    color: rgba(255, 255, 255, 0.7);
}


/* ---------------------------------------------------------
   Featured Resource
   --------------------------------------------------------- */

.blog-page .resource-badge {
    display: block;

    font-size: 0.7rem;

    font-weight: 800;

    color: var(--accent-orange);

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.blog-page .resource-cover {
    width: 70px;

    min-width: 70px;

    height: 95px;

    background: var(--dark-maroon);

    border-radius: 6px;

    padding: 8px;

    color: #ffffff;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.blog-page .resource-logo {
    font-size: 0.5rem;

    font-weight: 800;

    color: #FFB800;
}


.blog-page .resource-cover-title {
    font-size: 0.55rem;

    font-weight: 700;

    line-height: 1.1;
}


.blog-page .resource-type {
    display: block;

    color: var(--text-muted);

    font-size: 0.75rem;

    margin-bottom: 3px;
}


.blog-page .resource-title {
    color: var(--dark-maroon);

    font-size: 0.9rem;

    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 4px;
}


.blog-page .resource-description {
    color: var(--text-muted);

    font-size: 0.75rem;

    line-height: 1.4;

    margin: 0;
}


/* ---------------------------------------------------------
   Latest Case Study
   --------------------------------------------------------- */

.blog-page .case-study-image {
    width: 70px;

    min-width: 70px;

    height: 70px;

    object-fit: cover;

    border-radius: 8px;
}


.blog-page .case-study-title {
    color: var(--dark-maroon);

    font-size: 0.85rem;

    font-weight: 700;

    line-height: 1.3;

    margin: 0;
}


.blog-page .case-study-link {
    color: var(--accent-orange);

    font-size: 0.8rem;

    font-weight: 700;

    text-decoration: none;
}


.blog-page .case-study-link:hover {
    color: var(--primary-red);
}
/* ---------------------------------------------------------
   Popular Topics
   --------------------------------------------------------- */

.blog-page .topic-item-list {
    list-style: none;

    padding: 0;
    margin: 0;
}

.blog-page .topic-item-list li {
    margin-bottom: 16px;
}

.blog-page .topic-item-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    text-decoration: none;

    color: var(--text-main);

    transition: color 0.2s ease;
}

.blog-page .topic-item-link:hover {
    color: var(--primary-red);
}

.blog-page .topic-icon-box {
    width: 28px;
    height: 28px;

    border-radius: 6px;

    background: #FAFAFC;

    color: var(--accent-orange);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.85rem;
}

.blog-page .topic-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.blog-page .topic-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* ---------------------------------------------------------
   Newsletter
   --------------------------------------------------------- */

.blog-page .newsletter-widget {
    background: linear-gradient(
        135deg,
        #7A0A0A 0%,
        #4A0000 100%
    );

    color: #ffffff;

    border: none;
}

.blog-page .newsletter-widget .widget-title {
    color: #ffffff;
}

.blog-page .newsletter-desc {
    font-size: 0.83rem;

    color: #E2E8F0;

    line-height: 1.5;

    margin-bottom: 18px;
}


/* ---------------------------------------------------------
   Featured Resource / Case Study
   --------------------------------------------------------- */

.blog-page .resource-badge {
    font-size: 0.7rem;

    font-weight: 800;

    color: var(--accent-orange);

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* ---------------------------------------------------------
   Blog CTA
   --------------------------------------------------------- */

.blog-page .cta-banner-red {
    background: linear-gradient(
        135deg,
        #7A0A0A 0%,
        #D03010 100%
    );

    border-radius: 16px;

    padding: 40px;

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(122, 10, 10, 0.2);
}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .blog-page .blog-hero-section {
        padding: 40px 0 30px;
    }

    .blog-page .blog-hero-title {
        font-size: 2rem;
    }

    .blog-page .blog-hero-subtitle {
        font-size: 0.95rem;
    }

    .blog-page .search-input-group {
        width: 100%;
        min-width: 0;
    }

    .blog-page .card-thumb-holder {
        height: 200px;
    }

    .blog-page .card-content-holder {
        padding: 18px;
    }

    .blog-page .cta-banner-red {
        padding: 28px 20px;
    }

}

/* =========================================================
   SINGLE BLOG POST
   ========================================================= */


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.single-blog-page {
    background: #ffffff;
}

.single-blog-hero {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fafafa 100%
    );

    padding: 70px 0 45px;

    text-align: center;
}

.single-blog-category {
    margin-bottom: 18px;
}

.single-blog-category a {
    display: inline-block;

    color: var(--accent-orange);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    text-decoration: none;

    margin: 0 4px;
}

.single-blog-category a:hover {
    color: var(--primary-red);
}


.single-blog-title {
    max-width: 950px;

    margin: 0 auto 22px;

    color: var(--dark-maroon);

    font-size: clamp(
        2.3rem,
        5vw,
        4rem
    );

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -0.8px;
}


.single-blog-excerpt {
    max-width: 760px;

    margin: 0 auto 22px;

    color: var(--text-muted);

    font-size: 1.08rem;

    line-height: 1.7;
}


.single-blog-meta {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    color: var(--text-muted);

    font-size: 0.8rem;

    font-weight: 500;
}

.single-blog-meta i {
    margin-right: 4px;

    color: var(--accent-orange);
}

.single-blog-meta .meta-divider {
    color: #cbd5e1;
}


/* ---------------------------------------------------------
   Featured Image
   --------------------------------------------------------- */

.single-blog-featured-image {
    padding: 10px 0 60px;
}

.single-featured-image-wrapper {
    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);
}

.single-featured-image {
    width: 100%;

    height: auto;

    display: block;
}


/* ---------------------------------------------------------
   Main Content
   --------------------------------------------------------- */

.single-blog-content-section {
    padding: 20px 0 80px;
}


.single-blog-content {
    color: #374151;

    font-size: 1rem;

    line-height: 1.85;
}


/* Paragraph */

.single-blog-content p {
    margin-bottom: 1.4rem;
}


/* Headings */

.single-blog-content h2 {
    color: var(--dark-maroon);

    font-size: 1.8rem;

    font-weight: 800;

    line-height: 1.3;

    margin-top: 2.5rem;

    margin-bottom: 1rem;
}

.single-blog-content h3 {
    color: var(--dark-maroon);

    font-size: 1.35rem;

    font-weight: 800;

    margin-top: 2rem;

    margin-bottom: 0.8rem;
}

.single-blog-content h4 {
    color: var(--dark-maroon);

    font-size: 1.1rem;

    font-weight: 700;

    margin-top: 1.6rem;

    margin-bottom: 0.7rem;
}


/* Links */

.single-blog-content a {
    color: var(--primary-red);

    font-weight: 600;
}

.single-blog-content a:hover {
    color: var(--accent-orange);
}


/* Lists */

.single-blog-content ul,
.single-blog-content ol {
    margin-bottom: 1.5rem;

    padding-left: 1.5rem;
}

.single-blog-content li {
    margin-bottom: 0.6rem;
}


/* Blockquote */

.single-blog-content blockquote {
    margin: 2rem 0;

    padding: 22px 26px;

    border-left: 4px solid var(--accent-orange);

    background: #fffbeb;

    color: var(--dark-maroon);

    font-size: 1.1rem;

    font-style: italic;

    border-radius: 0 8px 8px 0;
}


/* Images inside article */

.single-blog-content img {
    max-width: 100%;

    height: auto;

    border-radius: 10px;
}

.single-blog-content figure {
    margin: 2rem 0;
}

.single-blog-content figcaption {
    margin-top: 8px;

    color: var(--text-muted);

    font-size: 0.75rem;

    text-align: center;
}


/* Code */

.single-blog-content pre {
    overflow-x: auto;

    padding: 20px;

    margin: 2rem 0;

    background: #1e293b;

    color: #e2e8f0;

    border-radius: 10px;

    font-size: 0.85rem;

    line-height: 1.6;
}

.single-blog-content code {
    font-size: 0.9em;
}


/* ---------------------------------------------------------
   Tags
   --------------------------------------------------------- */

.single-blog-tags {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid var(--border-color);
}

.single-blog-tags .tags-label {
    color: var(--dark-maroon);

    font-size: 0.82rem;

    font-weight: 800;

    margin-right: 5px;
}

.single-blog-tags a {
    display: inline-block;

    padding: 5px 11px;

    background: #fafafa;

    border: 1px solid var(--border-color);

    border-radius: 5px;

    color: var(--text-muted);

    font-size: 0.72rem;

    text-decoration: none;

    transition: all 0.2s ease;
}

.single-blog-tags a:hover {
    border-color: var(--primary-red);

    color: var(--primary-red);
}


/* ---------------------------------------------------------
   Social Share
   --------------------------------------------------------- */

.single-blog-share {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

    padding: 20px 0;

    border-top: 1px solid var(--border-color);

    border-bottom: 1px solid var(--border-color);

    color: var(--text-muted);

    font-size: 0.8rem;

    font-weight: 600;
}


.share-buttons {
    display: flex;

    gap: 8px;
}

.share-buttons a {
    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--border-color);

    border-radius: 50%;

    color: var(--dark-maroon);

    text-decoration: none;

    transition: all 0.2s ease;
}

.share-buttons a:hover {
    background: var(--primary-red);

    border-color: var(--primary-red);

    color: #ffffff;
}


/* ---------------------------------------------------------
   Previous / Next
   --------------------------------------------------------- */

.single-blog-navigation {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;
}

.single-blog-navigation a {
    color: var(--accent-orange);

    font-size: 0.82rem;

    font-weight: 700;

    text-decoration: none;
}

.single-blog-navigation a:hover {
    color: var(--primary-red);
}

.single-blog-navigation .next-post {
    text-align: right;
}


/* ---------------------------------------------------------
   Sidebar
   --------------------------------------------------------- */

.single-blog-sidebar {
    position: sticky;

    top: 100px;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.single-blog-cta-section {
    padding: 0 0 80px;
}

.single-blog-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 45px;

    background: linear-gradient(
        135deg,
        #7A0A0A 0%,
        #D03010 100%
    );

    border-radius: 16px;

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(122, 10, 10, 0.2);
}

.single-cta-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #ffcf70;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.single-blog-cta h2 {
    max-width: 650px;

    margin-bottom: 10px;

    font-size: 1.8rem;

    font-weight: 800;

    line-height: 1.3;
}

.single-blog-cta p {
    margin: 0;

    color: rgba(255,255,255,0.8);

    font-size: 0.9rem;
}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 991.98px) {

    .single-blog-sidebar {
        position: static;
    }

    .single-blog-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }

}


@media (max-width: 767.98px) {

    .single-blog-hero {
        padding: 45px 0 35px;
    }

    .single-blog-title {
        font-size: 2.15rem;
    }

    .single-blog-excerpt {
        font-size: 0.95rem;
    }

    .single-blog-featured-image {
        border-radius: 10px;
    }

    .single-blog-content-section {
        padding-bottom: 50px;
    }

    .single-blog-content {
        font-size: 0.95rem;
    }

    .single-blog-navigation {
        flex-direction: column;
    }

    .single-blog-navigation .next-post {
        text-align: left;
    }

    .single-blog-share {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

    .single-blog-cta h2 {
        font-size: 1.45rem;
    }

}
/* =========================================================
   SINGLE BLOG SIDEBAR
   ========================================================= */

.single-blog-page .single-blog-sidebar,
.single-blog-page .blog-sidebar {
    width: 100%;
}


/* ---------------------------------------------------------
   Widgets
   --------------------------------------------------------- */

.single-blog-page .sidebar-widget {
    background: transparent;

    border: 0;

    border-radius: 0;

    padding: 0;

    margin: 0 0 42px;
}

.single-blog-page .sidebar-widget:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   Widget Title
   --------------------------------------------------------- */

.single-blog-page .widget-title {
    color: var(--dark-maroon);

    font-size: 1.05rem;

    font-weight: 800;

    line-height: 1.3;

    margin: 0 0 18px;
}


/* ---------------------------------------------------------
   Popular Topics
   --------------------------------------------------------- */

.single-blog-page .topic-item-list {
    list-style: none;

    padding: 0;

    margin: 0;
}

.single-blog-page .topic-item-list li {
    padding: 0;

    margin: 0;
}


.single-blog-page .topic-item-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 7px 0;

    color: var(--text-main);

    text-decoration: none;

    font-size: 0.82rem;
}


.single-blog-page .topic-item-link:hover {
    color: var(--accent-orange);
}


.single-blog-page .topic-item-link > div {
    min-width: 0;
}


.single-blog-page .topic-icon-box {
    width: 26px;

    height: 26px;

    min-width: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: #fafafa;

    color: var(--accent-orange);

    font-size: 0.7rem;
}


.single-blog-page .topic-name {
    font-size: 0.82rem;

    font-weight: 600;
}


.single-blog-page .topic-count {
    color: var(--text-muted);

    font-size: 0.7rem;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   View All Topics
   --------------------------------------------------------- */

.single-blog-page .btn-outline-gold-custom {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--accent-orange);

    background: transparent;

    border: 0;

    padding: 0;

    font-size: 0.75rem;

    font-weight: 700;

    text-decoration: none;
}

.single-blog-page .btn-outline-gold-custom:hover {
    color: var(--primary-red);
}


/* ---------------------------------------------------------
   Newsletter
   --------------------------------------------------------- */

.single-blog-page .newsletter-widget {
    background: var(--dark-maroon);

    border-radius: 10px;

    padding: 22px;
}

.single-blog-page .newsletter-widget .widget-title {
    color: #ffffff;

    margin-bottom: 10px;
}

.single-blog-page .newsletter-desc {
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.78rem;

    line-height: 1.5;

    margin-bottom: 15px;
}

.single-blog-page .newsletter-widget .form-control {
    border: 0;

    border-radius: 7px;

    font-size: 0.75rem;

    padding: 9px 11px;

    box-shadow: none;
}


.single-blog-page .newsletter-widget .btn-gold-action {
    border: 0;

    border-radius: 7px;

    padding: 9px 12px;

    background: var(--accent-orange);

    color: #ffffff;

    font-size: 0.78rem;

    font-weight: 700;
}


.single-blog-page .newsletter-note {
    color: rgba(255, 255, 255, 0.55);

    font-size: 0.65rem;

    margin-top: 8px;
}


/* ---------------------------------------------------------
   Featured Resource
   --------------------------------------------------------- */

.single-blog-page .resource-badge {
    display: block;

    margin-bottom: 12px;

    color: var(--accent-orange);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}


.single-blog-page .resource-cover {
    width: 58px;

    min-width: 58px;

    height: 78px;

    padding: 6px;

    border-radius: 5px;

    background: var(--dark-maroon);

    color: #ffffff;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.single-blog-page .resource-logo {
    color: #FFB800;

    font-size: 0.45rem;

    font-weight: 800;
}


.single-blog-page .resource-cover-title {
    font-size: 0.46rem;

    font-weight: 700;

    line-height: 1.1;
}


.single-blog-page .resource-type {
    display: block;

    margin-bottom: 3px;

    color: var(--text-muted);

    font-size: 0.65rem;
}


.single-blog-page .resource-title {
    margin: 0 0 4px;

    color: var(--dark-maroon);

    font-size: 0.78rem;

    font-weight: 800;

    line-height: 1.25;
}


.single-blog-page .resource-description {
    margin: 0;

    color: var(--text-muted);

    font-size: 0.65rem;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   Case Study
   --------------------------------------------------------- */

.single-blog-page .case-study-image {
    width: 58px;

    min-width: 58px;

    height: 58px;

    object-fit: cover;

    border-radius: 6px;
}


.single-blog-page .case-study-title {
    margin: 0;

    color: var(--dark-maroon);

    font-size: 0.76rem;

    font-weight: 800;

    line-height: 1.3;
}


.single-blog-page .case-study-link {
    color: var(--accent-orange);

    font-size: 0.72rem;

    font-weight: 700;

    text-decoration: none;
}


.single-blog-page .case-study-link:hover {
    color: var(--primary-red);
}

.newsletter-message {
    display: none;

    margin-top: 10px;

    padding: 8px 10px;

    border-radius: 6px;

    font-size: 0.7rem;

    line-height: 1.4;

    text-align: center;
}

.newsletter-message.success {
    display: block;

    background: rgba(16, 185, 129, 0.15);

    color: #6ee7b7;
}

.newsletter-message.error {
    display: block;

    background: rgba(239, 68, 68, 0.15);

    color: #fca5a5;
}