.grants-section {
    max-width: 1400px!important;
    margin: 0 auto;
    padding: 2rem;
}

.grants-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #003366;
}

.grants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.grant-card {
    background: #bbc2ee;
    border-radius: 12px;
    padding: 0.1875rem 1.2rem;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    transition: all .3s ease;
    border-top: none;
}

.grant-card a {
    font-size: 15px!important;
}

.grant-card:hover {
    transform: translateY(-4px);
    
}

.grant-name, .grant-decription {
    line-height: 20px;
}
.grant-name {
    color: #132153;
    font-weight: 600;
    margin-bottom: 0.1875rem ;
}

.grant-description {
    margin-bottom: 0.1875rem ;
    color: #132153;
}

.grant-card a {
    color: #0066cc;
    text-decoration: none;
    word-break: break-word;
}

.grant-card a:hover {
    text-decoration: none;
    color: #fff;

}

@media (max-width: 768px) {
    .grants-section {
        padding: 1rem;
    }

    .grant-card {
        padding: 1.25rem;
    }
}