/* Featured Section */
.featured-section {
    margin-bottom: 3rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-card .card-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.featured-card .card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card .card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.featured-card .card-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    -webkit-line-clamp: 4;
}

@media (max-width: 900px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-card .card-image {
        height: 250px;
        min-height: auto;
    }
}

/* Grid Adjustments */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
