body {
    font-family: 'Cormorant Garamond', serif;
    background: #16100d;
    color: #f9ebc7;
    margin: 0;
    padding: 0;
}
header {
    background: #222;
    color: #ebba47;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    border-bottom: 2px solid #6b4b16;
}
.site-title {
    font-size: 2.5em;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
    margin-bottom: 0.3em;
    font-weight: bold;
    text-shadow: 1px 2px 10px #000, 0 0 2px #ebba47;
}
.site-desc {
    font-size: 1.2em;
    font-weight: 400;
    color: #bfa05a;
}
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1em;
}
main {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.article-card {
    background: #2c2109;
    border-radius: 18px;
    margin-bottom: 2em;
    box-shadow: 0 6px 30px rgba(230,180,80,0.08);
    padding: 1.4em 1.3em;
    transition: box-shadow .2s;
    border: 1px solid #ebba47;
}
.article-card:hover {
    box-shadow: 0 12px 36px rgba(235,186,71,0.16);
}
.article-card .cover {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 11px;
    margin-bottom: 0.9em;
    border: 1px solid #bfa05a;
}
.article-card h2 {
    font-size: 1.3em;
    margin-top: 0.1em;
    margin-bottom: 0.3em;
}
.article-card .meta {
    font-size: 0.95em;
    color: #ffe4a0;
    margin-bottom: 0.6em;
}
.article-card .desc {
    color: #ffeebd;
    font-size: 1em;
    margin-bottom: 0.7em;
}
.article-detail h1 {
    font-size: 2em;
    margin-bottom: 0.2em;
}
.article-detail .meta {
    font-size: 1em;
    color: #ffe59c;
    margin-bottom: 0.9em;
}
.article-detail .content {
    color: #fffaeb;
    font-size: 1.17em;
    line-height: 1.65;
    margin-bottom: 2em;
}
a {
    color: #ebba47;
    text-decoration: none;
    transition: color .2s;
}
a:hover {
    color: #fff9dc;
    text-decoration: underline;
}
footer {
    background: #222;
    color: #ebba47;
    text-align: center;
    padding: 1.2em 0 1em 0;
    margin-top: 3em;
    font-size: 1em;
    border-top: 2px solid #6b4b16;
}
@media (max-width:600px){
    .site-title { font-size: 1.5em; }
    main { padding: 0 0.2em;}
    .article-card { padding: 0.7em 0.7em;}
}
