/* ============================================================================
   trading-cta.css
   ----------------------------------------------------------------------------
   The Trading banner on /deals. Loaded AFTER offering.css, which this file does
   not modify.

   One new class family - op-tradingcta. Nothing existing is overridden.
   ============================================================================ */
.op-tradingcta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.25rem 0 0;
    padding: 1rem 1.25rem;
    border: 1px solid var(--op-border, #E2E8F0);
    border-radius: var(--op-radius, 8px);
    text-decoration: none;
    color: inherit;
    background: var(--op-surface, #F8FAFC);
    transition: border-color .15s ease, background .15s ease;
}
.op-tradingcta:hover {
    border-color: var(--op-accent, #16A34A);
    background: #fff;
}
.op-tradingcta > div {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}
.op-tradingcta strong {
    font-size: 1.05rem;
}
.op-tradingcta span {
    font-size: .9rem;
    color: var(--op-muted, #64748B);
}
/* Reads as the action rather than as more description, without being a button -
   the whole row is the target, and a nested button inside a link is neither. */
.op-tradingcta__go {
    flex: 0 0 auto;
    font-weight: 600;
    font-size: .9rem;
    color: var(--op-accent, #16A34A);
}
/* Two cards side by side on a wide screen, stacked on a narrow one. Flex rather
   than grid: the two are equal in weight and neither needs to line up with
   anything outside the row. */
.op-ctarow {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.op-ctarow .op-tradingcta {
    flex: 1 1 0;
    margin-top: 0;
}

@media (max-width: 720px) {
    .op-ctarow {
        flex-direction: column;
        gap: .75rem;
    }
}

@media (max-width: 640px) {
    .op-tradingcta {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }
}
