.apb-promo-box {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: clamp(18px, 3vw, 30px);
    margin: 24px 0;
    box-sizing: border-box;
    border-radius: 16px;
    overflow: hidden;
    background: var(--apb-bg);
    color: var(--apb-text);
}

.apb-promo-image {
    flex: 0 0 38%;
    width: 38%;
    min-width: 220px;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    align-self: center;
    overflow: hidden;
    border-radius: 12px;
    line-height: 0;
}

.apb-promo-image a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.apb-promo-image img {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
}

.apb-promo-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.apb-promo-title {
    margin: 0 0 12px;
    color: inherit;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1.15;
}

.apb-promo-description,
.apb-promo-description p { color: inherit; }
.apb-promo-description { font-size: 1rem; line-height: 1.65; }
.apb-promo-description p:first-child { margin-top: 0; }
.apb-promo-description p:last-child { margin-bottom: 0; }

.apb-promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 18px;
    padding: 12px 22px;
    border-radius: 8px;
    background: var(--apb-button-bg);
    color: var(--apb-button-text) !important;
    text-decoration: none !important;
    font-weight: 700;
    line-height: 1.2;
    transition: transform .15s ease, opacity .15s ease;
}
.apb-promo-button:hover,
.apb-promo-button:focus { opacity: .92; transform: translateY(-1px); }

@media (max-width: 700px) {
    .apb-promo-box { display: block; padding: 16px; }
    .apb-promo-image {
        width: 100%;
        max-width: none;
        min-width: 0;
        aspect-ratio: 1 / 1;
        margin: 0 0 20px;
    }
    .apb-promo-title { font-size: 1.55rem; }
    .apb-promo-button { width: 100%; box-sizing: border-box; }
}
