﻿.listView {
    width: auto;
    border: 1px solid #d1d1d1;
    background-color: #fff;
    margin: 10px;
    box-sizing: border-box;
}

    .listView .title {
        width: 100%;
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #d40511;
        text-align: center;
        margin: 7px 0 14px;
    }

@media (max-width: 767px) {
    .listView .title {
        font-size: 18px;
    }
}

.listView .link {
    background-color: #f2f2f2;
    transition: background-color 0.2s;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    text-align: center;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    color: #323232;
    display: block;
    text-decoration: none;
}

    .listView .link:hover {
        background-color: #e8e8e8;
        color: #d40511;
    }
