@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* ===== WRAP ===== */
.lcf-ls-wrap {
    font-family: 'Open Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.lcf-ls-hero {
    position: relative;
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center center;
    background-color: #1e5c2e;
    display: flex;
    align-items: flex-end;
    padding: 20px 30px;
    box-sizing: border-box;
}

.lcf-ls-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.2));
}

.lcf-ls-hero-title {
    position: relative;
    z-index: 1;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* ===== MAIN LAYOUT ===== */
.lcf-ls-main {
    display: flex;
    gap: 24px;
    padding: 30px 20px;
    align-items: flex-start;
}

/* ===== LEFT ===== */
.lcf-ls-left {
    flex: 1 1 0%;
    min-width: 0;
}

/* Section Title with underline */
.lcf-ls-section-title {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1e5c2e !important;
    margin: 0 0 20px !important;
    text-align: center;
}

.lcf-ls-section-title span {
    border-bottom: 2px solid #1e5c2e;
    padding-bottom: 4px;
}

/* ===== CARDS GRID ===== */
.lcf-ls-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ===== CARD ===== */
.lcf-ls-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.2s;
}

.lcf-ls-card:hover {
    box-shadow: 0 6px 20px rgba(30,92,46,0.12);
    transform: translateY(-2px);
}

/* Card top row: icon + checkmark */
.lcf-ls-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Icon circle */
.lcf-ls-card-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1e5c2e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lcf-ls-card-icon-wrap i {
    color: #fff;
    font-size: 20px;
}

/* Text badge (12A, 80G) */
.lcf-ls-text-badge {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    line-height: 1;
}

/* Check icon */
.lcf-ls-check {
    color: #1e5c2e;
    font-size: 20px;
}

/* Card title */
.lcf-ls-card-title {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1e5c2e !important;
    margin: 0 0 8px !important;
    line-height: 1.3 !important;
}

/* Card description */
.lcf-ls-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 12.5px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ===== RIGHT PANEL ===== */
.lcf-ls-right {
    flex: 0 0 280px;
    width: 280px;
}

.lcf-ls-panel {
    background: #f5faf5;
    border: 1px solid #c8e8cc;
    border-radius: 12px;
    overflow: hidden;
}

/* Panel header */
.lcf-ls-panel-header {
    background: #edf8ee;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #c8e8cc;
}

.lcf-ls-panel-icon-bg {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #1e5c2e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lcf-ls-panel-icon-bg i {
    color: #fff;
    font-size: 18px;
}

.lcf-ls-panel-title {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 2px !important;
    line-height: 1.3 !important;
}

.lcf-ls-panel-sub {
    font-size: 11px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Doc list */
.lcf-ls-doc-list {
    padding: 8px 0;
}

.lcf-ls-doc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    text-decoration: none;
    border-bottom: 1px solid #e0f0e3;
    transition: background 0.2s;
    cursor: pointer;
}

.lcf-ls-doc-row:last-child {
    border-bottom: none;
}

.lcf-ls-doc-row:hover {
    background: #e0f0e3;
}

.lcf-ls-doc-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.lcf-ls-doc-icon {
    color: #1e5c2e;
    font-size: 15px;
    flex-shrink: 0;
}

/* View All Button */
.lcf-ls-view-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #1e5c2e;
    color: #fff !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    text-decoration: none;
    transition: background 0.3s;
    box-sizing: border-box;
    border-radius: 0 0 12px 12px;
}

.lcf-ls-view-btn:hover {
    background: #154a22;
    color: #fff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .lcf-ls-main {
        flex-direction: column;
    }
    .lcf-ls-right {
        flex: 0 0 100%;
        width: 100%;
    }
    .lcf-ls-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .lcf-ls-cards-grid {
        grid-template-columns: 1fr;
    }
    .lcf-ls-hero-title { font-size: 28px !important; }
}
