/* =========================================================
   RESEARCH PAGE
========================================================= */

.research-page .section-head {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.research-hero {
    text-align: center;
}

.research-hero .container {
    max-width: 850px;
}

.research-grid {
    margin-top: 50px;
}

.research-card {
    display: block;
    height: 100%;

    padding: 32px;

    color: inherit;
    text-decoration: none;

    background: #ffffff;

    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;

    box-shadow: 0 12px 30px rgba(15,23,42,.05);

    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

    border-color: rgba(37,99,235,.24);

    box-shadow: 0 18px 42px rgba(15,23,42,.09);
}

.research-card h3 {
    margin: 0 0 14px;

    color: #0f172a;

    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.research-card p {
    margin: 0;

    color: #64748b;

    font-size: 15px;
    line-height: 1.75;
}

.research-card::after {
    content: "→";

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 22px;

    width: 38px;
    height: 38px;

    color: #ffffff;
    background: #2563eb;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;

    transition: transform .25s ease, background-color .25s ease;
}

.research-card:hover::after {
    transform: translateX(4px);
    background: #1d4ed8;
}

/* =========================================================
   RESPONSIVE
========================================================= */

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

    .research-card {
        padding: 26px;
    }
}
