@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

.lcf-is-wrap {
    padding: 30px 0px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}
.lcf-is-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* ── LEFT ── */
.lcf-is-eyebrow {
    display: block;
    font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: #1e5c35; margin-bottom: 12px;
}
.lcf-is-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 38px); font-weight: 700;
    color: #111; line-height: 1.2; margin: 0 0 14px;
}
.lcf-is-line {
    width: 60px; height: 3px; background: #1e5c35;
    border-radius: 2px; margin-bottom: 16px;
}
.lcf-is-desc {
    font-size: 14px; color: #555; line-height: 1.75;
    margin-bottom: 2rem; max-width: 420px;
}

/* Stories list */
.lcf-is-stories { display: flex; flex-direction: column; gap: 0; }
.lcf-is-story-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 1.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.lcf-is-story-item:last-child { border-bottom: none; }

.lcf-is-icon-wrap {
    flex-shrink: 0;
    width: 58px; height: 58px; border-radius: 50%;
    background: #1e5c35;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.lcf-is-icon-wrap svg { width: 26px; height: 26px; }

.lcf-is-story-body { flex: 1; }
.lcf-is-meta {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 6px;
}
.lcf-is-num {
    font-size: 13px; font-weight: 600; color: #1e5c35; letter-spacing: 0.5px;
}
.lcf-is-divider { color: #ccc; font-size: 13px; }
.lcf-is-date { font-size: 12px; color: #888; font-weight: 400; }

.lcf-is-story-title {
    font-size: 15px; font-weight: 600; color: #111;
    margin: 0 0 6px; line-height: 1.35;
}
.lcf-is-story-text {
    font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 8px;
}
.lcf-is-read-more {
    font-size: 13px; font-weight: 500; color: #1e5c35;
    text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
    transition: gap 0.2s;
}
.lcf-is-read-more:hover { gap: 8px; }

/* ── RIGHT ── */
.lcf-is-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.lcf-is-img-item {
    position: relative; border-radius: 12px; overflow: hidden;
    background: #e8f0e8;
}
.lcf-is-img-item.full { grid-column: 1 / -1; height: 240px; }
.lcf-is-img-item.half { height: 180px; }

.lcf-is-img-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.lcf-is-img-placeholder { width: 100%; height: 100%; background: #e0ece0; }

.lcf-is-img-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.45);
    color: #fff; font-size: 13px; font-weight: 500;
    padding: 28px 14px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}

/* Stats bar */
.lcf-is-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #f4f9f4;
    border-radius: 12px;
    padding: 16px 10px;
    margin-bottom: 12px;
    border: 1px solid #d8eed8;
}
.lcf-is-stat-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 8px 4px;
    border-right: 1px solid #d0e8d0;
}
.lcf-is-stat-item:last-child { border-right: none; }

.lcf-is-stat-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: #1e5c35; display: flex; align-items: center;
    justify-content: center; color: #fff; margin-bottom: 8px;
}
.lcf-is-stat-icon svg { width: 18px; height: 18px; }
.lcf-is-stat-number {
    font-size: 22px; font-weight: 700; color: #1e5c35; line-height: 1;
    margin-bottom: 4px;
}
.lcf-is-stat-label { font-size: 11px; color: #4a6a4a; line-height: 1.3; }

/* CTA Button */
.lcf-is-cta-btn {
    display: block; width: 100%;
    background: #1e5c35; color: #fff;
    text-align: center; text-decoration: none;
    font-size: 15px; font-weight: 500;
    padding: 16px 24px;
    border-radius: 10px;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}
.lcf-is-cta-btn:hover { background: #164d2b; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .lcf-is-inner { grid-template-columns: 1fr; gap: 2rem; }
    .lcf-is-img-item.full  { height: 200px; }
    .lcf-is-img-item.half  { height: 140px; }
}
@media (max-width: 480px) {
    .lcf-is-wrap { padding: 2rem 1rem; }
    .lcf-is-stats { grid-template-columns: repeat(3,1fr); }
    .lcf-is-stat-number { font-size: 18px; }
}
