/* THE NAVY BLUE BOX */
.featured-issue-box {
    background: #112A46 !important;
    background: linear-gradient(135deg, #112A46 0%, #1a4a7c 100%) !important;
    border-radius: 20px;
    padding: 3rem !important;
    color: white !important;
    margin-bottom: 40px;
}

/* FORCE THE SIDE-BY-SIDE GRID */
#swabhimani-grid {
    display: grid !important;
    /* This creates a flexible grid with columns at least 220px wide */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 30px !important;
    padding: 20px 0;
}

/* Ensure cards take full width of their grid cell */
.magazine-card {
    width: 100% !important;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.magazine-card:hover {
    transform: translateY(-5px);
}
.magazine-card img {
    width: 100%;
    height: auto;
    display: block;
}

.mag-title {
    padding: 12px;
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    border-top: 1px solid #f9f9f9;
}


.download-icon-btn {
    transition: transform 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.download-icon-btn:hover {
    transform: scale(1.2);
    color: #ffc107 !important; /* Changes to yellow on hover */
}