.hpnewssps {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}

.hpnews {
    width: 100% !important;
}

.manual-news-card {
    width: 100%;
    max-width: none;

    margin: 0;

    background: #ffffff;

    border: 1px solid #e5e5e5;
    border-left: 7px solid #126cb5;

    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);

    overflow: hidden;

    font-size: 16px;
    line-height: 1.5;
}

.manual-news-card-header {
    padding: 16px 22px 12px;

    background: #f8f8f8;

    border-bottom: 1px solid #eeeeee;
}

.manual-news-card-label {
    display: inline-block;

    margin-bottom: 8px;
    padding: 4px 9px;

    background: #126cb5;
    color: #ffffff;

    font-size: 12px;
    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: .04em;

    border-radius: 3px;
}

.manual-news-card-title {
    margin: 0;

    color: #222222;

    font-size: 23px;
    line-height: 1.25;
}

.manual-news-card-body {
    padding: 18px 22px 22px;

    color: #333333;
}

.manual-news-card-body p {
    margin: 0 0 14px;
}

.manual-news-card-body ul {
    margin-top: 8px;
    margin-bottom: 14px;
}

.manual-news-table {
    width: 100%;

    margin-top: 10px;

    border-collapse: collapse;
}

.manual-news-table th,
.manual-news-table td {
    padding: 9px 8px;

    border-bottom: 1px solid #eeeeee;

    text-align: left;
}

.manual-news-table th {
    width: 45%;

    color: #222;

    font-weight: bold;
}

.manual-news-closed {
    color: #126cb5;

    font-weight: bold;
}

.manual-news-button {
    display: inline-block;

    margin-top: 6px;
    margin-right: 6px;

    padding: 10px 18px;

    background: #126cb5;

    color: #fff !important;

    text-decoration: none !important;

    font-weight: bold;

    border-radius: 5px;

    transition:
        background .2s ease,
        transform .2s ease;
}

.manual-news-button:hover {
    background: #0f5a98;

    color: #ffffff !important;

    transform: translateY(-1px);
}

.manual-news-card-important {
    border-left-color: #d97706;
}

.manual-news-card-important .manual-news-card-header {
    background: #fff7ed;
}

.manual-news-card-important .manual-news-card-label {
    background: #d97706;

    color: #fff;
}

.manual-news-card-important .manual-news-card-title {
    color: #7c2d12;
}

.manual-news-card-important strong {
    color: #b45309;
}

.manual-news-card-important .manual-news-button {
    background: #d97706;
}

.manual-news-card-important .manual-news-button:hover {
    background: #b45309;
}

@media only screen and (max-width: 600px) {

    .hpnewssps {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .manual-news-card {
        border-left-width: 6px;

        font-size: 15px;
    }

    .manual-news-card-header,
    .manual-news-card-body {
        padding-left: 15px;
        padding-right: 15px;
    }

    .manual-news-card-title {
        font-size: 20px;
    }

    .manual-news-table th,
    .manual-news-table td {
        display: block;

        width: 100%;

        padding: 7px 0;
    }

    .manual-news-table th {
        padding-bottom: 0;

        border-bottom: none;
    }

    .manual-news-table td {
        padding-top: 2px;
    }

}