/* Блок «Материалы семинара»: сетка карточек с превью и ссылкой на скачивание */

.materials-block {
    text-align: center;
    padding: 40px 0;
}

.materials__content {
    max-width: 960px;
    margin: 0 auto;
}

.materials__content p {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.materials__hint {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

/* Адаптивная сетка: столько колонок, сколько влезает от 260px */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    text-align: left;
    margin-top: 8px;
}

.material-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px var(--shadow);
    display: flex;
    flex-direction: column;
}

.material-card__thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: var(--bg-soft);
}

/* Заглушка под PDF/файл без картинки-превью */
.material-card__pdf,
.material-card__file {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-muted);
    background: linear-gradient(135deg, var(--primary-light), #dfe0e6);
}

.material-card__body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.material-card__title {
    font-size: 18px;
    margin: 0;
    color: var(--primary-dark);
    line-height: 1.25;
}

.material-card__desc {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.45;
    flex: 1;
}

.material-card__dl {
    align-self: flex-start;
    margin-top: 8px;
    text-decoration: none;
}
