/* ======== Общие базовые стили ======== */

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #222;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
}

/* ======== Заголовки ======== */

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* ======== Текст ======== */

.text {
    max-width: 800px;
    text-align: justify;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ======== Контейнер для нескольких картинок ======== */

.images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* ======== Изображения ======== */

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

/* ======== Аудио блок ======== */

.audio-block {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.audio-block label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

audio {
    width: 100%;
}

/* ======== Главная страница: сетка и карточки ======== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 1000px;
}

a.item {
    display: block;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: #222;
    transition: transform 0.2s, box-shadow 0.2s;
}

a.item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}