/* Feed Grid */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(var(--feed-grid-cols, 3), 1fr);
    gap: 20px;
    margin: 1.5em 0;
}

.feed-grid__item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feed-grid__item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feed-grid__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.feed-grid__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f2f2f2;
}

.feed-grid__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feed-grid__body {
    padding: 16px;
}

.feed-grid__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.3;
}

.feed-grid__date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}

.feed-grid__excerpt {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.feed-grid__notice {
    padding: 12px 16px;
    background: #f7f7f7;
    border-radius: 6px;
    color: #666;
}

/* Responsive fallbacks */
@media (max-width: 782px) {
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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