#comments div.button {
	text-align:center;
    background: #ffffff;
    color: #D92625;
    font-size:16px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 15px 15px 15px;
	border:2px solid #F0A8A8;
    width:150px;
}

#comments div.button:hover{

        background: #D92625;
    color:#ffffff; 
    
} 
 
*,
*::before,
*::after {
    box-sizing: border-box;
}
 
#content img {
    display: block;
    max-width: 100%;
    height: auto;

    border: 1px solid #d8d8d8;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
#comments {
    width: 100%;
    margin: 20px auto;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;

    text-align: left;
}

/* Карточка отзыва */

#comments section {
    width: 100%;
    min-width: 0;
    min-height: 275px;
    margin: 0;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 2px solid #a8a8a8;
    border-radius: 20px;
    background: #fff;

    overflow: hidden;
}

/* Внутренний блок текста */

#comments section > div {
    padding: 0;
}

#comments section h3 {
    margin: 0;
    color: #464a53;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

#comments section .hider {
    padding: 10px 0;
    color: #a8a8a8;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

#comments section p {
    margin: 0;
    color: #464a53;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

/* Кнопка Подробнее */

#comments section button {
    width: 160px;
    min-height: 38px;
    margin-top: 15px;
    padding: 8px 15px;
    align-self: flex-start;

    border: 1px solid #a8a8a8;
    border-radius: 8px;
    color: #403f45;
    background: #efefef;

    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease;
}

#comments section button:hover {
    border-color: #403f45;
    color: #fff;
    background: #403f45;
}

/* Планшет */

@media (max-width: 800px) {
    #content {
        padding: 30px 15px 20px;
    }

    #content h1 {
        font-size: 25px;
    }

    #comments {
        gap: 15px;
    }
}

/* Телефон */

@media (max-width: 600px) {
    #content {
        padding: 25px 10px 20px;
    }

    #content h1 {
        margin-bottom: 25px;
        font-size: 21px;
    }

    #comments {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #comments section {
        min-height: 275px;
    }
}

/* Маленький телефон */

@media (max-width: 400px) {
    #comments section {
        min-height: 300px;
        padding: 15px;
    }

    #comments section h3 {
        font-size: 17px;
    }

    #comments section p,
    #comments section .hider {
        font-size: 14px;
    }
}