/* ═══════════════════════════════════════════════════════════════
   BetPilot24 — Single Bookmaker Review Template Styles
   M3 — Matches dark theme from betpilot-table.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Override Astra theme background on bookmaker review pages ── */
/* Body class 'single-bookmaker' is added automatically by WordPress    */
/* We ONLY change colours — Astra's layout/centering is left untouched. */
body.single-bookmaker,
body.single-bookmaker #page,
body.single-bookmaker #content.site-content,
body.single-bookmaker #primary,
body.single-bookmaker .site-primary {
    background-color: #0d1422 !important;
}

/* Remove Astra title bar / entry header (duplicate title above hero) */
body.single-bookmaker .ast-post-title-bar,
body.single-bookmaker .entry-header,
body.single-bookmaker .post-title {
    display: none !important;
}

/* Strip default entry-content padding so our sections control their own spacing */
body.single-bookmaker .entry-content {
    padding: 0 !important;
}

/* Make the review wrapper fill the full width of whatever Astra gives us */
body.single-bookmaker .bp-review-page {
    width: 100%;
}

/* ── CSS Variables ──────────────────────────────────────────── */
.bp-review-page {
    --bp-dark:        #0f1623;
    --bp-dark-2:      #111827;
    --bp-dark-3:      #1f2937;
    --bp-dark-4:      #374151;
    --bp-text:        #f1f5f9;
    --bp-text-muted:  #9ca3af;
    --bp-gold:        #f59e0b;
    --bp-gold-light:  #fbbf24;
    --bp-green:       #16a34a;
    --bp-green-light: #22c55e;
    --bp-red:         #dc2626;
    --bp-blue:        #3b82f6;
    --bp-radius:      10px;
    --bp-radius-sm:   6px;
    --bp-transition:  0.25s ease;
    color: var(--bp-text);
    background: var(--bp-dark);
    box-sizing: border-box;
}

.bp-review-page * {
    box-sizing: border-box;
}

/* ── Breadcrumbs ────────────────────────────────────────────── */
.bp-breadcrumbs {
    padding: 14px 20px;
    background: var(--bp-dark-2);
    border-bottom: 1px solid var(--bp-dark-3);
}

.bp-breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    max-width: 1200px;
    margin: 0 auto;
}

.bp-breadcrumbs__link {
    color: var(--bp-text-muted);
    text-decoration: none;
    transition: color var(--bp-transition);
}
.bp-breadcrumbs__link:hover {
    color: var(--bp-gold);
}

.bp-breadcrumbs__separator {
    color: var(--bp-dark-4);
    display: flex;
    align-items: center;
}

.bp-breadcrumbs__item--current {
    color: var(--bp-text);
    font-weight: 500;
}

/* ── Hero ───────────────────────────────────────────────────── */
.bp-review-hero {
    background: linear-gradient(135deg, var(--bp-dark-2) 0%, #1a2744 100%);
    border-bottom: 1px solid var(--bp-dark-3);
    padding: 40px 20px;
}

.bp-review-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.bp-review-hero__logo {
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--bp-radius);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 70px;
}

.bp-review-hero__logo img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.bp-review-hero__logo-placeholder {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-dark);
}

.bp-review-hero__info {
    flex: 1;
    min-width: 200px;
}

.bp-review-hero__title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: var(--bp-text);
    margin: 0 0 10px;
    line-height: 1.2;
}

.bp-review-hero__score {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.bp-review-hero__score-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--bp-gold);
    line-height: 1;
}

.bp-review-hero__score-max {
    font-size: 16px;
    color: var(--bp-text-muted);
    align-self: flex-end;
    margin-bottom: 4px;
}

.bp-review-hero__summary {
    color: var(--bp-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.bp-review-hero__cta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.bp-review-hero__disclaimer {
    font-size: 11px;
    color: var(--bp-text-muted);
    text-align: center;
    max-width: 200px;
    line-height: 1.4;
}

.bp-review-hero__disclaimer a {
    color: var(--bp-text-muted);
    text-decoration: underline;
}

/* ── Buttons ────────────────────────────────────────────────── */
.bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: var(--bp-radius-sm);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--bp-transition);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.2;
}

.bp-btn--primary {
    background: var(--bp-gold);
    color: #000;
    border-color: var(--bp-gold);
}
.bp-btn--primary:hover {
    background: var(--bp-gold-light);
    border-color: var(--bp-gold-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.bp-btn--outline {
    background: transparent;
    color: var(--bp-text);
    border-color: var(--bp-dark-4);
}
.bp-btn--outline:hover {
    border-color: var(--bp-gold);
    color: var(--bp-gold);
}

.bp-btn--lg {
    padding: 16px 36px;
    font-size: 17px;
}

.bp-btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

.bp-btn--full {
    width: 100%;
}

/* ── Two-column Layout ──────────────────────────────────────── */
.bp-review-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

/* ── Main Content ───────────────────────────────────────────── */
.bp-review-main {
    min-width: 0;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.bp-review-sidebar__sticky {
    position: sticky;
    top: 24px;
    background: var(--bp-dark-2);
    border: 1px solid var(--bp-dark-3);
    border-radius: var(--bp-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bp-sidebar-score-card {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bp-dark-3);
}

.bp-sidebar-score-card__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bp-text-muted);
    margin-bottom: 6px;
}

.bp-sidebar-score-card__score {
    font-size: 48px;
    font-weight: 800;
    color: var(--bp-gold);
    line-height: 1;
}

.bp-sidebar-score-card__score span {
    font-size: 18px;
    color: var(--bp-text-muted);
    font-weight: 400;
}

.bp-sidebar-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bp-sidebar-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bp-dark-3);
}

.bp-sidebar-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bp-sidebar-info-list__label {
    color: var(--bp-text-muted);
}

.bp-sidebar-info-list__value {
    font-weight: 600;
    color: var(--bp-text);
}

.bp-sidebar-disclaimer {
    font-size: 11px;
    color: var(--bp-text-muted);
    line-height: 1.5;
    margin: 0;
}

.bp-sidebar-disclaimer a {
    color: var(--bp-text-muted);
    text-decoration: underline;
}

/* ── Section Base ───────────────────────────────────────────── */
.bp-review-section {
    background: var(--bp-dark-2);
    border: 1px solid var(--bp-dark-3);
    border-radius: var(--bp-radius);
    padding: 28px;
    margin-bottom: 24px;
}

.bp-review-section__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-review-section__title svg {
    color: var(--bp-gold);
    flex-shrink: 0;
}

/* ── Stars ──────────────────────────────────────────────────── */
.bp-stars {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}

/* ── Rating Breakdown ───────────────────────────────────────── */
.bp-rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bp-score-row {
    display: grid;
    grid-template-columns: 170px 1fr 44px;
    align-items: center;
    gap: 12px;
}

.bp-score-row__label {
    font-size: 14px;
    color: var(--bp-text-muted);
    font-weight: 500;
}

.bp-score-bar-wrap {
    background: var(--bp-dark-3);
    border-radius: 100px;
    height: 8px;
    overflow: hidden;
}

.bp-score-bar {
    height: 100%;
    border-radius: 100px;
    width: var(--score);
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bp-score-bar--high  { background: linear-gradient(90deg, var(--bp-green), var(--bp-green-light)); }
.bp-score-bar--mid   { background: linear-gradient(90deg, var(--bp-gold), var(--bp-gold-light)); }
.bp-score-bar--low   { background: linear-gradient(90deg, var(--bp-red), #f87171); }

.bp-score-row__value {
    font-size: 14px;
    font-weight: 700;
    color: var(--bp-text);
    text-align: right;
}

/* ── Bonus Table ────────────────────────────────────────────── */
.bp-bonus-highlight {
    background: linear-gradient(135deg, #1a3a1a, #1f2d1f);
    border: 1px solid var(--bp-green);
    border-radius: var(--bp-radius);
    padding: 20px 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.bp-bonus-highlight__amount {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    color: var(--bp-green-light);
}

.bp-bonus-highlight__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin: 0;
    flex-basis: 100%;
}

.bp-bonus-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.bp-bonus-table__row {
    border-bottom: 1px solid var(--bp-dark-3);
}

.bp-bonus-table__row:last-child {
    border-bottom: none;
}

.bp-bonus-table__label {
    padding: 12px 0;
    color: var(--bp-text-muted);
    font-weight: 500;
    width: 45%;
    vertical-align: top;
}

.bp-bonus-table__value {
    padding: 12px 0;
    color: var(--bp-text);
    font-weight: 500;
    text-align: center;
}

.bp-bonus-code {
    display: inline-flex;
    align-items: center;
    background: var(--bp-dark-3);
    border: 1px dashed var(--bp-gold);
    border-radius: var(--bp-radius-sm);
    padding: 4px 10px;
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--bp-gold);
    letter-spacing: 1px;
}

.bp-bonus-terms {
    font-size: 12px;
    color: var(--bp-text-muted);
    line-height: 1.6;
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--bp-dark-3);
}

/* ── Pros & Cons ────────────────────────────────────────────── */
.bp-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bp-pros-cons-col {
    border-radius: var(--bp-radius);
    overflow: hidden;
}

.bp-pros-cons-col__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bp-pros-cons-col--pros .bp-pros-cons-col__header {
    background: rgba(22, 163, 74, 0.2);
    color: var(--bp-green-light);
    border-bottom: 1px solid rgba(22, 163, 74, 0.3);
}

.bp-pros-cons-col--cons .bp-pros-cons-col__header {
    background: rgba(220, 38, 38, 0.15);
    color: #f87171;
    border-bottom: 1px solid rgba(220, 38, 38, 0.25);
}

.bp-pros-cons-list {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    background: var(--bp-dark-3);
}

.bp-pros-cons-list__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 16px;
    font-size: 14px;
    line-height: 1.5;
}

.bp-pros-cons-list__item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.bp-pros-cons-list__item--pro  { color: #d1fae5; }
.bp-pros-cons-list__item--pro svg { color: var(--bp-green); }
.bp-pros-cons-list__item--con  { color: #fee2e2; }
.bp-pros-cons-list__item--con svg { color: var(--bp-red); }

/* ── Payment Methods ────────────────────────────────────────── */
.bp-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 12px;
}

.bp-payment-card {
    background: var(--bp-dark-3);
    border: 1px solid var(--bp-dark-4);
    border-radius: var(--bp-radius-sm);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: border-color var(--bp-transition);
}

.bp-payment-card:hover {
    border-color: var(--bp-gold);
}

.bp-payment-card__icon svg {
    width: 44px;
    height: 28px;
    display: block;
}

.bp-payment-card__text {
    font-size: 11px;
    font-weight: 700;
    color: var(--bp-text-muted);
    text-align: center;
    text-transform: uppercase;
}

.bp-payment-card__label {
    font-size: 10px;
    color: var(--bp-text-muted);
    text-align: center;
    line-height: 1.3;
}

/* ── App Availability ───────────────────────────────────────── */
.bp-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bp-app-card {
    background: var(--bp-dark-3);
    border: 1px solid var(--bp-dark-4);
    border-radius: var(--bp-radius);
    overflow: hidden;
}

.bp-app-card__platform {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
}

.bp-app-card__platform--ios {
    background: #1a1a2e;
    color: #a0aec0;
}

.bp-app-card__platform--android {
    background: #1a2e1a;
    color: #68d391;
}

.bp-app-card__body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bp-app-card__status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin: 0;
}

.bp-app-card__status--available {
    color: var(--bp-green-light);
}

.bp-app-card__status--unavailable {
    color: var(--bp-text-muted);
}

.bp-app-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-app-card__rating-score {
    font-size: 20px;
    font-weight: 800;
    color: var(--bp-gold);
}

.bp-app-card__rating-max {
    font-size: 12px;
    color: var(--bp-text-muted);
}

.bp-app-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #1a1a2e;
    color: var(--bp-text);
    border-radius: var(--bp-radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--bp-transition);
    border: 1px solid var(--bp-dark-4);
}

.bp-app-card__btn--android {
    background: #1a2e1a;
}

.bp-app-card__btn:hover {
    background: var(--bp-dark-4);
    color: var(--bp-text);
}

/* ── Editorial ──────────────────────────────────────────────── */
.bp-editorial-byline {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bp-dark-3);
}

.bp-editorial-byline__reviewer,
.bp-editorial-byline__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--bp-text-muted);
}

.bp-editorial-byline__reviewer strong {
    color: var(--bp-text);
}

.bp-editorial-body {
    color: var(--bp-text);
    font-size: 15px;
    line-height: 1.8;
}

.bp-editorial-body h2,
.bp-editorial-body h3,
.bp-editorial-body h4 {
    color: var(--bp-text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.bp-editorial-body p {
    margin-bottom: 16px;
    color: #cbd5e1;
}

.bp-editorial-body a {
    color: var(--bp-gold);
    text-decoration: underline;
}

.bp-editorial-body ul,
.bp-editorial-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.bp-editorial-body li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ── Post Content ───────────────────────────────────────────── */
.bp-post-content {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
}

.bp-post-content h2,
.bp-post-content h3,
.bp-post-content h4 {
    color: var(--bp-text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.bp-post-content p {
    margin-bottom: 16px;
}

.bp-post-content a {
    color: var(--bp-gold);
    text-decoration: underline;
}

.bp-post-content ul,
.bp-post-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.bp-post-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.bp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bp-faq-item {
    background: var(--bp-dark-3);
    border: 1px solid var(--bp-dark-4);
    border-radius: var(--bp-radius-sm);
    overflow: hidden;
}

.bp-faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    color: var(--bp-text);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    transition: color var(--bp-transition);
}

.bp-faq-item__question:hover {
    color: var(--bp-gold);
}

.bp-faq-item__question[aria-expanded="true"] {
    color: var(--bp-gold);
    border-bottom: 1px solid var(--bp-dark-4);
}

.bp-faq-item__chevron {
    flex-shrink: 0;
    transition: transform var(--bp-transition);
    color: var(--bp-text-muted);
}

.bp-faq-item__question[aria-expanded="true"] .bp-faq-item__chevron {
    transform: rotate(180deg);
    color: var(--bp-gold);
}

.bp-faq-item__answer {
    overflow: hidden;
}

.bp-faq-item__answer[hidden] {
    display: none;
}

.bp-faq-item__answer-inner {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
}

/* ── Related Bookmakers ─────────────────────────────────────── */
.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.bp-related-card {
    background: var(--bp-dark-3);
    border: 1px solid var(--bp-dark-4);
    border-radius: var(--bp-radius);
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: border-color var(--bp-transition);
}

.bp-related-card:hover {
    border-color: var(--bp-gold);
}

.bp-related-card__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: var(--bp-radius-sm);
    padding: 8px 12px;
    min-width: 100px;
    min-height: 50px;
    width: 100%;
}

.bp-related-card__logo-link img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
}

.bp-related-card__name-fallback {
    font-weight: 700;
    font-size: 14px;
    color: var(--bp-dark);
}

.bp-related-card__score {
    font-size: 13px;
    font-weight: 700;
    color: var(--bp-gold);
}

.bp-related-card__bonus {
    font-size: 12px;
    color: var(--bp-green-light);
    font-weight: 600;
}

.bp-related-card__actions {
    display: flex;
    gap: 8px;
    width: 100%;
}

.bp-related-card__actions .bp-btn {
    flex: 1;
    justify-content: center;
}

/* ── Sticky Mobile CTA ──────────────────────────────────────── */
.bp-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bp-dark-2);
    border-top: 1px solid var(--bp-dark-3);
    z-index: 1000;
    padding: 4px 16px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.bp-sticky-cta.is-visible {
    transform: translateY(0);
}

.bp-sticky-cta__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    max-width: 600px;
    margin: 0 auto;
}

.bp-sticky-cta__info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.bp-sticky-cta__info img {
    height: 30px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.bp-sticky-cta__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--bp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp-sticky-cta__score {
    font-size: 12px;
    font-weight: 700;
    color: var(--bp-gold);
    white-space: nowrap;
}

.bp-sticky-cta__close {
    background: none;
    border: none;
    color: var(--bp-text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bp-sticky-cta__disclaimer {
    font-size: 10px;
    color: var(--bp-text-muted);
    text-align: center;
    margin: 0;
    padding-bottom: 6px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media ( max-width: 900px ) {
    .bp-review-layout {
        grid-template-columns: 1fr;
    }

    .bp-review-sidebar {
        order: -1;
    }

    .bp-review-sidebar__sticky {
        position: static;
    }

    .bp-score-row {
        grid-template-columns: 140px 1fr 40px;
    }

    .bp-sticky-cta {
        display: block;
    }
}

@media ( max-width: 640px ) {
    .bp-review-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .bp-review-hero__cta {
        width: 100%;
    }

    .bp-review-hero__cta .bp-btn {
        width: 100%;
    }

    .bp-pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .bp-app-grid {
        grid-template-columns: 1fr;
    }

    .bp-score-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .bp-score-row__label {
        grid-column: 1;
    }

    .bp-score-row__value {
        grid-column: 2;
        text-align: right;
    }

    .bp-score-bar-wrap {
        grid-column: 1 / -1;
    }

    .bp-review-section {
        padding: 20px 16px;
    }

    .bp-related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bp-bonus-highlight {
        flex-direction: column;
        text-align: center;
    }

    .bp-bonus-highlight .bp-btn {
        width: 100%;
    }
}

@media ( max-width: 400px ) {
    .bp-related-grid {
        grid-template-columns: 1fr;
    }
}
