.hero-image {
    width: 100%;
    margin: 0 0 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
    margin: 2.5rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
    .hero-image img,
    .article-image img {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .hero-image {
        margin: 0 0 1.5rem;
    }
    
    .hero-image img {
        border-radius: 8px;
    }
    
    .article-image {
        margin: 2rem 0;
    }
    
    .article-image img {
        border-radius: 6px;
    }
}

.footer-disclaimer {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-disclaimer p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: #e6bc5f;
}

.footer-disclaimer a {
    color: #e6bc5f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-disclaimer a:hover {
    color: #f0cc78;
}