.as-research-section {
    padding: 20px 0;
    background: var(--background-color);
}

.as-research-section.bg-light {
    background: #fdfdfd;
}

.as-section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.as-research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.as-grid-card {
    background: var(--background-color);
    border: 1px solid #eee;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.as-grid-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.as-grid-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    text-align: left;
}

.as-grid-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .as-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .as-research-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-content-image.order-first {
        order: -1;
    }
}

@media (max-width: 600px) {
    .as-research-grid {
        grid-template-columns: 1fr;
    }

    .as-research-section {
        padding: 60px 0;
    }
}