/* Blog page — brand fonts + colors from indexmain.css */

.blog-featured-section {
    position: relative;
    min-height: 695px;
    overflow: hidden;
    background: #0b0b2e;
}

.blog-featured-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-featured-bg img {
    width: 100%;
    height: 115%;
    margin-top: -4%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(54, 12, 12, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.blog-featured-inner {
    position: relative;
    z-index: 1;
    padding: 67px 0 40px;
    min-height: 695px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.blog-featured-top {
    flex: 1;
}

.blog-featured-card {
    background: var(--white);
    border-radius: 20px;
    padding: 56px 32px 40px;
    min-height: 525px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 469px;
}

.blog-featured-date {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: fit-content;
}

.blog-featured-date--end {
    align-items: flex-end;
    margin-left: auto;
}

.blog-featured-date span {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    color: #5f5d68;
}

.blog-featured-date i {
    display: block;
    width: 100%;
    min-width: 72px;
    height: 4px;
    border-radius: 4px;
    background: var(--icons-color);
}

.blog-featured-date--end i {
    height: 2px;
    background: var(--icons-color);
}

.blog-featured-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    justify-content: space-between;
}

.blog-featured-body > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-featured-card h1 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: var(--headt-color);
    margin: 0;
}

.blog-featured-card p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    color: var(--p-color);
    margin: 0;
}

.blog-featured-card .blog-read-more {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
}

.blog-read-more {
    font-family: Inter, sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.625;
    color: var(--icons-color) !important;
    display: inline-block;
    width: fit-content;
    transition: opacity 0.2s ease;
}

.blog-read-more:hover {
    opacity: 0.8;
}

.blog-side-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 24px;
    width: 100%;
    max-width: 419px;
    margin-left: auto;
}

.blog-side-card h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    color: var(--headt-color);
    margin: 12px 0 0;
}

.blog-featured-bottom {
    margin-top: 4px;
}

.blog-featured-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.blog-nav-btn {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}

.blog-nav-btn:hover {
    background: rgba(255, 255, 255, 0.36);
}

.blog-nav-btn i {
    font-size: 18px;
    color: var(--white);
}

.blog-featured-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 452px;
}

.blog-featured-progress span {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: #a8aed0;
    display: block;
}

.blog-featured-progress span.is-active {
    background: var(--white);
}

/* Latest Stories */
.latest-stories-section {
    background: var(--white);
    padding: 64px 0 80px;
}

.latest-stories-header {
    margin-bottom: 32px;
}

.latest-stories-header .section-label {
    display: block;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.625;
    color: #5f5d68;
    margin-bottom: 10px;
}

.latest-stories-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.18;
    color: var(--headt-color);
    margin: 0;
}

.story-card {
    background: var(--white);
    border: 1px solid #a8aed0;
    border-radius: 16px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-card-image {
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-card h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: var(--headt-color);
    margin: 0;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.story-meta span {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.67;
    color: #5f5d68;
}

.story-meta .dot {
    color: #9ca3af;
    font-size: 13px;
}

.story-card p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    color: #5f5d68;
    margin: 0;
    flex: 1;
}

.latest-stories-cta {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}

.btn-more-posts {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--dark-bule);
    color: var(--white) !important;
    font-family: Inter, sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    padding: 14px 32px;
    border-radius: 8px;
    box-shadow: 0px 10px 24px -8px rgba(5, 5, 62, 0.12);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-more-posts:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: var(--white) !important;
}

.btn-more-posts i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .blog-featured-card {
        max-width: 100%;
        min-height: auto;
        padding: 40px 28px;
    }

    .blog-featured-inner {
        min-height: 620px;
        padding: 48px 0 36px;
    }
}

@media (max-width: 991.98px) {
    .blog-featured-section,
    .blog-featured-inner {
        min-height: auto;
    }

    .blog-featured-inner {
        padding: 40px 0 32px;
        gap: 24px;
    }

    .blog-featured-card {
        gap: 24px;
        padding: 32px 24px;
        min-height: auto;
    }

    .blog-side-card {
        max-width: 100%;
        margin-left: 0;
    }

    .blog-featured-progress {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .blog-featured-nav {
        justify-content: flex-start;
    }

    .latest-stories-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .blog-featured-section {
        min-height: auto;
    }

    .blog-featured-bg img {
        height: 100%;
        margin-top: 0;
    }

    .blog-featured-inner {
        padding: 28px 0 24px;
        gap: 16px;
    }

    .blog-featured-card {
        border-radius: 16px;
        padding: 28px 20px;
        gap: 20px;
        background: rgba(255, 255, 255, 0.96);
    }

    .blog-featured-card h1 {
        font-size: 18px;
    }

    .blog-side-card {
        padding: 24px 18px;
    }

    .blog-nav-btn {
        width: 48px;
        height: 48px;
    }

    .blog-featured-progress span {
        height: 3px;
    }

    .latest-stories-section {
        padding: 48px 0 56px;
    }

    .latest-stories-header h2 {
        font-size: 30px;
    }

    .story-card-image {
        height: 200px;
    }

    .story-card h3 {
        font-size: 18px;
    }

    .btn-more-posts {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 575.98px) {
    .blog-featured-inner {
        padding: 20px 0 20px;
    }

    .story-meta {
        gap: 6px;
    }
}
