/* Clear Round — featured lager grid, rendered by includes/lager-featured.php. */

.featured-lager-section {
    padding: 4rem 0;
    background: #f9fafb;
}
.featured-lager-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.featured-lager-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
}
.featured-lager-header a {
    color: #1a2332;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.featured-lager-header a:hover {
    opacity: 0.7;
}

.featured-lager-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.featured-lager-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.featured-lager-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.featured-lager-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-lager-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
}
.featured-lager-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2rem;
}

.featured-lager-body {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.featured-lager-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}
.featured-lager-body p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.featured-lager-body .read-more {
    display: inline-block;
    margin-top: 0.75rem;
    color: #1a2332;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .featured-lager-grid {
        grid-template-columns: 1fr;
    }
}
