/*
 * Casino Tables — public styles.
 * Full desktop card design implementation.
 */

/* ── Variables ───────────────────────────────────────────────────────────── */

.cta-tables-table {
    --ct-accent:       #E8132A;
    --ct-accent-hover: #c41124;
    --ct-card-bg:      #ffffff;
    --ct-text:         #111827;
    --ct-text-2:       #374151;
    --ct-text-3:       #6B7280;
    --ct-border:       #E5E7EB;
    --ct-radius:       14px;
    --ct-shadow:       0 2px 16px rgba(0, 0, 0, .07);
    --ct-star:         #F59E0B;
    --ct-green:        #16A34A;
    --ct-font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Table wrapper ───────────────────────────────────────────────────────── */

.cta-tables-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: var(--ct-font);
    font-size: 14px;
    color: var(--ct-text);
    line-height: 1.5;
}

/* Homepage-only: pull the table out by 20px (added via shortcode on the front page).
   Keep the bottom margin at 0 so following content isn't pulled up behind the table. */
.cta-tables-table--home {
    margin: -20px -20px 0;
}

/* ── Operator card ───────────────────────────────────────────────────────── */

.cta-tables-operator {
    position: relative;
    background: var(--ct-card-bg);
    border-radius: var(--ct-radius);
    box-shadow: var(--ct-shadow);
    border: 1px solid var(--ct-border);
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cta-tables-operator:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .11);
    transform: translateY(-1px);
}

/* ── Badge row ───────────────────────────────────────────────────────────── */

.cta-tables-operator__top {
    padding: 14px 20px 0;
    min-height: 40px;
}

.cta-tables-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FEF9C3;
    color: #78350F;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #FDE68A;
}

/* ── Main body ───────────────────────────────────────────────────────────── */

.cta-tables-operator__body {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 20px 20px 16px;
}

/* ── Column base ─────────────────────────────────────────────────────────── */

.cta-tables-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.cta-tables-col:first-child {
    padding-left: 0;
}

.cta-tables-col:last-child {
    padding-right: 0;
}

/* ── Logo column ─────────────────────────────────────────────────────────── */

.cta-tables-col--logo {
    flex: 0 0 180px;
    align-items: center;
    border-right: 1px solid var(--ct-border);
    padding-right: 24px;
    gap: 12px;
}

.cta-tables-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cta-tables-logo img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Star rating */

.cta-tables-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cta-star-rating {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .cta-star-rating {
        font-size: 20px;
    }
}

.cta-star-underlay {
    color: #D1D5DB;
}

.cta-star-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--ct-star);
}

.cta-tables-rating__score {
    font-size: 14px;
    font-weight: 700;
    color: var(--ct-text);
    margin: 0;
}

.cta-tables-rating__label {
    font-size: 11px;
    color: var(--ct-text-3);
    margin: 0;
}

/* ── Bonus column ────────────────────────────────────────────────────────── */

.cta-tables-col--bonus {
    flex: 1 1 0;
    gap: 6px;
    padding-left: 28px;
    border-right: 1px solid var(--ct-border);
    padding-right: 28px;
    align-items: center;
    text-align: center;
}

.cta-tables-offer-badge {
    display: inline-block;
    background: #FFE4E6;
    color: #BE123C;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #FECDD3;
    width: fit-content;
}

.cta-tables-bonus__main {
    font-size: 26px;
    font-weight: 800;
    color: var(--ct-text);
    margin: 0;
    line-height: 1.2;
}

.cta-tables-bonus__sub {
    font-size: 24px;
    font-weight: 700;
    color: var(--ct-accent);
    margin: 0;
    line-height: 1.3;
}

.cta-tables-divider {
    border: none;
    border-top: 1px solid var(--ct-border);
    margin: 6px 0;
}

.cta-tables-bonus__wager {
    font-size: 13px;
    color: var(--ct-text-3);
    margin: 0;
}

.cta-tables-bonus__desc {
    font-size: 13px;
    color: var(--ct-text-2);
    margin: 6px 0 0;
    line-height: 1.6;
}

/* ── Stats column ────────────────────────────────────────────────────────── */

.cta-tables-col--stats {
    flex: 0 0 210px;
    gap: 10px;
    border-right: 1px solid var(--ct-border);
    padding-right: 24px;
}

.cta-tables-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ct-text-2);
    font-size: 13px;
}

.cta-tables-stat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f4f4f5;
}

.cta-tables-stat__icon::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-color: #52525b;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* Calendar — Established */
.cta-tables-stat__icon--calendar::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

/* Credit card — Min Deposit */
.cta-tables-stat__icon--card::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E");
}

/* Clock — Payout Speed */
.cta-tables-stat__icon--clock::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

/* Gamepad — Games */
.cta-tables-stat__icon--gamepad::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Cline x1='6' y1='12' x2='10' y2='12'/%3E%3Cline x1='8' y1='10' x2='8' y2='14'/%3E%3Ccircle cx='15' cy='13' r='.75' fill='black'/%3E%3Ccircle cx='18' cy='11' r='.75' fill='black'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Cline x1='6' y1='12' x2='10' y2='12'/%3E%3Cline x1='8' y1='10' x2='8' y2='14'/%3E%3Ccircle cx='15' cy='13' r='.75' fill='black'/%3E%3Ccircle cx='18' cy='11' r='.75' fill='black'/%3E%3C/svg%3E");
}

/* Shield-check — License */
.cta-tables-stat__icon--shield::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E");
}

.cta-tables-stat strong {
    font-weight: 600;
    color: var(--ct-text);
}

/* ── CTA column ──────────────────────────────────────────────────────────── */

.cta-tables-col--cta {
    flex: 0 0 170px;
    gap: 10px;
    padding-left: 24px;
    align-items: stretch;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.cta-tables-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
    border: 2px solid transparent;
    text-align: center;
}

.cta-tables-btn--primary {
    background: var(--ct-accent);
    color: #fff;
    border-color: var(--ct-accent);
}

.cta-tables-btn--primary:hover {
    background: var(--ct-accent-hover);
    border-color: var(--ct-accent-hover);
    color: #fff;
    text-decoration: none;
}

.cta-tables-btn--secondary {
    background: transparent;
    color: var(--ct-accent);
    border-color: var(--ct-accent);
}

.cta-tables-btn--secondary:hover {
    background: #FFF1F2;
    text-decoration: none;
    color: var(--ct-accent);
}

/* ── More Info toggle row ────────────────────────────────────────────────── */

.cta-tables-operator__toggle-row {
    display: flex;
    justify-content: center;
    padding: 10px 20px 14px;
    border-top: 1px solid var(--ct-border);
}

.cta-tables-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--ct-text-2);
    padding: 4px 12px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    font-family: var(--ct-font);
}

.cta-tables-toggle:hover {
    color: var(--ct-text);
    background: #F9FAFB;
}

.cta-tables-toggle .less {
    display: none;
}

.cta-tables-toggle .more {
    display: inline;
}

.cta-tables-toggle__chevron {
    transition: transform 0.25s ease;
}

.cta-tables-operator__open .cta-tables-toggle .more {
    display: none;
}

.cta-tables-operator__open .cta-tables-toggle .less {
    display: inline;
}

.cta-tables-operator__open .cta-tables-toggle__chevron {
    transform: rotate(180deg);
}

/* ── Expander (hidden by default, shown when open) ───────────────────────── */

.cta-tables-operator .cta-tables-operator-expander {
    display: none;
    border-top: 1px solid var(--ct-border);
    padding: 24px 24px 20px;
    background: #FAFAFA;
    border-radius: 0 0 var(--ct-radius) var(--ct-radius);
}

.cta-tables-operator.cta-tables-operator__open .cta-tables-operator-expander {
    display: block;
}

.cta-tables-expander__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    align-items: stretch;
}

.cta-tables-expander__col {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
    border-right: 1px solid var(--ct-border);
}

.cta-tables-expander__col:last-child {
    border-right: none;
}

.cta-tables-expander__heading {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ct-text);
    text-align: center;
    margin: 0 0 16px;
}

/* Pros */

.cta-tables-pros .pros-label,
.cta-tables-cons .cons-label {
    display: none; /* heading is rendered by the template instead */
}

.cta-tables-pros .pros-list,
.cta-tables-cons .cons-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-tables-pros .pros-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F0FDF4;
    color: #15803D;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 20px;
    border: 1px solid #BBF7D0;
}

.cta-tables-pros .pros-list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: #16A34A;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Cons */

.cta-tables-cons .cons-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F3F4F6;
    color: var(--ct-text-2);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
}

.cta-tables-cons .cons-list li::before {
    content: '\00D7';
    color: #EF4444;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/* Payments */

.cta-tables-payments {
    list-style: none;
    margin: auto 0 12px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 52px);
    justify-content: center;
    gap: 8px;
}

.cta-tables-payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid var(--ct-border);
    border-radius: 8px;
    padding: 6px;
}

.cta-tables-payment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-tables-payment-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--ct-text-2);
    background: #F3F4F6;
}

.cta-tables-payments__note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ct-text-3);
    margin: 0 0 auto;
    padding-top: 16px;
}

.cta-tables-payments__note::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 1px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Expander footer (T&C) */

.cta-tables-expander__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--ct-border);
    font-size: 12px;
    color: var(--ct-text-3);
    text-align: center;
}

.cta-tables-expander__footer-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* ── Table footer ────────────────────────────────────────────────────────── */

.cta-tables-footer {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

/* ── Advertising disclaimer ───────────────────────────────────────────────── */

.l-head-ad {
    position: relative;
    margin-bottom: 12px;
}

.l-head-ad-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--ct-border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--ct-text-3);
    cursor: pointer;
    font-family: var(--ct-font);
    transition: border-color 0.15s, color 0.15s;
}

.l-head-ad-btn:hover {
    border-color: var(--ct-text-3);
    color: var(--ct-text-2);
}

.l-head-ad-popup {
    display: none;
    position: absolute;
    z-index: 100;
    background: #fff;
    border: 1px solid var(--ct-border);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    padding: 20px;
    min-width: 280px;
    max-width: 420px;
    top: calc(100% + 8px);
    left: 0;
}

.l-head-ad--open .l-head-ad-popup {
    display: block;
}

.l-head-ad-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ct-text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
}

.l-head-ad-popup-close:hover {
    background: #F3F4F6;
}

.l-head-ad-popup-ttl {
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 8px;
    color: var(--ct-text);
    padding-right: 24px;
}

.l-head-ad-popup-text {
    font-size: 13px;
    color: var(--ct-text-2);
    margin: 0;
    line-height: 1.6;
}

/* ── Mobile layout (≤767px) ───────────────────────────────────────────────── */

@media (max-width: 767px) {
    /* Row limit / "show more" */
    .cta-tables-table:not(.cta-tables-table--expanded) .cta-tables-operator--mobile-hidden {
        display: none;
    }

    .cta-tables-footer--mobile-more {
        display: flex;
    }

    /* Homepage pull-out is smaller on mobile */
    .cta-tables-table--home {
        margin: -10px -10px 0;
    }

    /* Badge row */
    .cta-tables-operator__top {
        padding: 12px 14px 0;
        min-height: 0;
    }

    /* Restructure the horizontal desktop row into a stacked card:
       [ logo | bonus ]
       [     stats     ]
       [     ctas       ] */
    .cta-tables-operator__body {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
            "logo bonus"
            "stats stats"
            "cta cta";
        gap: 16px;
        padding: 14px;
        align-items: stretch;
    }

    .cta-tables-col {
        padding: 0;
    }

    .cta-tables-col--logo {
        grid-area: logo;
        flex: initial;
        gap: 8px;
        border-right: 1px solid var(--ct-border);
        padding-right: 14px;
    }

    .cta-tables-logo img {
        max-width: 110px;
        max-height: 60px;
    }

    .cta-tables-col--bonus {
        grid-area: bonus;
        flex: initial;
        border-right: none;
        padding: 0;
        gap: 4px;
    }

    .cta-tables-bonus__main {
        font-size: 20px;
    }

    .cta-tables-bonus__sub {
        font-size: 16px;
    }

    .cta-tables-col--stats {
        grid-area: stats;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex: initial;
        border-right: none;
        padding: 14px 0 0;
        border-top: 1px solid var(--ct-border);
        gap: 8px 16px;
    }

    .cta-tables-col--cta {
        grid-area: cta;
        flex: initial;
        flex-direction: row;
        padding: 0;
        gap: 10px;
    }

    .cta-tables-col--cta .cta-tables-btn {
        flex: 1 1 0;
    }

    /* Expander stacks into a single column so pros/cons/payments list
       vertically instead of sitting side by side */
    .cta-tables-expander__grid {
        grid-template-columns: 1fr;
    }

    .cta-tables-expander__col {
        padding: 16px 0;
        border-right: none;
        border-bottom: 1px solid var(--ct-border);
    }

    .cta-tables-expander__col:first-child {
        padding-top: 0;
    }

    .cta-tables-expander__col:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .cta-tables-pros,
    .cta-tables-cons {
        margin: 0;
    }

    /* Center the payment icons regardless of how many are shown (the fixed
       4-column grid left-aligns a partial last row) */
    .cta-tables-payments {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 12px;
    }
}

/* Extra-small screens (≤420px): keep the [logo + rating | bonus] top row,
   just tighten spacing and sizing so it still fits on narrow phones. */
@media (max-width: 420px) {
    .cta-tables-operator__body {
        gap: 12px;
        padding: 12px;
    }

    .cta-tables-col--logo {
        padding-right: 12px;
    }

    .cta-tables-logo img {
        max-width: 88px;
        max-height: 64px;
    }

    .cta-tables-bonus__main {
        font-size: 23px;
    }

    .cta-tables-bonus__sub {
        font-size: 18px;
    }
}

.cta-tables-footer--mobile-more {
    display: none;
}

@media (min-width: 768px) {
    .cta-tables-footer--mobile-more {
        display: none !important;
    }
}
