.news-grid-a9db2046 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-card-a9db2046 {
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}
.news-card-image-wrapper-a9db2046 {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.news-card-image-wrapper-a9db2046 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-card-content-a9db2046 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.news-card-category-a9db2046 {
    font-size: 12px;
    font-weight: 600;
    color: #dfa158;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.news-card-title-a9db2046 {
    font-size: 20px;
    font-weight: 700;
    color: #436253;
    margin: 0 0 16px 0;
    line-height: 1.3;
}
.news-card-title-a9db2046 a {
    color: inherit;
    text-decoration: none;
}
.news-card-excerpt-a9db2046 {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}
.news-card-footer-a9db2046 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin-top: auto;
}
.news-card-date-a9db2046 {
    font-size: 13px;
    color: #999;
}
.news-card-read-more-a9db2046 {
    font-size: 13px;
    font-weight: 600;
    color: #dfa158;
    text-decoration: none;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .news-grid-a9db2046 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .news-grid-a9db2046 {
        grid-template-columns: 1fr;
    }
}