/* Blogs Page Styles */
body {
    background-color: #FFFDF8;
}

.blogs-page {
    background-color: #FFFDF8;
    min-height: 70vh;
}

/* Typography */
.section-title {
    font-size: 2rem;
    color: #100F0F;
    letter-spacing: 1px;
}

.blogs-main-divider {
    border-top: 1px solid #000000;
    opacity: 1;
    margin-top: 1rem;
}

.blog-date {
    font-size: 0.75rem;
    color: #100F0F;
    text-transform: uppercase;
    font-weight: 500;
}

.blog-desc {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #100F0F;
    line-height: 1.6;
}

/* Featured Article */
.featured-img {
    height: 100%;
    max-height: 500px;
    object-position: top;
}

.featured-title {
    font-size: 1.75rem;
    line-height: 1.3;
}

.featured-title a:hover {
    color: #555 !important;
}

/* Small Articles List (Column 1) */
.small-article {
    border-bottom: 1px solid #D1D1D1;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.small-article.no-border {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.small-article-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.small-article-title a:hover {
    color: #555 !important;
}

/* Article Cards (Columns 2 & 3) */
.card-img {
    height: 350px;
    object-position: top;
}

.card-title {
    font-size: 1.1rem;
    line-height: 1.4;
}

.card-title a:hover {
    color: #555 !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .featured-img {
        max-height: 400px;
    }

    .featured-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .featured-img {
        max-height: 300px;
    }

    .card-img {
        height: 250px;
    }

    .staggered-img {
        height: 350px;
    }
}

/* Staggered News Section */
.staggered-img {
    height: 550px;
    object-position: top;
}