/**
 * Block: News Grid
 */
.my-corp-news-grid .news-grid-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (min-width: 768px) {
    .my-corp-news-grid.cols-3 .news-grid-container { grid-template-columns: repeat(3, 1fr); }
    .my-corp-news-grid.cols-4 .news-grid-container { grid-template-columns: repeat(4, 1fr); }
}
.news-card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.news-thumb {
    display: block;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}
.news-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-card:hover .news-thumb img {
    transform: scale(1.05);
}
.news-content { padding: 20px; }
.news-meta { font-size: 12px; color: #999; margin-bottom: 10px; }
.news-title { font-size: 18px; margin: 0 0 10px 0; line-height: 1.4; }
.news-title a { color: #333; text-decoration: none; }
.news-excerpt { font-size: 14px; color: #666; line-height: 1.6; }