/* Insights hub / pillar listing — small additions on top of blog-index.css */

.insights-page-title {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    margin: 0 0 0.5rem 0;
}

.insights-page-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475569;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 0 2rem 0;
}

@media (max-width: 768px) {
    .insights-page-title {
        font-size: 24px;
    }
    .insights-page-intro {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }
}

/* Card thumbnail: show the whole illustration at full width with its natural
   height (no crop, no side bars). */
.article-card-image {
    height: auto;
    background-color: #ffffff;
}
.article-card-image::before {
    display: none;   /* remove the grey placeholder layer */
}
.article-card-img {
    width: 100%;
    height: auto;
    object-fit: fill;
    display: block;
    transform: none;
}
.article-card:hover .article-card-img {
    transform: none;
}

