/* Article page styles */
.article-content {
    /*background: rgba(255, 255, 255, 0.1);*/
    /*backdrop-filter: blur(10px);*/
    color: white;
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
    /*border-radius: 20px;*/
    margin: 40px 20px;
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.article-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.article-section {
    margin-bottom: 30px;
}

.article-section h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.article-section h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.article-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
    color: rgba(255, 255, 255, 0.95);
}

.article-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.article-section li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.back-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-content {
        padding: 40px 15px;
    }
}

