/* ===========================
   Newsletter Archives Styles
   =========================== */

.page-content-section {
    padding: 60px 0;
    background: #fff;
}

.section-intro-text {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 36px;
    padding: 16px 20px;
    background: #f4f9fd;
    border-left: 4px solid #6dbfe8;
    border-radius: 0 6px 6px 0;
}

/* --- Download Grid --- */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px;
    background: #f4f9fd;
    border: 1px solid #d6eaf8;
    border-radius: 10px;
    text-decoration: none;
    color: #1a3a5c;
    font-weight: 600;
    font-size: 0.93rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(109, 191, 232, 0.08);
}

.download-card i {
    font-size: 2rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.download-card:hover {
    background: #6dbfe8;
    border-color: #6dbfe8;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(109, 191, 232, 0.3);
}

.download-card:hover i {
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .page-content-section { padding: 40px 0; }
    .downloads-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 14px;
    }
}

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