/* ===================================
   Blog Page Styles
   =================================== */

.blog-page-section {
    background: #020617;
    padding: 100px 0;
}

.blog-header-wrapper {
    margin-bottom: 60px;
}

/* Featured Post Card */
.featured-post-card {
    background: #020617;
    /* Darker background matching the image */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    margin-bottom: 60px;
    align-items: stretch;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.featured-post-card:hover {
    border-color: #38bdf8;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.featured-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0b1221;
    /* Slightly lighter dark for content area if needed, or keep transparent */
    background: transparent;
}

.featured-image-wrapper {
    flex: 1.4;
    /* Increased width for image */
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border-radius: 0 24px 24px 0;
    /* Rounded corners on right side only if card has them, but image usually fills */
    margin: 10px;
    border-radius: 20px;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.featured-post-card:hover .featured-img {
    transform: scale(1.05);
}

.blog-tag {
    display: inline-block;
    background: #ffffff;
    color: #0f172a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    width: fit-content;
}

.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 24px;
}

.featured-meta i {
    color: #38bdf8;
}

.featured-excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
}

.featured-content .btn-light-blue {
    width: fit-content;
    padding: 12px 28px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-post-card {
        flex-direction: column-reverse;
    }

    .featured-image-wrapper {
        height: 300px;
        min-height: auto;
        flex: none;
        margin: 10px 10px 0 10px;
        border-radius: 20px 20px 0 0;
    }

    .featured-img {
        border-radius: 20px 20px 0 0;
    }

    .featured-content {
        padding: 40px;
    }

    .featured-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .featured-content {
        padding: 30px;
    }

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