/**
 * Widget: blog|article-other — "Leggi i nostri altri articoli".
 * Regole scopate sotto .blog-article-other; le card usano il component news-card.
 */

.blog-article-other {
    display: block;
    background: var(--website-color-light, #FFFAF0);
    padding: clamp(48px, 8vw, 96px) 0;
}
.blog-article-other .blog-article-other-inner {
    max-width: var(--website-container-max-width, 1440px);
    margin: 0 auto;
    padding: 0 28px;
}
.blog-article-other .blog-article-other-head { margin-bottom: clamp(28px, 4vw, 48px); }
.blog-article-other .blog-article-other-title {
    margin: 0;
    color: var(--website-color-txt-title, #3D3D3D);
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
}
.blog-article-other .blog-article-other-intro {
    max-width: 760px;
    margin-top: 16px;
    color: var(--website-color-txt-body, #4D5359);
    font-size: 1.05rem;
    line-height: 1.6;
}
.blog-article-other .blog-article-other-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 36px);
}

@media (max-width: 991.98px) {
    .blog-article-other .blog-article-other-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .blog-article-other .blog-article-other-grid { grid-template-columns: 1fr; }
}
