﻿

/* ========================================
   КОНТЕЙНЕР С КАРТОЧКАМИ
   ======================================== */

.arenda-containers {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    box-sizing: border-box;
}


/* ========================================
   КАРТОЧКА
   ======================================== */

.arenda-card {
    width: 100%;
    min-width: 0;

    background: #f3f3f3;

    border-radius: 20px;
    overflow: hidden;

    box-sizing: border-box;
}


/* ========================================
   ОБЛАСТЬ ИЗОБРАЖЕНИЯ
   ======================================== */

/*
   От серого блока:
   сверху — 70px
   слева — 45px
   справа — 45px
*/

.arenda-card__image {
    position: relative;

    width: 100%;

    padding: 70px 45px 0;

    box-sizing: border-box;

    line-height: 0;
}


/* PNG занимает всю доступную ширину 

.arenda-card__image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}*/


/* ========================================
   ОРАНЖЕВЫЙ КРУГ
   ======================================== */

.arenda-card__volume {
    position: absolute;

    top: 32px;
    left: 25px;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d49700;
    color: #ffffff;

    font-family: inherit;
    font-size: 22px;
    font-weight: 400;

    line-height: 1;
    white-space: nowrap;

    box-sizing: border-box;

    z-index: 2;
}


/* ========================================
   НИЖНЯЯ ЧАСТЬ КАРТОЧКИ
   ======================================== */

/*
   Цена и кнопка имеют:
   слева — 60px
   справа — 60px
*/

.arenda-card__bottom {
    width: 100%;

    padding: 20px 60px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;
}


/* Цена */

.arenda-card__price {
    flex: 1 1 auto;
    min-width: 0;

    color: #494949;

    font-family: inherit;
    font-size: 20px;
    font-weight: 400;

    line-height: 1.2;
}


/*
   Стили самой кнопки не задаем,
   чтобы использовалось существующее
   оформление кнопки сайта.
*/

.arenda-card__button {
    flex: 0 0 auto;

    white-space: nowrap;
    text-decoration: none;
}


/* ========================================
   ПЛАНШЕТ
   ======================================== */

@media (max-width: 1655px) {

    .arenda-containers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .arenda-card__image {
        padding: 50px 30px 0;
    }

    .arenda-card__volume {
        top: 20px;
        left: 15px;

        width: 60px;
        height: 60px;

        font-size: 19px;
    }

    .arenda-card__bottom {
        padding: 15px 30px 25px;
    }

    .arenda-card__price {
        font-size: 18px;
    }
}


/* ========================================
   МОБИЛЬНЫЕ
   ======================================== */

@media (max-width: 900px) {

    .arenda-containers {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .arenda-card__image {
        padding: 40px 25px 0;
    }

    .arenda-card__volume {
        top: 15px;
        left: 15px;

        width: 55px;
        height: 55px;

        font-size: 18px;
    }

    .arenda-card__bottom {
        padding: 15px 25px 25px;

        gap: 15px;
    }

    .arenda-card__price {
        font-size: 18px;
    }
}


/* ========================================
   МАЛЕНЬКИЕ ТЕЛЕФОНЫ
   ======================================== */

@media (max-width: 480px) {

    .arenda-card {
        border-radius: 16px;
    }

    .arenda-card__image {
        padding: 35px 20px 0;
    }

    .arenda-card__volume {
        top: 12px;
        left: 12px;

        width: 50px;
        height: 50px;

        font-size: 17px;
    }

    .arenda-card__bottom {
        padding: 12px 20px 20px;

        flex-wrap: wrap;
    }
 .arenda-card__price {
        font-size: 17px;
    }
}
