.casino-key-info {
    margin: 18px 0 22px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.casino-key-info__title {
    margin: 0 0 10px;
    color: #202020;
}

.casino-key-info__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
}

.casino-key-info__item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #efefef;
}

.casino-key-info__item::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    align-self: center;
    border-radius: 0;
    background: #fff4f6;
    border: 1px solid #f4c6d0;
}

.casino-key-info__label {
    grid-column: 2;
    color: #4a4a4a;
    line-height: 1.2;
}

.casino-key-info__value {
    grid-column: 2;
    font-weight: 700;
    color: #202020;
    line-height: 1.2;
}

.casino-key-info__item--established::before {
    background-image: url("https://betdey.com/wp-content/uploads/2026/05/established.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.casino-key-info__item--owner::before {
    background-image: url("https://betdey.com/wp-content/uploads/2026/05/owner.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.casino-key-info__item--min-deposit::before {
    background-image: url("https://betdey.com/wp-content/uploads/2026/05/min-deposit.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.casino-key-info__item--mobile-apps::before {
    background-image: url("https://betdey.com/wp-content/uploads/2026/05/mobile-apps.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.casino-key-info__item--languages::before {
    background-image: url("https://betdey.com/wp-content/uploads/2026/05/languages.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.casino-key-info__item--license::before {
    background-image: url("https://betdey.com/wp-content/uploads/2026/05/license.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

@media (max-width: 767px) {
    .casino-key-info {
        padding: 0;
    }

    .casino-key-info__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .casino-key-info__title {
        margin-bottom: 8px;
    }

    .casino-key-info__item {
        padding: 12px 0;
    }
}

/* =============================================================
   Ordered lists rendered as connected steps on review pages.
   Scoped to .casino-review-content so other pages are unaffected.
   ============================================================= */
.casino-review-content ol {
    list-style: none;
    counter-reset: review-step;
    position: relative;
    padding: 0;
    margin: 24px 0;
}

.casino-review-content ol::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 19px;
    bottom: 19px;
    width: 2px;
    background: #e5e5e5;
    z-index: 0;
}

.casino-review-content ol > li {
    counter-increment: review-step;
    position: relative;
    padding: 6px 0 6px 56px;
    margin: 0 0 18px;
    min-height: 44px;
    line-height: 1.6;
}

.casino-review-content ol > li > p:last-child {
    margin-bottom: 0;
}

.casino-review-content ol > li:last-child {
    margin-bottom: 0;
}

.casino-review-content ol > li::before {
    content: counter(review-step);
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #D21034;
    border: 2px solid #D21034;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.casino-review-content ol > li:not(:last-child)::after {
    content: none;
}

/* Reset nested ordered lists (don't render nested as steps) */
.casino-review-content ol ol {
    list-style: decimal;
    counter-reset: none;
    padding-left: 20px;
    margin: 8px 0;
}

.casino-review-content ol ol > li {
    counter-increment: none;
    position: static;
    padding: 0;
    min-height: 0;
}

.casino-review-content ol ol > li::before,
.casino-review-content ol ol::before,
.casino-review-content ol ol > li::after {
    content: none;
}

@media (max-width: 600px) {
    .casino-review-content ol > li {
        padding-top: 5px;
        padding-left: 48px;
        padding-bottom: 5px;
        margin-bottom: 14px;
        min-height: 38px;
        line-height: 1.5;
    }

    .casino-review-content ol > li::before {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 50%;
    }

    .casino-review-content ol::before {
        left: 15px;
        top: 16px;
        bottom: 16px;
    }
}

/* =============================================================
   Bonus list — styled list of casino bonuses/perks.
   Markup: <ul class="bonus-list"><li><strong>Title</strong> - desc</li></ul>
   ============================================================= */
.bonus-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 10px;
}

.bonus-list > li {
    position: relative;
    padding: 14px 18px 14px 56px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0;
}

.bonus-list > li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #D21034;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D21034' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

.bonus-list > li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* =============================================================
   Default unordered lists on review pages (excluding bonus-list)
   ============================================================= */
.casino-review-content ul:not(.bonus-list):not(.page-toc__list):not(.faq-list) {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: grid;
    gap: 8px;
}

.casino-review-content ul:not(.bonus-list):not(.page-toc__list):not(.faq-list) > li {
    position: relative;
    margin: 0;
    padding: 0 0 0 24px;
    color: #2a2a2a;
    line-height: 1.55;
}

.casino-review-content ul:not(.bonus-list):not(.page-toc__list):not(.faq-list) > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #d9d9d9;
}

@media (max-width: 600px) {
    .bonus-list > li {
        padding: 12px 14px 12px 50px;
        font-size: 14px;
    }

    .bonus-list > li::before {
        left: 12px;
        width: 26px;
        height: 26px;
        background-size: 14px 14px;
    }

    .casino-review-content ul:not(.bonus-list):not(.page-toc__list):not(.faq-list) {
        gap: 7px;
    }

    .casino-review-content ul:not(.bonus-list):not(.page-toc__list):not(.faq-list) > li {
        padding-left: 22px;
    }

    .casino-review-content ul:not(.bonus-list):not(.page-toc__list):not(.faq-list) > li::before {
        width: 9px;
        height: 9px;
    }
}

/* =============================================================
   Payment methods table (editor HTML, id="payment-methods").
   Desktop: bordered grid; phone: one card per method (vertical boxes).
   ============================================================= */
.casino-review-content table#payment-methods {
    width: 100% !important;
    max-width: 100%;
    margin: 24px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    table-layout: fixed;
}

.casino-review-content table#payment-methods td {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.35;
    color: #202020;
    vertical-align: top;
    border-bottom: 1px solid #efefef;
    border-right: 1px solid #f4f4f4;
    box-sizing: border-box;
}

.casino-review-content table#payment-methods tbody tr:first-child td {
    background: #f6f6f6;
    font-weight: 600;
    color: #202020;
    border-bottom: 2px solid #e6e6e6;
}

.casino-review-content table#payment-methods tbody tr:first-child td strong {
    font-weight: 700;
}

.casino-review-content table#payment-methods tbody tr:last-child td {
    border-bottom: none;
}

.casino-review-content table#payment-methods td:last-child {
    border-right: none;
}

@media (max-width: 767px) {
    .casino-review-content table#payment-methods {
        display: block;
        width: 100% !important;
        max-width: 100%;
        border: 0;
        border-radius: 0;
        overflow: visible;
        background: transparent;
        margin: 20px 0;
    }

    .casino-review-content table#payment-methods tbody {
        display: block;
    }

    .casino-review-content table#payment-methods tbody tr:first-child {
        display: none;
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) {
        display: block;
        width: 100%;
        margin-bottom: 12px;
        padding: 14px 16px;
        border: 1px solid #ececec;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        box-sizing: border-box;
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) td {
        display: block;
        width: 100% !important;
        padding: 10px 0;
        border: 0;
        border-bottom: 1px solid #efefef;
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) td::before {
        display: block;
        margin-bottom: 4px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: #6a6a6a;
        text-transform: none;
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) td:nth-child(1)::before {
        content: "Method";
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) td:nth-child(2)::before {
        content: "Min deposit";
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) td:nth-child(3)::before {
        content: "Max deposit";
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) td:nth-child(4)::before {
        content: "Min Withdrawal";
    }

    .casino-review-content table#payment-methods tbody tr:not(:first-child) td:nth-child(5)::before {
        content: "Max Withdrawal";
    }
}
