.research-hero {
            padding: 160px 0 48px;
            text-align: center;
        }

        .research-hero__title {
            margin: 0;
            font-weight: 600;
            font-size: clamp(40px, 6vw, 64px);
            line-height: 1.05;
            letter-spacing: 0.01em;
            text-transform: uppercase;
            color: #4a5866;
        }

        .research-hero__text {
            margin: 20px auto 0;
            max-width: 720px;
            font-size: 16px;
            line-height: 1.6;
            color: #616d79;
        }

        .research-hero__actions {
            margin-top: 32px;
        }

        .research-list {
            padding: 0 0 100px;
        }

        .research-list__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .research-card {
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 32px;
            border-radius: 16px;
            background: #fff;
            box-shadow: 0 0 0 1px transparent;
            transition: box-shadow 0.2s ease, transform 0.28s ease;
        }

        .research-card:hover {
            box-shadow: 0 0 0 1px #314251;
            transform: translateY(-2px);
        }

        .research-card__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .research-card__tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 999px;
            border: 1px solid rgba(31, 201, 210, 0.25);
            color: #1fc8d2;
            font-size: 12px;
            font-weight: 500;
            line-height: 1.4;
        }

        .research-card__venue {
            margin: 20px 0 0;
            font-size: 14px;
            line-height: 1.4;
            color: #949da6;
        }

        .research-card__title {
            margin: 16px 0 0;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.35;
            color: #1d2f3f;
        }

        .research-card__excerpt {
            margin: 8px 0 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-size: 14px;
            line-height: 1.6;
            color: #7b858f;
        }

        .research-card__footer {
            margin-top: auto;
            padding-top: 16px;
        }

        .research-card__authors {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            color: #949da6;
        }

        .research-card__authors strong {
            font-weight: 500;
            color: #616d79;
        }

        .research-card__link-row {
            margin-top: 16px;
            padding-top: 20px;
            border-top: 1px solid rgba(148, 157, 166, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #1d2f3f;
            transition: color 0.2s ease;
        }

        .research-card:hover .research-card__link-row {
            color: #616d79;
        }

        .research-card__link-row svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }

        .research-card:hover .research-card__link-row svg {
            transform: translateX(4px);
        }

        .research-card__hit {
            position: absolute;
            inset: 0;
            z-index: 2;
            border-radius: 16px;
        }

        .research-list__more {
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }

        .button--outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 10px 24px;
            border-radius: 1000px;
            border: 1px solid #314251;
            background: transparent;
            color: #314251;
            font-family: Lato, sans-serif;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
        }

        .button--outline:hover {
            background: #314251;
            color: #fff;
            transform: translateY(-2px);
        }

        .button--outline svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 900px) {
            .research-list__grid {
                grid-template-columns: 1fr;
            }

            .research-card {
                padding: 24px;
            }

            .research-hero {
                padding-top: 140px;
            }

            .research-hero__text {
                font-size: 15px;
            }
        }
