* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #333;
    background: #f0f5ef;
}

a { color: #1e4d15; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    width: 780px;
    margin: 0 auto;
    background: #fff;
}

/* HEADER */
.header img {
    display: block;
    width: 100%;
}

/* MENU */
.nav {
    background: #2a661c;
    padding: 5px 10px;
    font-size: 11px;
    border-left: 1px solid #cbcdca;
    border-right: 1px solid #cbcdca;
}
.nav a {
    color: #fff;
    font-weight: bold;
    margin-right: 15px;
}
.nav a:hover { color: #fff; text-decoration: underline; }

/* BARRA INFO */
.info-bar {
    background: #f5f5f0;
    padding: 5px 15px;
    font-size: 18px;
    color: #666;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #cbcdca;
    border-right: 1px solid #cbcdca;
}
.info-bar a { color: #1e4d15; }

/* LAYOUT */
.main {
    display: flex;
    border-left: 1px solid #cbcdca;
    border-right: 1px solid #cbcdca;
}

/* CONTENUTO */
.content {
    flex: 1;
    padding: 15px 20px;
}

/* INTESTAZIONE NUMERO */
.issue-header {
    background: #f0f5ef;
    border-left: 3px solid #2a661c;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.issue-title {
    font-size: 20px;
    color: #2a661c;
    margin-bottom: 3px;
}

.issue-date {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-bottom: 8px;
}

.issue-intro {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
}

/* LISTA ARTICOLI */
.articles-list {
    margin-top: 10px;
}

.article-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px dotted #ccc;
}

.article-item:last-child {
    border-bottom: none;
}

.article-preview {
    width: 160px;
    flex: 0 0 160px;
}

.article-preview img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
}

.article-text {
    flex: 1;
}

.article-item .article-cat {
    background: #2a661c;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 6px;
    display: inline-block;
    margin-bottom: 6px;
}

.article-item .article-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.article-item .article-title a {
    color: #1e4d15;
}

.article-item .article-title a:hover {
    text-decoration: underline;
}

.article-item .article-author {
    font-size: 10px;
    color: #999;
    margin-bottom: 6px;
}

.article-item .article-author strong {
    color: #1e4d15;
}

.article-item .article-summary {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
}

.read-more {
    font-size: 10px;
    font-weight: bold;
    color: #2a661c;
}

.read-more:hover {
    text-decoration: underline;
}

/* SIDEBAR */
.sidebar {
    width: 200px;
    padding: 15px;
    background: #fafaf5;
}

.sidebar-box {
    margin-bottom: 20px;
}

.sidebar-box h3 {
    background: #2a661c;
    color: #fff;
    font-size: 11px;
    padding: 5px 8px;
    margin-bottom: 0;
}

.sidebar-box ul {
    list-style: none;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    padding: 8px;
}

.sidebar-box li {
    padding: 3px 0;
    border-bottom: 1px dotted #ddd;
}

.sidebar-box li:last-child {
    border-bottom: none;
}

.search-input {
    width: 90%;
    padding: 3px;
    font-size: 10px;
}

/* FOOTER */
.footer {
    background: #333;
    color: #999;
    padding: 15px;
    font-size: 10px;
    text-align: center;
    border-left: 1px solid #cbcdca;
    border-right: 1px solid #cbcdca;
}

.footer a { color: #2a661c; }
