/* article.css */
.article-container {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    margin: 15px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.article-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.article-meta .date {
    margin-right: 15px;
}

.article-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.article-content p {
    margin-bottom: 15px;
}

.highlight {
    font-weight: bold;
    font-size: 16px;
    color: #3a7bd5;
}

.event-box {
    background: #f7f9fc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.event-box h3 {
    margin-top: 0;
    color: #3a7bd5;
    font-size: 16px;
    margin-bottom: 10px;
}

.event-box ul {
    padding-left: 20px;
}

.event-box li {
    margin-bottom: 8px;
}

.note {
    font-style: italic;
    color: #666;
}

.article-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.btn-back, .btn-more {
    background: linear-gradient(to right, #3a7bd5, #3a6073);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-back:hover, .btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.doc-link {
    background: #fef8e8;
    padding: 10px;
    border-radius: 5px;
    border-left: 4px solid #ffcc00;
}

.benefits-list {
    background: #f7f9fc;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.benefits-list h3 {
    color: #3a7bd5;
    margin-top: 0;
    margin-bottom: 15px;
}

.benefits-list ol {
    padding-left: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
}

.total {
    font-weight: bold;
    margin-top: 15px;
    color: #ff6600;
}

.contact-info {
    text-align: center;
    font-style: italic;
    margin-top: 20px;
    color: #666;
}