/* =========================================================
   СТРАНИЦА БИБЛИОТЕКИ НАГРАД
   ========================================================= */

.awards-page {
    padding: 34px 0 160px;
}

.awards-page__container {
    width: min(calc(100% - 80px), 1400px);
    margin: 0 auto;
}


/* =========================================================
   ЗАГОЛОВОК СТРАНИЦЫ
   ========================================================= */

.awards-page__title {
    margin: 0 0 38px;

    color: #0079c8;

    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.08;
}


/* =========================================================
   СПИСОК НАГРАД
   ========================================================= */

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 52px;
}


/* =========================================================
   ОДНА НАГРАДА
   ========================================================= */

.award-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;

    width: 100%;
}


/* =========================================================
   ИЗОБРАЖЕНИЕ НАГРАДЫ

   Никакой рамки, фона и видимого блока вокруг изображения нет.
   ========================================================= */

.award-card__image-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    width: 260px;
    height: 350px;

    overflow: hidden;

    background: transparent;
    border: none;
    border-radius: 0;
}

.award-card__image {
    display: block;

    width: 100%;
    height: 100%;

    padding: 0;

    object-fit: contain;
    object-position: center top;
}

.award-card__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 160px;

    color: #999999;

    font-size: 15px;
    line-height: 1.3;
    text-align: center;
}


/* =========================================================
   ТЕКСТОВАЯ ЧАСТЬ НАГРАДЫ
   ========================================================= */

.award-card__content {
    min-width: 0;
    padding-top: 4px;
}

.award-card__title {
    margin: 0;

    color: #111111;

    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
}

.award-card__annotation {
    max-width: 1050px;
    margin-top: 6px;

    color: #0079c8;

    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;

    overflow-wrap: break-word;
}


/* =========================================================
   КНОПКА
   ========================================================= */

.award-card__button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 174px;
    height: 46px;
    margin-top: 34px;

    color: #ffffff;
    background-color: #0782c6;
    border-radius: 25px;

    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.award-card__button:hover {
    color: #ffffff;
    background-color: #006eae;
    transform: translateY(-1px);
}

.award-card__button:focus-visible {
    outline: 3px solid rgba(0, 121, 200, 0.3);
    outline-offset: 3px;
}


/* =========================================================
   ПУСТОЙ СПИСОК
   ========================================================= */

.awards-empty {
    padding: 35px 0;
}

.awards-empty__text {
    margin: 0;

    color: #777777;

    font-size: 18px;
}


/* =========================================================
   НЕБОЛЬШИЕ НОУТБУКИ
   ========================================================= */

@media (max-width: 1200px) {

    .awards-page__container {
        width: min(calc(100% - 60px), 1100px);
    }

    .award-card {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 24px;
    }

    .award-card__image-wrapper {
        width: 230px;
        height: 310px;
    }

    .award-card__title {
        font-size: 28px;
    }

    .award-card__annotation {
        font-size: 20px;
    }
}


/* =========================================================
   ПЛАНШЕТ
   ========================================================= */

@media (max-width: 900px) {

    .awards-page {
        padding-top: 26px;
        padding-bottom: 120px;
    }

    .awards-page__container {
        width: calc(100% - 48px);
    }

    .awards-page__title {
        margin-bottom: 32px;

        font-size: 44px;
    }

    .awards-list {
        gap: 42px;
    }

    .award-card {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 20px;
    }

    .award-card__image-wrapper {
        width: 190px;
        height: 260px;
    }

    .award-card__title {
        font-size: 24px;
    }

    .award-card__annotation {
        font-size: 18px;
        line-height: 1.3;
    }

    .award-card__button {
        width: 150px;
        height: 40px;
        margin-top: 24px;

        font-size: 16px;
    }
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 700px) {

    .awards-page {
        padding: 22px 0 90px;
    }

    .awards-page__container {
        width: calc(100% - 30px);
    }

    .awards-page__title {
        margin-bottom: 30px;

        font-size: 32px;
        line-height: 1.1;
    }

    .awards-list {
        gap: 34px;
    }

    .award-card {
        grid-template-columns: 116px minmax(0, 1fr);
        gap: 12px;
    }

    .award-card__image-wrapper {
        width: 116px;
        height: 156px;
    }

    .award-card__content {
        padding-top: 0;
    }

    .award-card__title {
        font-size: 17px;
        line-height: 1.2;
    }

    .award-card__annotation {
        display: -webkit-box;

        margin-top: 7px;
        overflow: hidden;

        font-size: 13px;
        line-height: 1.25;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .award-card__button {
        width: 112px;
        height: 29px;
        margin-top: 16px;

        border-radius: 16px;

        font-size: 13px;
    }
}


/* =========================================================
   ОЧЕНЬ УЗКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 400px) {

    .awards-page__container {
        width: calc(100% - 24px);
    }

    .awards-page__title {
        font-size: 29px;
    }

    .award-card {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 10px;
    }

    .award-card__image-wrapper {
        width: 104px;
        height: 142px;
    }

    .award-card__title {
        font-size: 15px;
    }

    .award-card__annotation {
        font-size: 12px;

        -webkit-line-clamp: 4;
    }

    .award-card__button {
        width: 104px;
        height: 27px;
        margin-top: 13px;

        font-size: 12px;
    }
}