.education-files-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.education-files-grid .toollink {
    text-decoration: none;
    color: inherit;
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
}

@media (max-width: 992px) {
    .education-files-grid .toollink {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .education-files-grid .toollink {
        flex: 0 0 100%;
    }
}

.education-files-grid .card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.education-files-grid .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.education-files-grid .card-inner {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.education-files-grid .header1 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}

.education-files-grid .header1 span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #0073aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.education-files-grid .dl-icon {
    flex-shrink: 0;
}

.education-files-grid .download-svg-icon {
    width: 24px;
    height: 24px;
    color: #0073aa;
}

.education-files-error {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
}
