/**
 * Frontend Styling for Khulna Gazette Featured Section (`kgfs_`)
 * Compact, responsive, matching Khulna Gazette (khulnagazette.com) layout & typography
 */

.kgfs-section {
    background-color: #ffffff;
    padding: 12px 0 16px 0;
    margin: 10px 0 16px 0;
    border-top: 3px solid #dc2626;
    border-bottom: 1px solid #e2e8f0;
    font-family: 'Bangla', 'SolaimanLipi', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    width: 100%;
}

.kgfs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
    box-sizing: border-box;
}

/* Section Header */
.kgfs-header {
    margin-bottom: 14px;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 6px;
}

.kgfs-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.kgfs-title-indicator {
    display: inline-block;
    width: 5px;
    height: 20px;
    background-color: #dc2626;
    border-radius: 2px;
}

.kgfs-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.kgfs-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* Card General Styling */
.kgfs-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.kgfs-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.kgfs-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kgfs-card-link:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.kgfs-thumb-wrap {
    position: relative;
    width: 100%;
    background-color: #f1f5f9;
    overflow: hidden;
}

.kgfs-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kgfs-card:hover .kgfs-thumb {
    transform: scale(1.04);
}

.kgfs-category-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    line-height: 1;
    z-index: 2;
}

.kgfs-card-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kgfs-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    margin: 2px 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.kgfs-card:hover .kgfs-card-title {
    color: #dc2626;
}

.kgfs-card-excerpt {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.45;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kgfs-card-date {
    font-size: 0.72rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    padding-top: 2px;
}

.kgfs-clock-icon {
    opacity: 0.7;
}

/* --- Layout Mode 1: Hero Grid (`hero_grid`) matching Khulna Gazette --- */
.kgfs-hero-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.kgfs-hero-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kgfs-card-hero .kgfs-thumb-wrap {
    padding-top: 52%;
    max-height: 250px;
}

.kgfs-card-hero .kgfs-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
}

.kgfs-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.kgfs-card-sub .kgfs-thumb-wrap {
    padding-top: 52%;
    max-height: 130px;
}

.kgfs-card-sub .kgfs-card-title {
    font-size: 0.88rem;
    line-height: 1.3;
}

/* --- Layout Mode 2: Equal Grid (`grid`) --- */
.kgfs-grid-layout-equal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.kgfs-card-grid .kgfs-thumb-wrap {
    padding-top: 52%;
    max-height: 140px;
}

/* --- Layout Mode 3: Horizontal List (`horizontal`) --- */
.kgfs-horizontal-layout-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kgfs-card-horizontal .kgfs-card-link {
    flex-direction: row;
    align-items: center;
}

.kgfs-card-horizontal .kgfs-thumb-wrap {
    width: 160px;
    height: 105px;
    flex-shrink: 0;
    padding-top: 0;
}

.kgfs-card-horizontal .kgfs-card-body {
    padding: 10px 14px;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .kgfs-hero-layout-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .kgfs-card-horizontal .kgfs-card-link {
        flex-direction: column;
    }

    .kgfs-card-horizontal .kgfs-thumb-wrap {
        width: 100%;
        height: auto;
        padding-top: 52%;
    }
}

@media (max-width: 540px) {
    .kgfs-sub-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kgfs-card-hero .kgfs-card-title {
        font-size: 1.05rem;
    }
}
