/* research.css — стили раздела «Ресерчи» */

.research-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.research-card {
    border: 1px solid var(--accent, currentColor);
    overflow: hidden;
    transition: transform 0.15s;
}
.research-card:hover {
    transform: translateY(-2px);
}

.research-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.research-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.research-body {
    padding: 14px 16px;
}

.research-title {
    font-size: 1.05em;
    margin-bottom: 6px;
    color: var(--accent, inherit);
}

.research-date {
    font-size: 0.8em;
    opacity: 0.7;
    margin-bottom: 8px;
}

.research-excerpt {
    font-size: 0.9em;
    margin-bottom: 8px;
}

.research-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag {
    padding: 2px 8px;
    border: 1px solid var(--accent, currentColor);
    font-size: 0.8em;
    color: var(--accent, inherit);
}