/* BLOGS Section Styles (SS 2) */
.blogs-section-wrapper {
    width: 100%;
    margin: 30px 0 20px 0;
    text-align: center;
    box-sizing: border-box;
}

.blogs-header-pill {
    display: inline-block;
    background: #4b6584;
    color: #ffffff;
    font-weight: 900;
    font-size: 18px;
    padding: 8px 32px;
    border-radius: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.blogs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 12px;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.blog-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    width: 280px;
    max-width: 100%;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.blog-card-thumb {
    background: #facc15;
    padding: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px !important;
    max-height: 180px !important;
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
}

.blog-card-thumb .blog-thumb-img {
    width: 100% !important;
    height: 100% !important;
    max-height: 180px !important;
    object-fit: cover !important;
    display: block !important;
}

.blog-card-thumb .crown-icon {
    font-size: 50px;
    line-height: 1;
}

.blog-card-thumb .thumb-title {
    font-size: 20px;
    font-weight: 900;
    color: #000000;
    margin-top: 6px;
}

.blog-card-body {
    padding: 16px;
}

.blog-card-body .blog-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.blog-card-body .blog-meta {
    font-size: 10.5px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.blog-card-body .blog-excerpt {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.blog-card-body .blog-excerpt a {
    color: #2563eb;
    font-weight: 700;
}
.blogs-grid {
        justify-content: center !important;
        padding: 0 6px !important;
        gap: 14px !important;
    }

    .blog-card-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 10px auto !important;
    }

