
    /* SECTION */
    #researchs {
        background: #f5f7fb;
        padding: 60px 0;
    }

    /* HEADER */
    .section-header h2 {
        font-family: 'Russo One', sans-serif;
        font-size: 22px;
        color: #175885;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .section-header hr {
        width: 80px;
        border: 1px solid #175885;
        margin: 15px auto 40px;
    }

    /* CARD */
    .research-card {
        background: #ffffff;
        border-radius: 6px;
        padding: 22px 22px 18px;
        margin-bottom: 30px;
        min-height: 240px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        transition: all .3s ease;
        position: relative;
    }

    /* Accent bar */
    .research-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #175885;
        border-radius: 6px 6px 0 0;
    }

    .research-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    }

    /* TITLE */
    .research-card h4 {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    /* DESCRIPTION */
    .research-card p {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 15px;
    }

    /* LINK */
    .research-card a {
        font-size: 13px;
        font-weight: 600;
        color: #175885;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
    }

    .research-card a:hover {
        color: #0d3c5f;
    }

    /* BUTTON */
    .research-btn {
        margin-top: 10px;
        padding: 10px 32px;
        background: #175885;
        border: none;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .research-btn:hover {
        background: #0d3c5f;
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .research-card {
            min-height: initial;
        }
    }
