.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.comments-title {
    font-size: 24px;
    color: #333;
}

.no-comments {
    font-size: 16px;
    color: #666;
}

.deck-wrap {
    overflow: hidden;
}    
.deck {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 40px auto;
}
.deck:before {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    top: -20px;
    left: 0;
    border-radius: 16px;
    background: #337AB7;
}
.card {
    position: relative;
    background-color: #BFE2FF;
    padding: 10px;
    z-index: 5;
    border-radius: 12px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
    transition: 200ms ease-in-out;
    transform: scale(0.95);
}
.card:hover {
    z-index: 7;
    transform: scale(1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}
.card:nth-of-type(even) {
    margin-top: -120px;
    margin-left: 55px;
    margin-right: -85px;
}
.card:nth-of-type(odd) {
    margin-top: -50px;
    margin-left: -40px;
    margin-right: 0;
}
.card:first-of-type {
    margin-top: 0;
    margin-left: -90px;
    margin-right: 50px;
}
.cardHeader {
    font-size: 26px;
    color: #337AB7;
    text-transform: uppercase;
    padding: 8px 10px;
    font-family: 'Roboto', sans-serif;
}
.cardBody {
    padding: 0 10px;
}
.cardBody p {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 10px;
    font-family: Verdana, sans-serif;   
}
.cardFooter {
    font-family: Verdana, sans-serif; 
    font-size: 16px;
    text-align: right;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #337AB7;  
    padding: 0 10px;
}
@media (max-width: 767px) {
    .card {
        transform: scale(1);
    }
    .card:nth-of-type(even) {
        margin-left: 40px;
        margin-right: -40px;
        margin-top: 20px;
    } 
    .card:nth-of-type(odd) {
        margin-left: -40px;
        margin-right: 40px;
        margin-top: 20px;
    }  
}
@media (max-width: 620px) {
    .card:nth-of-type(even),
    .card:nth-of-type(odd){
        margin: 20px;
    } 
}

/* Стиль заголовка комментариев */
.comments-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Стиль списка комментариев */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #eee;
}

/* Стили полей формы комментариев */
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 15px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
}

.comment-form-comment textarea {
    height: 100px;
}

/* Стиль кнопки отправки формы */
.form-submit input {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.form-submit input:hover {
    background-color: #005177;
}

/* Стиль сообщения о закрытии комментариев */
.no-comments {
    font-style: italic;
}

@media (max-width: 600px) {
    .comment-form-author input,
    .comment-form-email input,
    .comment-form-url input,
    .comment-form-comment textarea {
        padding: 5px;
    }

    .form-submit input {
        padding: 5px 10px;
    }
}