main section {
    margin-bottom: 3rem;
}

main h2 {
    margin-bottom: 1.5rem;
}

/* Списки в секциях */
main ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Стили для первой секции - current_team */
main section:first-of-type li {
    flex: 1 1 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

main section:first-of-type li img {
    width: 280px;
    height: 430px;
    object-fit: cover;   /* Обрезка и сохранение пропорций */
    object-position: center; /* Центрирование обрезки */
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* Стили для второй секции - presidents */
main section:last-of-type li {
    flex: 1 1 160px;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

main section:last-of-type li img {
    width: 160px;
    height: 210px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    main ul {
        flex-direction: column;
        align-items: center;
    }

    main section:first-of-type li,
    main section:last-of-type li {
        max-width: 100%;
        width: auto;
    }

    main section:first-of-type li img {
        width: 100%;
        height: auto;
        aspect-ratio: 280 / 430;
    }

    main section:last-of-type li img {
        width: 100%;
        height: auto;
        aspect-ratio: 160 / 210;
    }
}

/* Текстовые элементы */
main p {
    margin: 0.3rem 0;
    color: #000;
}