:root {
    --color-primary: #2628DD;
    --color-secondary: #C419BE;
    --color-text: #333;
}

body {
    background: #f9f9fb;
    line-height: 1.6;
}

.blog-hero {
    padding: 4rem 5%;
    background: linear-gradient(45deg, #2628DD 30%, #C419BE 100%);
    color: white;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: -5%;
    position: relative;
    z-index: 1;
}

.newspaper-article {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.article-header {
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.article-date {
    font-family: 'Courier New', monospace;
    color: var(--color-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.article-subtitle {
    font-size: 1.4rem;
    color: var(--color-text);
    font-weight: 300;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.article-content {
    line-height: 1.7;
    color: var(--color-text);
    font-size: 1.1rem;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin: 2rem 0;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-secondary);
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    margin: 2rem 0;
    background: #f9f9fb;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.article-section {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-number {
    font-size: 3rem;
    color: var(--color-primary);
    float: left;
    margin-right: 1rem;
    line-height: 0.8;
    font-weight: bold;
}

.source-reference {
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.trend-badge {
    background: var(--color-secondary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Animaciones */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.visible {
    animation: fadeInUp 0.8s ease forwards;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1.2rem;
    }

    .pull-quote {
        font-size: 1.4rem;
    }
}