.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
    width: 100%;
}

.research-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #0288d1;
    transition: transform 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
}

.research-card h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.3em;
}

.research-card p {
    color: #666;
    margin: 10px 0;
    line-height: 1.5;
}

.research-card a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0288d1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.research-card a:hover {
    background-color: #01579b;
}

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