.marketing-entry {
    max-width: 760px;
    margin: 40px auto;
    padding: 32px 28px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(27, 39, 94, 0.08);
    border: 1px solid #e7ebf5;
}
.marketing-entry__title {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    color: #1b275e;
    font-weight: 700;
}
.marketing-entry__message {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.5;
    color: #2f3e78;
}
.marketing-entry__label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.marketing-entry__label_success {
    background: #e7f8ee;
    color: #1d8e4a;
}
.marketing-entry__label_error {
    background: #fcebec;
    color: #bf2030;
}
.marketing-entry__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.marketing-entry__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    background: #315efb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease;
}
.marketing-entry__button:hover {
    background: #2147cf;
    color: #fff;
}