.sp-promo-block {
    border-radius: 16px;
    padding: 24px 28px;
    overflow: hidden;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    box-sizing: border-box;
}

.sp-promo-block__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

@media (min-width: 768px) {
    .sp-promo-block__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

.sp-promo-block__content {
    flex: 1 1 auto;
    min-width: 0;
}

.sp-promo-block__overline {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.65);
}

.sp-promo-block__headline {
    margin: 0 0 8px;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.15;
    color: #000;
}

.sp-promo-block__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
}

.sp-promo-block__aside {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.sp-promo-block__timer {
    display: flex;
    gap: 8px;
}

.sp-promo-block__timer-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 10px 12px;
    border-radius: 10px;
    background-color: var(--sp-timer-box-bg, #1a233a);
}

.sp-promo-block__timer-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--sp-timer-value-color, #f5d142);
}

.sp-promo-block__timer-label {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.2;
    color: var(--sp-timer-label-color, #9ca3af);
    text-transform: lowercase;
}

.sp-promo-block__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.sp-promo-block__cta:hover {
    opacity: 0.9;
    text-decoration: none;
}

.sp-promo-block__cta-arrow {
    font-size: 1.1em;
}

.sp-promo-block__creative {
    max-width: 420px;
}

.sp-promo-block__creative-img {
    display: block;
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .sp-promo-block {
        padding: 20px 16px;
    }

    .sp-promo-block__aside {
        width: 100%;
        justify-content: flex-start;
    }

    .sp-promo-block__creative {
        max-width: 100%;
    }
}
