﻿ 

header {
    background: #111;
    color: white;
    text-align: center;
    padding: 10px 20px;
}

.reading-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

    header h1 {
        margin: 0;
        font-size: 40px;
    }

    header p {
        margin-top: 15px;
        font-size: 18px;
        opacity: 0.85;
    }

.container {
    max-width: 900px;
    margin: auto;
    padding: 10px 20px;
}

.section-title {
    font-size: 28px;
    margin-top: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.article-list {
    list-style: none;
    padding: 0;
}

    .article-list li {
        background: white;
        margin: 15px 0;
        padding: 18px 22px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        transition: 0.2s;
    }

        .article-list li:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.15);
        }

    .article-list a {
        text-decoration: none;
        font-size: 18px;
        color: #1a1a1a;
        font-weight: bold;
    }

        .article-list a:hover {
            color: #a67c00;
        }

footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}
