/* Premium article pages */
.article-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0f172a;
}

.article-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.92) 85%);
}

.article-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
}

@media (min-width: 768px) {
    .article-hero__inner {
        padding: 5rem 3rem 4rem;
    }
}

.article-hero__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #86efac;
    margin-bottom: 1rem;
}

.article-hero__title {
    font-family: Manrope, system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #f8fafc;
    max-width: 18ch;
    margin: 0 0 1rem;
}

.article-hero__excerpt {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0;
}

.article-layout {
    max-width: 72rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 240px;
        padding: 4rem 3rem 5rem;
        align-items: start;
    }
}

.article-prose {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #334155;
}

.article-prose .lead {
    font-size: 1.25rem;
    line-height: 1.65;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid #386b02;
}

.article-prose h2 {
    font-family: Manrope, system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.02em;
}

.article-prose h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.75rem 0 0.75rem;
}

.article-prose p {
    margin: 0 0 1.25rem;
}

.article-prose ul.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 0.75rem;
}

.article-prose ul.check-list li {
    position: relative;
    padding-left: 1.75rem;
    color: #475569;
}

.article-prose ul.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #386b02;
    font-weight: 700;
}

.article-prose .stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.article-prose .stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    text-align: center;
}

.article-prose .stat-value {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #386b02;
    line-height: 1.1;
}

.article-prose .stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-top: 0.35rem;
}

.article-prose .pull-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 0.75rem;
    border-left: 4px solid #386b02;
}

.article-prose .pull-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: #14532d;
    margin: 0;
}

.article-prose .pull-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    color: #386b02;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.article-sidebar {
    position: sticky;
    top: 6rem;
}

.article-sidebar__box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.article-sidebar__title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    margin: 0 0 0.75rem;
}

.article-sidebar__cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #386b02;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    margin-top: 1rem;
}

.article-sidebar__cta:hover {
    filter: brightness(1.08);
}

.article-sidebar__cta--whatsapp {
    background: #25d366;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.article-sidebar__cta--whatsapp:hover {
    filter: brightness(1.05);
}

.article-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .article-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .article-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.article-card:hover {
    border-color: rgba(56, 107, 2, 0.35);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.article-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-card__media img {
    transform: scale(1.04);
}

.article-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card__type {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #386b02;
    margin-bottom: 0.5rem;
}

.article-card__title {
    font-family: Manrope, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.article-card__excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    flex: 1;
    margin: 0 0 1.25rem;
}

.article-card__link {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #386b02;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.article-related {
    background: #f1f5f9;
    padding: 4rem 0;
    margin-top: 2rem;
}
