/* ── Root ───────────────────────────────────────────────────── */
.yu-section {
    font-family: 'Sora', sans-serif;
    background: #f5f7f2;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
 
/* Dekorativ doiralar */
.yu-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(99, 153, 34, 0.07);
    pointer-events: none;
}
.yu-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(29, 158, 117, 0.06);
    pointer-events: none;
}
 
/* ── Header ─────────────────────────────────────────────────── */
.yu-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
    position: relative;
    z-index: 2;
}
.yu-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #3B6D11;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.yu-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #639922;
    display: inline-block;
    flex-shrink: 0;
}
.yu-title {
    font-family: 'Lora', serif;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 500;
    color: #1a2410;
    line-height: 1.2;
    margin: 0;
}
.yu-title em {
    font-style: italic;
    color: #639922;
}
.yu-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: #3B6D11;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.25s ease, gap 0.2s;
    white-space: nowrap;
}
.yu-btn-more:hover {
    background: #27500A;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}
.yu-btn-more .flaticon-next {
    font-size: 13px;
}
 
/* ── Grid ───────────────────────────────────────────────────── */
.yu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}
 
/* ── Card ───────────────────────────────────────────────────── */
.yu-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(99, 153, 34, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.35s,
                border-color 0.3s;
}
.yu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(59, 109, 17, 0.14);
    border-color: rgba(99, 153, 34, 0.3);
    text-decoration: none;
}
 
/* Image */
.yu-img-wrap {
    position: relative;
    height: 195px;
    overflow: hidden;
    background: linear-gradient(135deg, #c8e6a0 0%, #9fd46a 100%);
    flex-shrink: 0;
}
.yu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.yu-card:hover .yu-img-wrap img {
    transform: scale(1.06);
}
.yu-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,36,16,0.6) 0%, transparent 55%);
    pointer-events: none;
}
/* Rasmiz fallback */
.yu-no-img {
    width: 100%;
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c8e6a0 0%, #9fd46a 100%);
}
.yu-no-img svg {
    opacity: 0.55;
}
/* Leaf badge */
.yu-leaf-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    background: #639922;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}
.yu-leaf-icon {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}
 
/* Card body */
.yu-card-body {
    padding: 1rem 1.15rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.yu-card-title {
    font-family: 'Lora', serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #1a2410;
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
}
 
/* Meta footer */
.yu-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f4eb;
    padding-top: 10px;
    margin-top: auto;
}
.yu-date {
    font-size: 11px;
    color: #8aaa6a;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}
.yu-date i,
.yu-views i {
    font-size: 13px;
}
.yu-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.yu-views {
    font-size: 11px;
    color: #aabf90;
    display: flex;
    align-items: center;
    gap: 4px;
}
.yu-detail-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3B6D11;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.yu-detail-link i {
    font-size: 12px;
}
.yu-card:hover .yu-detail-link {
    gap: 8px;
}
 
/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .yu-section {
        padding: 60px 0 40px;
    }
    .yu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
