.rbm-cta-port {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #0a1929;
    border: 1px solid #1e3a5f;
    border-radius: 20px;
    padding: 30px;
    color: #ffffff;
}

.rbm-cta-port__content {
    flex: 1;
}

.rbm-cta-port__heading {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.2;
    color: #ffffff;
}

.rbm-cta-port__description {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 10px 0;
    color: #b8c5d6;
}

.rbm-cta-port__description a {
    color: inherit;
    text-decoration: underline;
}

.rbm-cta-port__disclaimer {
    font-size: 12px;
    line-height: 1.4;
    margin: 0 0 20px 0;
    color: #7a8a9e;
}

.rbm-cta-port__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rbm-cta-port__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.rbm-cta-port__btn-primary {
    background: #db0a40;
    color: #ffffff;
}

.rbm-cta-port__btn-primary:hover {
    background: #b50835;
}

.rbm-cta-port__btn-secondary {
    background: transparent;
    color: #4a9ddb;
    border: 2px solid #4a9ddb;
}

.rbm-cta-port__btn-secondary:hover {
    background: #4a9ddb;
    color: #ffffff;
}

.rbm-cta-port__image-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.rbm-cta-port__image {
    width: 280px;
    height: auto;
    position: relative;
}

.rbm-cta-port__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.rbm-cta-port__price {
    position: absolute;
    top: -8px;
    right: -20px;
    background: #db0a40;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.rbm-cta-port__price-suffix {
    font-size: 12px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {
    .rbm-cta-port {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .rbm-cta-port__heading {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .rbm-cta-port__description {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .rbm-cta-port__disclaimer {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .rbm-cta-port__buttons {
        flex-direction: column;
        gap: 10px;
    }

    .rbm-cta-port__btn {
        width: 100%;
        padding: 14px 20px;
    }

    .rbm-cta-port__image-wrap {
        width: 100%;
    }

    .rbm-cta-port__image {
        width: 100%;
    }

    .rbm-cta-port__price {
        font-size: 18px;
        padding: 10px 16px;
        top: -6px;
        right: -10px;
    }
}
