.price-list-page {
    padding-bottom: 60px;
}

.price-list-page__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin: 25px 0 30px;
}

.price-list-page__head h1 {
    margin: 0 0 12px;
}

.price-list-page__head p {
    max-width: 760px;
    margin: 0;
    color: #5d6672;
    font-size: 17px;
    line-height: 1.55;
}

.price-list-page__updated {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #51606f;
    font-size: 14px;
}

.price-list-page h2 {
    margin: 36px 0 18px;
}

.price-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.price-list-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
    padding: 18px 20px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fff;
    color: #17212b;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.price-list-card:hover {
    border-color: #1d4f91;
    box-shadow: 0 8px 24px rgba(24, 48, 78, .1);
    color: #17212b;
    transform: translateY(-1px);
}

.price-list-card span {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-list-card strong {
    font-size: 17px;
}

.price-list-card small {
    color: #6c7784;
}

.price-list-card b {
    color: #1d4f91;
    font-size: 14px;
}

.price-list-card--main {
    min-height: 100px;
    border: 0;
    background: #1d4f91;
    color: #fff;
}

.price-list-card--main:hover {
    background: #173f74;
    color: #fff;
}

.price-list-card--main strong {
    font-size: 21px;
}

.price-list-card--main small,
.price-list-card--main b {
    color: #fff;
}

.price-list-page__notice {
    margin-top: 30px;
    padding: 18px 20px;
    border-left: 3px solid #1d4f91;
    background: #f6f8fa;
    color: #596573;
    line-height: 1.5;
}

@media (max-width: 720px) {
    .price-list-page__head {
        display: block;
    }

    .price-list-page__updated {
        display: inline-block;
        margin-top: 18px;
    }

    .price-list-grid {
        grid-template-columns: 1fr;
    }

    .price-list-card {
        align-items: flex-start;
    }
}
