/* ===== Home Page – Featured Question Papers ===== */

.home-featured-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.home-featured-section .section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.home-featured-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 25px;
    border-radius: 18px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.home-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.home-featured-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.home-featured-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.home-featured-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 15px;
}

.home-featured-meta {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 18px;
}

.home-featured-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-btn {
    background: #ffffff;
    color: #4b3fa7;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.home-btn:hover {
    background: #f1f1f1;
    color: #4b3fa7;
    transform: translateY(-2px);
}

@media(max-width:768px){
    .home-featured-section{
        padding:40px 0;
    }
}
