/* Declarations Standalone Safe Page */
.declarations-standalone-page {
    background: #f5f7fb;
    padding-top: 76px;
    padding-bottom: 96px;
}

.declarations-standalone-page .container {
    max-width: 1180px;
}

.dec-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px;
}

.dec-head span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(231,25,63,.1);
    color: #e7193f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.dec-head h2 {
    color: #071b43;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 950;
    margin: 0 0 12px;
}

.dec-head p {
    color: #53627a;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.dec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.dec-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(7,27,67,.06);
    box-shadow: 0 18px 46px rgba(7,27,67,.08);
    transition: all .25s ease;
}

.dec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 72px rgba(7,27,67,.15);
}

.dec-image {
    display: block;
    height: 245px;
    background: #eaf0f7;
    overflow: hidden;
    text-decoration: none !important;
}

.dec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.dec-card:hover .dec-image img {
    transform: scale(1.06);
}

.dec-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b43;
    font-weight: 950;
    letter-spacing: .08em;
}

.dec-body {
    padding: 26px 28px 30px;
}

.dec-body h3 {
    margin: 0 0 14px;
    color: #071b43;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 850;
}

.dec-body h3 a {
    color: inherit !important;
    text-decoration: none !important;
}

.dec-body h3 a:hover {
    color: #e7193f !important;
}

.dec-body p {
    color: #53627a;
    font-size: 15px;
    line-height: 1.72;
    margin: 0 0 22px;
}

.dec-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #071b43;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(7,27,67,.14);
    transition: all .24s ease;
}

.dec-readmore::after {
    content: "→";
}

.dec-readmore:hover {
    background: #e7193f;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(231,25,63,.24);
}

@media(max-width: 991.98px) {
    .dec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 575.98px) {
    .dec-grid {
        grid-template-columns: 1fr;
    }

    .dec-head h2 {
        font-size: 30px;
    }
}
