/* ============================================================================
   AgroRural — Bloque editorial "Nota editorial" estilo Diario Paraguayo
   ============================================================================ */

.article-fuente-box {
    margin: 32px 0 24px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #f5f8f3 0%, #eaf3e0 100%);
    border-radius: 12px;
    border: 1px solid rgba(106, 176, 76, 0.25);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.06);
    font-size: .95rem;
    line-height: 1.6;
    color: #3a4a2f;
}

.article-fuente-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(45, 80, 22, 0.2);
}

.article-fuente-icon {
    color: #2d5016;
    font-size: 1.1rem;
}

.article-fuente-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2d5016;
}

.article-fuente-main {
    margin: 0 0 8px;
    font-size: .95rem;
    color: #2e3d24;
}

.article-fuente-main a {
    color: #2d5016;
    text-decoration: none;
    border-bottom: 1px dotted rgba(45, 80, 22, 0.4);
    transition: all .2s;
}

.article-fuente-main a:hover {
    color: #6ab04c;
    border-bottom-color: #6ab04c;
    border-bottom-style: solid;
}

.article-fuente-sub {
    margin: 0 0 18px;
    font-size: .88rem;
    color: #4a5a3f;
    font-style: italic;
    opacity: .9;
}

.article-fuente-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #2d5016;
    color: #fff !important;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .2s;
    border: none;
}

.article-fuente-btn:hover {
    background: #6ab04c;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(45, 80, 22, 0.25);
    color: #fff !important;
}

.article-fuente-btn i {
    font-size: .85rem;
}

/* Responsive */
@media (max-width: 576px) {
    .article-fuente-box {
        padding: 18px 18px;
        margin: 24px 0 20px;
    }
    .article-fuente-main {
        font-size: .9rem;
    }
    .article-fuente-btn {
        width: 100%;
        padding: 12px 16px;
    }
}
