.enw-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header: logo + titolo */
.enw-header {
    text-align: center;
    margin-bottom: 32px;
}

.enw-logo {
    margin-bottom: 16px;
}

.enw-logo img {
    width: auto;
    display: inline-block;
}

.enw-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.35;
}

/* Griglia 3 card */
.enw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 860px) {
    .enw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .enw-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.enw-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.enw-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Immagine */
.enw-card-img-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.enw-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.enw-card:hover .enw-card-img {
    transform: scale(1.04);
}

/* Body */
.enw-card-body {
    flex: 1 1 auto;
    padding: 16px 18px 8px;
}

.enw-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
}

.enw-card-title a {
    color: #1a1a2e;
    text-decoration: none;
}

.enw-card-title a:hover {
    color: #2563eb;
}

.enw-card-date {
    display: block;
    font-size: 13px;
    color: #2563eb;
    margin-bottom: 8px;
}

.enw-card-excerpt {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

/* Footer */
.enw-card-footer {
    padding: 12px 18px 16px;
    text-align: right;
}

.enw-card-footer a {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
}

.enw-card-footer a:hover {
    color: #2563eb;
}

.enw-empty {
    text-align: center;
    color: #6b7280;
    padding: 24px;
}
