/* ==========================
   TOT Results Page Styles
   ========================== */

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

/* --- 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.95rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(109, 191, 232, 0.08);
}

.download-card i {
    font-size: 2.2rem;
    color: #6dbfe8;
    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;
    }
}