/*==================================================
    VOICE
==================================================*/

.voice-main {
    padding: 40px 0 80px;
}

.voice-lead {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.voice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.voice-item {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 24px;

    background: var(--white);

    border: 1px solid var(--light-gray);
    border-radius: 8px;

    transition: .2s;
}

.voice-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.voice-rating {
    color: #d4a017;
    font-size: 18px;
    margin-bottom: 10px;
}

.voice-campaign {
    display: inline-block;

    margin-left: 10px;
    padding: 4px 10px;

    background: #fff3cd;
    border: 1px solid #e6c96d;
    border-radius: 20px;

    color: #8b6508;
    font-size: 12px;
    font-weight: bold;
}

.voice-name {
    margin-bottom: 6px;
    font-size: 20px;
    color: var(--main-color);
}

.voice-family {
    margin-bottom: 18px;

    color: var(--gray);
    font-size: 14px;
}

.voice-comment {
    flex: 1;

    line-height: 1.9;
}

.voice-comment p:last-child {
    margin-bottom: 0;
}

/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width:768px){

    .voice-list{

        grid-template-columns:1fr;

    }

}