/* Research Page Styles */

/* Page Header */
/* Page Header styles removed - inheriting from modern.css */

/* Research Cards */
.research-section {
    margin-bottom: 30px;
}

.research-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.research-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.research-content {
    flex: 1;
}

.research-content h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.research-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.research-topics {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}

.research-topics li {
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .research-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .research-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .research-topics {
        grid-template-columns: 1fr;
    }
}