:root {
  --bt20-navy: #061235;
  --bt20-navy-2: #081d4d;
  --bt20-blue: #0c57bd;
  --bt20-sky: #08a6ff;
  --bt20-orange: #f7a700;
  --bt20-red: #e32942;
  --bt20-green: #16a34a;
  --bt20-ink: #101828;
  --bt20-muted: #667085;
  --bt20-line: #e5e7eb;
  --bt20-soft: #f4f7fb;
  --bt20-white: #ffffff;
  --bt20-shadow: 0 18px 55px rgba(6, 18, 53, 0.13);
  --bt20-shadow-strong: 0 28px 80px rgba(6, 18, 53, 0.24);
  --bt20-radius: 24px;
  --bt20-radius-lg: 34px;
  --bt20-container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bt20-ink);
  background: linear-gradient(180deg, #f7faff 0, #fff 260px);
  line-height: 1.65;
  padding-bottom: 54px;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bt20-blue); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
.screen-reader-text { position: absolute; left: -9999px; }
.skip-link:focus { left: 20px; top: 20px; z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 8px; }
.bt20-container { width: min(var(--bt20-container), calc(100% - 32px)); margin: 0 auto; }
.bt20-main { padding: 0 0 80px; }
.bt20-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; align-items: start; }
.bt20-content-area { min-width: 0; }
.bt20-muted { color: var(--bt20-muted); }

/* Header */
.bt20-site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,232,240,.9);
}
.bt20-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 18px; }
.bt20-brand { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; min-width: 190px; }
.bt20-logo-text { display: inline-flex; align-items: center; gap: 3px; font-size: 28px; letter-spacing: -1.2px; font-weight: 900; color: var(--bt20-navy); line-height: 1; }
.bt20-logo-text span { color: var(--bt20-orange); }
.bt20-logo-text strong { color: var(--bt20-navy); }
.bt20-brand-tagline { font-size: 12px; font-weight: 800; color: var(--bt20-muted); max-width: 220px; }
.custom-logo { max-height: 58px; width: auto; }
.bt20-main-nav { display: flex; align-items: center; }
.bt20-menu { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.bt20-menu a { display: block; padding: 10px 13px; border-radius: 999px; font-weight: 900; font-size: 14px; color: #172033; }
.bt20-menu a:hover, .bt20-menu .current-menu-item > a { background: #eef4ff; color: var(--bt20-blue); }
.bt20-db-nav { display: flex; gap: 8px; }
.bt20-db-nav a { padding: 10px 15px; border-radius: 999px; background: var(--bt20-navy); color: #fff; font-size: 13px; font-weight: 900; box-shadow: 0 10px 26px rgba(6,18,53,.16); }
.bt20-db-nav a:nth-child(2) { background: linear-gradient(135deg, var(--bt20-orange), #ffce52); color: #08142f; }
.bt20-db-nav a:hover { transform: translateY(-1px); color: #fff; }
.bt20-db-nav a:nth-child(2):hover { color: #08142f; }
.bt20-menu-toggle { display: none; background: var(--bt20-navy); color: #fff; border: 0; border-radius: 12px; width: 44px; height: 44px; padding: 11px; }
.bt20-menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* Buttons and shared */
.bt20-eyebrow { display: inline-flex; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; color: var(--bt20-orange); margin-bottom: 8px; }
.bt20-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.bt20-btn:hover { transform: translateY(-2px); }
.bt20-btn-primary { background: linear-gradient(135deg, var(--bt20-orange), #ffd05b); color: #101828; box-shadow: 0 12px 28px rgba(247,167,0,.28); }
.bt20-btn-primary:hover { color: #101828; }
.bt20-btn-ghost { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.32); }
.bt20-btn-ghost:hover { color: #fff; background: rgba(255,255,255,.2); }
.bt20-link { font-weight: 900; color: var(--bt20-blue); }
.bt20-section { padding: 54px 0; }
.bt20-soft-section { background: linear-gradient(180deg, #f4f8ff, #fff); }
.bt20-section-head, .bt20-section-head-row { margin-bottom: 24px; }
.bt20-section-head h1, .bt20-section-head-row h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; letter-spacing: -1.5px; }
.bt20-section-head-row { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.bt20-chip { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; background: #ecfdf5; color: #067647; font-size: 12px; font-weight: 900; }
.bt20-placeholder { min-height: 220px; background: linear-gradient(135deg, #07162f, #114c9d); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: inherit; }
.bt20-placeholder span { font-size: 36px; font-weight: 900; letter-spacing: -1px; opacity: .95; }
.bt20-breadcrumb { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 800; }
.bt20-breadcrumb a { color: rgba(255,255,255,.86); }
.bt20-breadcrumb strong { color: #fff; }

/* Hero */
.bt20-hero { background: radial-gradient(circle at top left, rgba(247,167,0,.28), transparent 33%), linear-gradient(135deg, #061235, #0a2b61 72%, #030b22); color: #fff; padding: 64px 0; overflow: hidden; }
.bt20-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 470px; gap: 42px; align-items: center; }
.bt20-hero-copy h1 { font-size: clamp(42px, 6vw, 72px); line-height: .95; letter-spacing: -3px; margin: 0 0 20px; }
.bt20-hero-copy p { color: #dbeafe; font-size: 18px; max-width: 670px; margin: 0 0 26px; }
.bt20-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.bt20-featured-card { display: block; background: #fff; color: var(--bt20-ink); border-radius: 30px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.28); transform: rotate(1.5deg); }
.bt20-featured-card:hover { color: var(--bt20-ink); transform: translateY(-4px) rotate(0deg); }
.bt20-featured-media { aspect-ratio: 16/10; background: #102a54; overflow: hidden; }
.bt20-featured-media img { width: 100%; height: 100%; object-fit: cover; }
.bt20-featured-body { padding: 22px; }
.bt20-featured-body h2 { margin: 12px 0 8px; line-height: 1.1; letter-spacing: -.8px; }
.bt20-featured-body p { margin: 0; color: var(--bt20-muted); }
.bt20-featured-empty { padding: 36px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 30px; display: grid; gap: 8px; }
.bt20-featured-empty strong { font-size: 36px; color: #fff; }

/* Database hero */
.bt20-db-hero { position: relative; overflow: hidden; padding: 58px 0 70px; color: #fff; background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.20), transparent 22%), radial-gradient(circle at 12% 20%, rgba(247,167,0,.32), transparent 28%), linear-gradient(135deg, #061235 0%, #081d4d 54%, #0b3a88 100%); }
.bt20-db-hero:after { content: ""; position: absolute; inset: auto -5% -70px -5%; height: 130px; background: #fff; transform: skewY(-2deg); transform-origin: 0 0; }
.bt20-db-hero-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.bt20-db-hero h1 { margin: 0 0 10px; font-size: clamp(46px, 8vw, 92px); line-height: .88; letter-spacing: -4px; text-transform: uppercase; }
.bt20-db-hero p { max-width: 720px; color: #dbeafe; font-size: 18px; margin: 0; }
.bt20-hero-score-card { min-width: 185px; border-radius: 28px; padding: 24px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); box-shadow: 0 24px 60px rgba(0,0,0,.22); text-align: center; backdrop-filter: blur(10px); }
.bt20-hero-score-card strong { display: block; font-size: 48px; line-height: 1; }
.bt20-hero-score-card span { color: #dbeafe; font-weight: 900; }
.bt20-db-section { position: relative; z-index: 2; margin-top: -34px; }
.bt20-db-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid #e4e7ec; box-shadow: var(--bt20-shadow); border-radius: 24px; padding: 14px; margin-bottom: 26px; }
.bt20-filter-input { width: min(100%, 460px); border: 1px solid #d0d5dd; border-radius: 999px; padding: 13px 18px; outline: none; font-weight: 800; background: #f9fafb; }
.bt20-filter-input:focus { border-color: var(--bt20-blue); box-shadow: 0 0 0 4px rgba(12,87,189,.11); background: #fff; }
.bt20-toolbar-note { color: var(--bt20-muted); font-size: 13px; font-weight: 800; }

/* Post cards */
.bt20-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.bt20-post-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bt20-post-card { background: #fff; border: 1px solid var(--bt20-line); border-radius: var(--bt20-radius); overflow: hidden; box-shadow: 0 12px 35px rgba(15,23,42,.06); transition: transform .2s ease, box-shadow .2s ease; }
.bt20-post-card:hover { transform: translateY(-5px); box-shadow: var(--bt20-shadow); }
.bt20-post-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: #f1f5f9; }
.bt20-post-thumb img, .bt20-post-thumb .bt20-placeholder { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .35s ease; }
.bt20-post-card:hover .bt20-post-thumb img { transform: scale(1.04); }
.bt20-post-body { padding: 18px; }
.bt20-post-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--bt20-muted); font-size: 12px; font-weight: 800; margin-bottom: 12px; }
.bt20-post-body h2 { font-size: 22px; line-height: 1.15; letter-spacing: -.6px; margin: 0 0 10px; }
.bt20-post-body p { color: var(--bt20-muted); margin: 0 0 14px; }
.bt20-card-meta { display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: 13px; font-weight: 900; color: var(--bt20-muted); }
.bt20-card-meta a { color: var(--bt20-blue); }

/* Team cards */
.bt20-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.bt20-team-grid-showcase { align-items: stretch; }
.bt20-team-card { border-radius: 30px; overflow: hidden; background: #fff; border: 1px solid var(--bt20-line); box-shadow: 0 18px 42px rgba(15,23,42,.09); transition: transform .22s ease, box-shadow .22s ease; min-height: 100%; }
.bt20-team-card:hover { transform: translateY(-7px); box-shadow: var(--bt20-shadow-strong); }
.bt20-team-card-link { display: flex; flex-direction: column; min-height: 100%; color: inherit; }
.bt20-team-card-top { min-height: 176px; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.34), transparent 22%), linear-gradient(135deg, var(--team-primary), var(--team-secondary)); position: relative; display: flex; align-items: center; justify-content: center; padding: 26px; overflow: hidden; }
.bt20-card-glow { position: absolute; inset: auto -25% -55% 20%; height: 140px; background: rgba(255,255,255,.18); filter: blur(16px); transform: rotate(-8deg); }
.bt20-team-logo-wrap { width: 124px; height: 124px; border-radius: 50%; background: rgba(255,255,255,.20); display: flex; align-items: center; justify-content: center; padding: 12px; border: 1px solid rgba(255,255,255,.38); box-shadow: inset 0 1px 14px rgba(255,255,255,.18), 0 18px 34px rgba(0,0,0,.18); position: relative; z-index: 2; }
.bt20-team-emblem-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.bt20-team-initials { width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: rgba(6,18,53,.32); border: 2px solid rgba(255,255,255,.36); }
.bt20-team-initials span { font-size: 30px; font-weight: 900; letter-spacing: -1px; text-shadow: 0 3px 10px rgba(0,0,0,.28); }
.bt20-team-short { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.93); color: #101828; border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 900; box-shadow: 0 10px 22px rgba(0,0,0,.12); }
.bt20-team-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.bt20-team-card-body h2 { margin: 0 0 8px; font-size: 23px; line-height: 1.05; letter-spacing: -.8px; }
.bt20-team-card-body p { margin: 0 0 14px; color: var(--bt20-muted); font-size: 14px; }
.bt20-team-mini-stats { display: grid; gap: 8px; margin-top: auto; }
.bt20-team-mini-stats span { display: grid; grid-template-columns: 74px 1fr; gap: 10px; font-size: 13px; background: #f8fafc; border: 1px solid #eef2f7; padding: 9px 10px; border-radius: 13px; }
.bt20-team-mini-stats strong { color: var(--bt20-muted); }
.bt20-card-cta { margin-top: 16px; display: inline-flex; align-self: flex-start; font-size: 13px; font-weight: 900; color: var(--bt20-blue); }

/* Player cards */
.bt20-player-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.bt20-player-card { background: #fff; border: 1px solid var(--bt20-line); border-radius: 30px; overflow: hidden; box-shadow: 0 18px 42px rgba(15,23,42,.09); transition: transform .22s ease, box-shadow .22s ease; }
.bt20-player-card:hover { transform: translateY(-7px); box-shadow: var(--bt20-shadow-strong); }
.bt20-player-card-link { color: inherit; display: block; }
.bt20-player-card-img { min-height: 230px; padding: 44px 24px 0; background: radial-gradient(circle at 80% 12%, rgba(255,255,255,.34), transparent 21%), linear-gradient(135deg, var(--team-primary), var(--team-secondary)); display: flex; justify-content: center; align-items: end; position: relative; overflow: hidden; }
.bt20-player-card-img:after { content: ""; position: absolute; inset: auto -20% -42% -20%; height: 120px; background: rgba(255,255,255,.96); transform: rotate(-4deg); }
.bt20-player-card-img img, .bt20-player-card-img .bt20-placeholder { position: relative; z-index: 2; width: 176px; height: 176px; object-fit: cover; border-radius: 26px 26px 0 0; box-shadow: 0 18px 42px rgba(0,0,0,.24); background: rgba(255,255,255,.17); }
.bt20-player-card-img .bt20-placeholder { min-height: 176px; }
.bt20-player-card-img .bt20-placeholder span { font-size: 24px; }
.bt20-player-team-band { position: absolute; top: 14px; left: 14px; right: 14px; z-index: 3; text-align: center; background: rgba(255,255,255,.9); color: #101828; border-radius: 999px; padding: 7px 10px; font-size: 12px; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt20-player-card-body { padding: 20px; }
.bt20-role-chip { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; background: #fff6d7; color: #8a5600; font-size: 12px; font-weight: 900; margin-bottom: 10px; }
.bt20-player-card-body h2 { margin: 0 0 6px; font-size: 21px; line-height: 1.1; letter-spacing: -.7px; }
.bt20-player-card-body p { margin: 0 0 14px; color: var(--bt20-muted); font-size: 14px; }
.bt20-player-card-stats { display: flex; flex-wrap: wrap; gap: 8px; }
.bt20-player-card-stats span { background: #f8fafc; border: 1px solid #eef2f7; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; color: #344054; }

/* Single team/player profile pages */
.bt20-team-profile-hero, .bt20-player-profile-hero { padding: 60px 0; color: #fff; background: radial-gradient(circle at 80% 10%, rgba(255,255,255,.25), transparent 24%), linear-gradient(135deg, var(--team-primary), var(--team-secondary)); overflow: hidden; }
.bt20-team-profile-grid, .bt20-player-profile-grid { display: grid; grid-template-columns: minmax(0,1fr) 390px; gap: 44px; align-items: center; }
.bt20-team-profile-copy h1, .bt20-player-profile-copy h1 { margin: 0 0 16px; font-size: clamp(44px, 6vw, 82px); line-height: .92; letter-spacing: -3px; }
.bt20-team-profile-copy p, .bt20-player-profile-copy p { color: rgba(255,255,255,.88); font-size: 18px; max-width: 690px; }
.bt20-team-profile-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.bt20-team-profile-card { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); box-shadow: 0 26px 78px rgba(0,0,0,.2); border-radius: 36px; padding: 26px; text-align: center; backdrop-filter: blur(10px); }
.bt20-team-short-large { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.9); color: #101828; font-weight: 900; margin-bottom: 16px; }
.bt20-team-profile-emblem { width: 190px; height: 190px; margin: 0 auto 18px; }
.bt20-team-profile-emblem .bt20-team-initials span { font-size: 48px; }
.bt20-team-profile-card h2 { margin: 0 0 6px; font-size: 28px; line-height: 1.05; }
.bt20-team-profile-card p { margin: 0; color: rgba(255,255,255,.85); font-weight: 800; }
.bt20-team-facts { margin-top: -28px; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.bt20-team-facts div { background: #fff; border: 1px solid var(--bt20-line); border-radius: 20px; padding: 18px; box-shadow: var(--bt20-shadow); }
.bt20-team-facts span, .bt20-detail-list span { display: block; color: var(--bt20-muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.bt20-team-facts strong { display: block; font-size: 18px; line-height: 1.2; margin-top: 4px; }
.bt20-player-profile-grid { grid-template-columns: 360px minmax(0,1fr); }
.bt20-player-profile-media { text-align: center; }
.bt20-player-profile-img { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28); border-radius: 38px; padding: 22px 22px 0; box-shadow: 0 26px 78px rgba(0,0,0,.22); }
.bt20-player-profile-img img, .bt20-player-profile-img .bt20-placeholder { width: 100%; aspect-ratio: 1/1; height: auto; object-fit: cover; border-radius: 28px 28px 0 0; }
.bt20-player-profile-media > span { display: inline-flex; margin-top: 14px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.9); color: #101828; font-weight: 900; }
.bt20-player-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.bt20-player-badges span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.17); border: 1px solid rgba(255,255,255,.28); font-size: 13px; font-weight: 900; }
.bt20-squad-section { padding-top: 24px; }
.bt20-squad-search { max-width: 320px; }
.bt20-squad-group { margin-top: 34px; }
.bt20-squad-group h3 { font-size: 28px; letter-spacing: -1px; margin: 0 0 16px; color: var(--bt20-navy); }

/* Single posts / widgets */
.bt20-single { background: #fff; border: 1px solid var(--bt20-line); border-radius: 28px; padding: clamp(22px, 4vw, 38px); box-shadow: 0 14px 40px rgba(15,23,42,.07); }
.bt20-entry-content { font-size: 18px; }
.bt20-entry-content > *:first-child { margin-top: 0; }
.bt20-entry-content img { border-radius: 18px; }
.bt20-sidebar { display: grid; gap: 20px; }
.bt20-widget { background: #fff; border: 1px solid var(--bt20-line); border-radius: 24px; padding: 22px; box-shadow: 0 12px 35px rgba(15,23,42,.06); }
.bt20-widget h3, .widget-title { margin: 0 0 16px; font-size: 20px; letter-spacing: -.4px; }
.bt20-color-widget { border-top: 8px solid var(--team-primary); }
.bt20-detail-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.bt20-detail-list li { background: #f8fafc; border: 1px solid #eef2f7; border-radius: 15px; padding: 12px; }
.bt20-detail-list strong { display: block; margin-top: 4px; line-height: 1.25; }

/* Archive pages */
.bt20-archive-hero { padding: 42px; border-radius: 34px; background: #fff; box-shadow: var(--bt20-shadow); border: 1px solid var(--bt20-line); margin: 36px 0 28px; }
.bt20-archive-hero-dark { background: linear-gradient(135deg, var(--bt20-navy), var(--bt20-navy-2)); color: #fff; }
.bt20-archive-hero h1 { margin: 0 0 10px; font-size: clamp(36px, 5vw, 58px); line-height: .98; letter-spacing: -2px; }
.bt20-archive-hero p { margin: 0; max-width: 760px; color: inherit; opacity: .82; }
.navigation.pagination, .page-numbers { margin-top: 28px; }
.nav-links, .page-numbers { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.page-numbers { margin: 0; padding: 0; }
.nav-links .page-numbers, a.page-numbers, span.page-numbers { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 999px; background: #fff; border: 1px solid var(--bt20-line); font-weight: 900; }
.nav-links .current, span.page-numbers.current { background: var(--bt20-navy); color: #fff; border-color: var(--bt20-navy); }

/* Footer */
.bt20-site-footer { background: #061235; color: #dbeafe; padding: 52px 0 86px; }
.bt20-footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr 1fr; gap: 34px; }
.bt20-footer-logo { color: #fff; margin-bottom: 12px; }
.bt20-footer-grid p { color: #b8c7e5; margin: 8px 0; }
.bt20-disclaimer { font-size: 12px; line-height: 1.6; max-width: 640px; }
.bt20-site-footer h3 { color: #fff; margin: 0 0 14px; }
.bt20-footer-menu, .bt20-footer-posts { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.bt20-footer-menu a, .bt20-footer-posts a { color: #dbeafe; font-weight: 800; }
.bt20-footer-bottom { display: flex; justify-content: space-between; gap: 12px; color: #95a8cf; border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; font-size: 13px; }

/* Ticker */
.bt20-bottom-ticker { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; min-height: 54px; display: grid; grid-template-columns: 210px 1fr; background: #061235; color: #fff; box-shadow: 0 -8px 28px rgba(0,0,0,.18); }
.bt20-ticker-label { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--bt20-orange), #ffd05b); color: #061235; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }
.bt20-ticker-track-wrap { overflow: hidden; display: flex; align-items: center; }
.bt20-ticker-track { display: flex; gap: 42px; white-space: nowrap; animation: bt20Ticker 36s linear infinite; }
.bt20-ticker-track span { position: relative; font-weight: 800; color: #dbeafe; }
.bt20-ticker-track span:after { content: "•"; position: absolute; right: -25px; color: var(--bt20-orange); }
@keyframes bt20Ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Utility */
.bt20-filter-card.is-hidden { display: none !important; }
.search-form { display: flex; gap: 8px; }
.search-field { border: 1px solid var(--bt20-line); border-radius: 12px; padding: 11px 12px; width: 100%; }
.search-submit { border: 0; border-radius: 12px; padding: 11px 14px; background: var(--bt20-navy); color: #fff; font-weight: 900; }

@media (max-width: 1120px) {
  .bt20-team-grid, .bt20-player-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bt20-post-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bt20-db-nav { display: none; }
}

@media (max-width: 920px) {
  .bt20-header-inner { position: relative; }
  .bt20-brand-tagline { display: none; }
  .bt20-menu-toggle { display: block; margin-left: auto; }
  .bt20-main-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--bt20-line); border-radius: 20px; box-shadow: var(--bt20-shadow); padding: 10px; display: none; margin-top: 8px; }
  .bt20-main-nav.is-open { display: block; }
  .bt20-menu { display: grid; gap: 4px; }
  .bt20-menu a { border-radius: 12px; }
  .bt20-hero-grid, .bt20-layout, .bt20-team-profile-grid, .bt20-player-profile-grid { grid-template-columns: 1fr; }
  .bt20-featured-card { transform: none; }
  .bt20-db-hero-inner { align-items: start; flex-direction: column; }
  .bt20-db-toolbar { align-items: stretch; flex-direction: column; }
  .bt20-filter-input { width: 100%; }
  .bt20-team-facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bt20-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .bt20-main { padding-bottom: 64px; }
  .bt20-container { width: min(100% - 24px, var(--bt20-container)); }
  .bt20-hero { padding: 44px 0; }
  .bt20-hero-copy h1, .bt20-team-profile-copy h1, .bt20-player-profile-copy h1 { letter-spacing: -2px; }
  .bt20-post-grid, .bt20-post-grid-3, .bt20-team-grid, .bt20-player-grid { grid-template-columns: 1fr; }
  .bt20-section-head-row { align-items: start; flex-direction: column; }
  .bt20-db-hero { padding: 42px 0 64px; }
  .bt20-db-hero h1 { letter-spacing: -2px; }
  .bt20-hero-score-card { min-width: 0; width: 100%; }
  .bt20-team-facts { grid-template-columns: 1fr; }
  .bt20-team-profile-emblem { width: 150px; height: 150px; }
  .bt20-player-profile-img { max-width: 320px; margin: 0 auto; }
  .bt20-footer-grid { grid-template-columns: 1fr; }
  .bt20-footer-bottom { flex-direction: column; }
  .bt20-bottom-ticker { grid-template-columns: 1fr; min-height: 46px; }
  .bt20-ticker-label { display: none; }
  .bt20-ticker-track { gap: 28px; animation-duration: 26s; }
  .bt20-ticker-track span { font-size: 13px; }
}

@media (max-width: 480px) {
  .bt20-container { width: min(100% - 22px, var(--bt20-container)); }
  .bt20-logo-text { font-size: 24px; }
  .bt20-hero-copy p, .bt20-entry-content { font-size: 16px; }
  .bt20-hero-actions, .bt20-team-profile-actions { flex-direction: column; }
  .bt20-btn { width: 100%; }
  .search-form { flex-direction: column; }
  .search-submit { width: 100%; }
}

/* BharatT20 v1.3.0 IPL-style database upgrade */
.bt20-database-main {
  background: #071027;
  color: #ffffff;
  margin-top: -1px;
}
.bt20-database-main .bt20-db-section { padding-bottom: 86px; }
.bt20-database-main .bt20-toolbar-note { color: rgba(255,255,255,.72); }
.bt20-ipl-hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 207, 64, .18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(8, 166, 255, .16), transparent 28%),
    linear-gradient(180deg, #071027 0%, #081329 100%);
  padding-bottom: 42px;
}
.bt20-ipl-hero:after { display: none; }
.bt20-ipl-hero .bt20-breadcrumb { color: rgba(255,255,255,.68); }
.bt20-ipl-hero .bt20-breadcrumb a { color: rgba(255,255,255,.86); }
.bt20-ipl-hero h1 { letter-spacing: -5px; }
.bt20-glass-toolbar {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.bt20-glass-toolbar .bt20-filter-input {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.18);
}
.bt20-ipl-card-zone { margin-top: 0; }
.bt20-ipl-team-grid { gap: 16px; }

.bt20-team-card-ipl {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 7px;
  min-height: 296px;
  overflow: hidden;
  isolation: isolate;
}
.bt20-team-card-ipl:hover { transform: translateY(-6px); box-shadow: 0 28px 80px rgba(0,0,0,.32); }
.bt20-team-card-ipl .bt20-team-card-link { min-height: 100%; display: block; color: #fff; }
.bt20-team-card-stage {
  position: relative;
  min-height: 296px;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(180deg, var(--team-primary) 0%, var(--team-primary) 51%, var(--team-secondary) 52%, var(--team-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 42px 24px 30px;
}
.bt20-team-card-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.20), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.10));
  pointer-events: none;
  z-index: 1;
}
.bt20-team-curve {
  position: absolute;
  left: 50%;
  width: 140%;
  height: 182px;
  transform: translateX(-50%);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 0;
}
.bt20-team-curve-top { top: 0; background: var(--team-primary); }
.bt20-team-curve-bottom {
  top: 114px;
  height: 160px;
  background: var(--team-secondary);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  filter: saturate(.96);
}
.bt20-team-logo-showcase {
  position: relative;
  z-index: 3;
  width: 118px;
  height: 118px;
  margin: -6px auto 42px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 8px;
  transition: transform .28s ease, filter .28s ease;
}
.bt20-team-card-ipl:hover .bt20-team-logo-showcase { transform: scale(1.08) translateY(-4px); filter: drop-shadow(0 18px 22px rgba(0,0,0,.24)); }
.bt20-team-logo-showcase .bt20-team-emblem-img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 11px rgba(0,0,0,.30)); }
.bt20-team-logo-showcase .bt20-team-initials {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.16);
  border: 2px solid rgba(255,255,255,.34);
  box-shadow: inset 0 0 28px rgba(255,255,255,.14);
}
.bt20-team-logo-showcase .bt20-team-initials span { font-size: 30px; }
.bt20-team-card-stage h2 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(255,255,255,.92);
  text-align: center;
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.1;
  letter-spacing: -.65px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.bt20-team-short-pill {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0a1020;
  background: rgba(255,255,255,.86);
  font-size: 11px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .04em;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .24s ease, transform .24s ease;
}
.bt20-team-card-ipl:hover .bt20-team-short-pill { opacity: 1; transform: translateY(0); }
.bt20-team-hover-panel {
  position: absolute;
  z-index: 5;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(4, 10, 28, .72);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .26s ease, transform .26s ease;
}
.bt20-team-card-ipl:hover .bt20-team-hover-panel { opacity: 1; transform: translateY(0); }
.bt20-team-hover-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.bt20-team-hover-stats span {
  min-width: 0;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bt20-team-hover-stats strong {
  display: block;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.bt20-team-hover-panel em {
  display: block;
  margin-top: 10px;
  color: #ffe799;
  font-style: normal;
  font-weight: 1000;
  font-size: 13px;
  text-align: center;
}
.bt20-title-badge {
  position: relative;
  z-index: 4;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #0a1020;
  font-size: 12px;
  font-weight: 1000;
}

.bt20-player-toolbar { align-items: center; flex-wrap: wrap; }
.bt20-role-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.bt20-role-filters button {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
  transition: .2s ease;
}
.bt20-role-filters button:hover, .bt20-role-filters button.is-active {
  background: #ffffff;
  color: #09142e;
  transform: translateY(-1px);
}
.bt20-player-card-pro {
  position: relative;
  background: #fff;
  border: 0;
  color: #101828;
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(2,6,23,.18);
  overflow: hidden;
}
.bt20-player-card-pro:before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: -100px;
  height: 260px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: linear-gradient(135deg, var(--team-primary), var(--team-secondary));
  z-index: 0;
}
.bt20-player-card-pro:hover { transform: translateY(-8px); box-shadow: 0 28px 86px rgba(2,6,23,.27); }
.bt20-player-card-pro .bt20-player-card-link { position: relative; z-index: 1; }
.bt20-player-card-topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 16px 0;
}
.bt20-player-team-mini {
  display: inline-flex;
  max-width: 138px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  text-shadow: 0 2px 5px rgba(0,0,0,.18);
}
.bt20-player-card-pro .bt20-role-chip {
  margin-bottom: 0;
  background: rgba(255,255,255,.92);
  color: #101828;
}
.bt20-player-card-pro .bt20-player-card-img {
  min-height: 210px;
  padding: 18px 20px 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  overflow: visible;
}
.bt20-player-card-pro .bt20-player-card-img:after { display: none; }
.bt20-player-card-pro .bt20-player-team-band { display: none; }
.bt20-player-card-pro .bt20-player-card-img img,
.bt20-player-card-pro .bt20-player-card-img .bt20-placeholder {
  width: 176px;
  height: 176px;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 20px 42px rgba(0,0,0,.22);
  background: rgba(255,255,255,.16);
}
.bt20-player-card-pro .bt20-player-card-body {
  position: relative;
  z-index: 2;
  padding: 18px;
  text-align: center;
}
.bt20-player-card-pro .bt20-player-card-body h2 { font-size: 20px; }
.bt20-player-card-pro .bt20-player-card-stats { justify-content: center; }
.bt20-player-card-pro .bt20-card-cta {
  margin: 15px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: #061235;
}

.bt20-team-profile-ipl {
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(135deg, var(--team-primary), var(--team-secondary));
}
.bt20-team-profile-ipl .bt20-team-profile-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.bt20-team-profile-ipl .bt20-team-card-stage {
  min-height: 384px;
  box-shadow: 0 36px 90px rgba(0,0,0,.28);
}
.bt20-team-profile-ipl .bt20-team-logo-showcase { width: 150px; height: 150px; margin-bottom: 54px; }
.bt20-team-profile-ipl .bt20-team-card-stage h2 { font-size: 28px; }
.bt20-team-facts-ipl {
  grid-template-columns: repeat(5, minmax(0,1fr));
  margin-top: -36px;
}
.bt20-team-facts-ipl div {
  border: 0;
  border-top: 5px solid var(--team-primary);
  box-shadow: 0 20px 54px rgba(2,6,23,.13);
}
.bt20-squad-head { align-items: start; }
.bt20-squad-tools { display: grid; gap: 10px; justify-items: end; }
.bt20-squad-section .bt20-role-filters button {
  background: #eef2ff;
  border-color: #dbe4ff;
  color: #0b1b3d;
}
.bt20-squad-section .bt20-role-filters button.is-active,
.bt20-squad-section .bt20-role-filters button:hover {
  background: #061235;
  color: #fff;
}
.bt20-player-profile-pro {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, var(--team-primary), var(--team-secondary));
}
.bt20-player-profile-pro .bt20-player-profile-media {
  max-width: 390px;
  margin: 0 auto;
  padding: 0 0 24px;
}
.bt20-player-profile-pro .bt20-player-profile-img {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 20px 28px 0;
}
.bt20-player-profile-pro .bt20-player-profile-img img,
.bt20-player-profile-pro .bt20-player-profile-img .bt20-placeholder {
  border-radius: 34px 34px 0 0;
  box-shadow: 0 22px 54px rgba(0,0,0,.24);
}
.bt20-player-profile-pro .bt20-team-profile-actions { margin-top: 24px; }

@media (max-width: 1080px) {
  .bt20-team-grid, .bt20-player-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bt20-team-facts-ipl { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .bt20-database-main .bt20-db-section { padding-bottom: 56px; }
  .bt20-ipl-hero h1 { letter-spacing: -2px; }
  .bt20-team-grid, .bt20-player-grid { grid-template-columns: 1fr; }
  .bt20-team-card-stage { min-height: 286px; }
  .bt20-team-hover-panel { opacity: 1; transform: none; position: relative; left: auto; right: auto; bottom: auto; width: 100%; margin-top: 18px; }
  .bt20-team-short-pill { opacity: 1; transform: none; }
  .bt20-db-toolbar { align-items: stretch; }
  .bt20-role-filters { justify-content: flex-start; }
  .bt20-squad-tools { justify-items: stretch; width: 100%; }
  .bt20-team-facts-ipl { grid-template-columns: 1fr; }
}

/* BharatT20 v1.4.0 professional polish: clean player image, fan votes, related articles, footer links */
.bt20-player-profile-clean {
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,.16), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.20), transparent 24%),
    linear-gradient(135deg, var(--team-primary), var(--team-secondary));
}
.bt20-player-profile-clean .bt20-player-profile-grid {
  grid-template-columns: 390px minmax(0, 1fr);
}
.bt20-player-image-card-clean {
  max-width: none;
  margin: 0;
  padding: 18px;
  border-radius: 36px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 28px 78px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.bt20-player-profile-clean .bt20-player-profile-img {
  padding: 0;
  border: 0;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: none;
  overflow: hidden;
}
.bt20-player-profile-clean .bt20-player-profile-img img,
.bt20-player-profile-clean .bt20-player-profile-img .bt20-placeholder {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  box-shadow: none;
  background: #ffffff;
}
.bt20-player-profile-clean .bt20-player-profile-img .bt20-placeholder {
  min-height: auto;
  align-items: center;
  justify-content: center;
}
.bt20-player-image-caption {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.bt20-player-image-caption span {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #101828;
  font-size: 12px;
  font-weight: 1000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bt20-fan-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 16px 0 6px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.bt20-fan-button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--bt20-orange), #ffd05b);
  color: #08142f;
  font-size: 14px;
  font-weight: 1000;
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
  transition: transform .2s ease, opacity .2s ease;
}
.bt20-fan-button:hover:not(:disabled) { transform: translateY(-2px); }
.bt20-fan-button:disabled { cursor: default; opacity: .92; }
.bt20-fan-button.is-voted { background: #ffffff; color: #067647; }
.bt20-fan-count {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 900;
}
.bt20-fan-count strong { color: #ffffff; font-size: 18px; }
.bt20-fan-box small {
  flex-basis: 100%;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}
.bt20-related-articles-section {
  border-top: 1px solid rgba(6,18,53,.08);
  padding-top: 44px;
}
.bt20-related-articles-section .bt20-section-head-row p { margin: 6px 0 0; }
.bt20-related-articles-section .bt20-post-grid-3 { align-items: stretch; }

.bt20-site-footer {
  padding: 34px 0 74px;
  background: linear-gradient(180deg, #061235, #040b1d);
}
.bt20-footer-grid {
  grid-template-columns: 1.25fr .85fr .9fr 1fr;
  gap: 24px;
  align-items: start;
}
.bt20-footer-logo { font-size: 23px; }
.bt20-footer-grid p {
  font-size: 12px;
  line-height: 1.55;
  color: #aebfe0;
}
.bt20-disclaimer {
  font-size: 10.5px;
  line-height: 1.55;
  opacity: .82;
}
.bt20-site-footer h3,
.bt20-footer-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 1000;
}
.bt20-footer-menu,
.bt20-footer-posts {
  gap: 4px;
}
.bt20-footer-menu a,
.bt20-footer-posts a,
.bt20-footer-link-list a {
  display: inline-flex;
  color: #c6d5f2;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
  padding: 3px 0;
}
.bt20-footer-menu a:hover,
.bt20-footer-posts a:hover,
.bt20-footer-link-list a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bt20-footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.bt20-footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  font-size: 11px;
}
.bt20-footer-bottom a { color: #c6d5f2; }
.bt20-footer-bottom a:hover { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }

.bt20-filter-empty {
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-weight: 800;
}
.bt20-squad-section .bt20-filter-empty {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

@media (max-width: 920px) {
  .bt20-player-profile-clean .bt20-player-profile-grid { grid-template-columns: 1fr; }
  .bt20-player-image-card-clean { max-width: 390px; margin: 0 auto; }
  .bt20-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .bt20-player-profile-hero { padding: 38px 0 46px; }
  .bt20-player-profile-clean .bt20-player-profile-copy h1 { font-size: clamp(38px, 14vw, 58px); }
  .bt20-player-image-card-clean { width: min(100%, 360px); padding: 12px; border-radius: 28px; }
  .bt20-player-profile-clean .bt20-player-profile-img,
  .bt20-player-profile-clean .bt20-player-profile-img img,
  .bt20-player-profile-clean .bt20-player-profile-img .bt20-placeholder { border-radius: 22px; }
  .bt20-fan-box { align-items: stretch; flex-direction: column; }
  .bt20-fan-button { width: 100%; }
  .bt20-fan-count { justify-content: center; }
  .bt20-footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .bt20-site-footer { padding-top: 28px; }
  .bt20-related-articles-section .bt20-section-head-row { gap: 10px; }
}
.bt20-footer-widgets-row {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: grid;
  gap: 18px;
}

/* v1.5 integration fixes */
.bt20-plugin-notice {
  background: #fff;
  border: 1px solid var(--bt20-line);
  border-radius: 24px;
  box-shadow: var(--bt20-shadow);
  padding: 28px;
  max-width: 820px;
  margin: 32px auto;
  text-align: center;
}
.bt20-plugin-notice h2 { margin: 0 0 8px; letter-spacing: -0.8px; color: var(--bt20-navy); }
.bt20-plugin-notice p { margin: 0; color: var(--bt20-muted); }

/* BharatT20 v1.6.0: article player mentions + player status */
.bt20-article-aside { min-width: 0; }
.bt20-mentioned-players {
  background: #fff;
  border: 1px solid var(--bt20-line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(15,23,42,.07);
  margin-bottom: 22px;
  position: sticky;
  top: 96px;
}
.bt20-mentioned-head h2 { margin: 0 0 14px; font-size: 20px; line-height: 1.15; letter-spacing: -.5px; }
.bt20-mentioned-list { display: grid; gap: 12px; }
.bt20-mentioned-player-card {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid #edf1f7;
  border-radius: 18px;
  background: linear-gradient(180deg,#fff,#f8fbff);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bt20-mentioned-player-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(15,23,42,.10); border-color: #d7e3f5; color: inherit; }
.bt20-mentioned-player-img { width: 58px; height: 58px; border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, var(--bt20-navy), var(--bt20-orange)); display:flex; align-items:center; justify-content:center; color:#fff; font-size: 13px; font-weight: 900; }
.bt20-mentioned-player-img img { width: 100%; height: 100%; object-fit: cover; }
.bt20-mentioned-player-card strong { display:block; font-size: 14px; line-height: 1.2; color: var(--bt20-ink); }
.bt20-mentioned-player-card small { display:block; margin-top: 3px; color: var(--bt20-muted); font-size: 12px; line-height: 1.25; }
.bt20-mentioned-player-card em { display:inline-flex; margin-top: 6px; font-style: normal; color: #9a3412; background: #fff7ed; border: 1px solid #fed7aa; padding: 2px 7px; border-radius: 999px; font-size: 11px; font-weight: 900; }
.bt20-status-chip { display: inline-flex; align-items:center; padding: 6px 10px; border-radius: 999px; background: #fff7ed; color: #9a3412; font-size: 12px; font-weight: 900; border: 1px solid #fed7aa; }
.bt20-status-injured { background:#fff1f2; color:#9f1239; border-color:#fecdd3; }
.bt20-status-released, .bt20-status-inactive { background:#f1f5f9; color:#334155; border-color:#cbd5e1; }
.bt20-status-transferred { background:#eef4ff; color:#1d4ed8; border-color:#bfdbfe; }
.bt20-status-retired { background:#f5f3ff; color:#5b21b6; border-color:#ddd6fe; }

@media (max-width: 980px) {
  .bt20-mentioned-players { position: static; }
}

/* BharatT20 v1.7.0: refined search, admin ads, SEO-friendly widgets, comments */
.bt20-home-banner-card {
  display: block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}
.bt20-home-banner-img {
  width: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.bt20-search-panel {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(240px, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(100%, 980px);
  margin: -34px auto 30px;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(226,232,240,.98);
  box-shadow: 0 18px 56px rgba(6,18,53,.16);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 4;
}
.bt20-search-panel-copy { display: grid; gap: 2px; }
.bt20-search-panel-copy strong { font-size: 15px; line-height: 1.2; color: var(--bt20-navy); font-weight: 1000; }
.bt20-search-panel-copy span { font-size: 12px; line-height: 1.35; color: var(--bt20-muted); font-weight: 750; }
.bt20-search-input-wrap { position: relative; }
.bt20-search-input-wrap:before { content: "⌕"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #667085; font-size: 18px; z-index: 1; }
.bt20-search-panel .bt20-filter-input,
.bt20-search-form .bt20-search-field {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px 12px 42px;
  border-radius: 999px;
  border: 1px solid #d8e0ec;
  background: #f8fafc;
  color: var(--bt20-ink);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.bt20-search-panel .bt20-filter-input:focus,
.bt20-search-form .bt20-search-field:focus {
  background: #fff;
  border-color: var(--bt20-blue);
  box-shadow: 0 0 0 4px rgba(12,87,189,.10);
}
.bt20-search-panel .bt20-role-filters { justify-content: flex-end; }
.bt20-search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bt20-search-form .bt20-search-field { padding-left: 18px; }
.bt20-search-submit {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--bt20-navy);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.bt20-search-submit:hover { background: var(--bt20-blue); }

.bt20-ad-wrap {
  margin: 26px auto;
  text-align: center;
}
.bt20-ad-wrap.bt20-container { width: min(var(--bt20-container), calc(100% - 32px)); }
.bt20-ad-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #98a2b3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.bt20-ad-box {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px dashed #cbd5e1;
  border-radius: 20px;
  background: #f8fafc;
  overflow: hidden;
}
.bt20-ad-box:empty:before { content: "Ad Space"; color: #94a3b8; font-size: 13px; font-weight: 900; }
.bt20-ad-sidebar { margin: 0; }
.bt20-ad-sidebar .bt20-ad-box { min-height: 250px; }
.bt20-ad-single-top, .bt20-ad-single-bottom { margin: 22px 0; }
.bt20-ad-footer { margin-top: 0; margin-bottom: 0; padding: 22px 0; }
.bt20-ad-hidden-by-guard { display: none !important; }

.bt20-trending-mini-list { display: grid; gap: 12px; }
.bt20-trending-mini {
  display: grid;
  grid-template-columns: 70px minmax(0,1fr);
  gap: 12px;
  align-items: center;
  color: inherit;
}
.bt20-trending-mini:hover strong { color: var(--bt20-blue); }
.bt20-trending-thumb {
  width: 70px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f7;
  display: block;
}
.bt20-trending-thumb img,
.bt20-mini-thumb-placeholder {
  width: 70px;
  height: 54px;
  object-fit: cover;
  display: grid;
  place-items: center;
}
.bt20-mini-thumb-placeholder {
  background: linear-gradient(135deg, var(--bt20-navy), var(--bt20-blue));
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
}
.bt20-trending-mini strong {
  font-size: 13px;
  line-height: 1.28;
  font-weight: 900;
  color: var(--bt20-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Comments: neat, readable, and mobile-safe */
.comments-area {
  margin-top: 36px;
  background: #fff;
  border: 1px solid var(--bt20-line);
  border-radius: 28px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 14px 40px rgba(15,23,42,.07);
}
.comments-title,
.comment-reply-title {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--bt20-navy);
}
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.comment-list .children {
  list-style: none;
  margin: 16px 0 0 24px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.comment-body {
  padding: 18px;
  border: 1px solid #edf1f7;
  border-radius: 22px;
  background: #f8fafc;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--bt20-navy);
}
.comment-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.comment-metadata,
.comment-awaiting-moderation {
  margin: 6px 0 10px;
  color: var(--bt20-muted);
  font-size: 12px;
  font-weight: 700;
}
.comment-content { color: #344054; }
.comment-content p { margin: 0 0 10px; }
.reply a,
.comment-reply-link {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--bt20-blue);
  font-size: 12px;
  font-weight: 900;
}
.comment-respond {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--bt20-line);
}
.comment-form { display: grid; gap: 14px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: 7px; color: var(--bt20-navy); font-size: 13px; font-weight: 900; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid #d8e0ec;
  border-radius: 16px;
  padding: 12px 14px;
  background: #f8fafc;
  outline: none;
}
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form input:focus,
.comment-form textarea:focus {
  background: #fff;
  border-color: var(--bt20-blue);
  box-shadow: 0 0 0 4px rgba(12,87,189,.10);
}
.form-submit .submit {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--bt20-orange), #ffd05b);
  color: #08142f;
  font-weight: 1000;
}
.logged-in-as,
.comment-notes { color: var(--bt20-muted); font-size: 13px; }

@media (max-width: 980px) {
  .bt20-search-panel { grid-template-columns: 1fr; align-items: stretch; margin-top: 20px; }
  .bt20-search-panel .bt20-role-filters { justify-content: flex-start; }
  .bt20-home-banner-img { min-height: 240px; }
}
@media (max-width: 680px) {
  .bt20-search-form { display: grid; }
  .bt20-search-submit { width: 100%; }
  .bt20-trending-mini { grid-template-columns: 64px 1fr; }
  .bt20-trending-thumb, .bt20-trending-thumb img, .bt20-mini-thumb-placeholder { width: 64px; height: 50px; }
  .comment-list .children { margin-left: 10px; }
  .comment-body { padding: 14px; }
  .bt20-ad-box { min-height: 84px; }
}


/* BharatT20 v1.8.0 refinements: visible filters, cleaner search, trending cards, meta controls */
.bt20-glass-toolbar.bt20-search-panel,
.bt20-search-panel {
  grid-template-columns: minmax(190px, .55fr) minmax(280px, 1fr);
  align-items: center;
  gap: 16px;
  width: min(100%, 980px);
  padding: 18px;
}
.bt20-player-toolbar .bt20-role-filters {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}
.bt20-search-panel .bt20-role-filters button,
.bt20-role-filters button {
  border: 1px solid #d9e3f0;
  background: #eef3fb;
  color: #0b1b3d;
  box-shadow: 0 1px 0 rgba(255,255,255,.75) inset;
}
.bt20-search-panel .bt20-role-filters button:hover,
.bt20-search-panel .bt20-role-filters button.is-active,
.bt20-role-filters button:hover,
.bt20-role-filters button.is-active {
  border-color: #061235;
  background: #061235;
  color: #ffffff;
  transform: translateY(-1px);
}
.bt20-search-panel .bt20-filter-input::placeholder { color: #667085; opacity: 1; }
.bt20-search-panel-copy strong { color: #061235; }
.bt20-search-panel-copy span { color: #4b5870; }

.bt20-trending-card-list {
  display: grid;
  gap: 16px;
}
.bt20-trending-card {
  display: grid;
  gap: 9px;
  color: inherit;
  text-decoration: none;
}
.bt20-trending-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f7;
  box-shadow: 0 10px 26px rgba(15,23,42,.10);
}
.bt20-trending-card-thumb img,
.bt20-trending-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  object-fit: cover;
}
.bt20-trending-card-placeholder {
  background: linear-gradient(135deg, var(--bt20-navy), var(--bt20-blue));
  color: #fff;
  font-size: 16px;
  font-weight: 1000;
}
.bt20-trending-card strong {
  color: var(--bt20-ink);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: -0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bt20-trending-card:hover strong { color: var(--bt20-blue); }
.bt20-widget .bt20-trending-mini-list { display: none; }

.bt20-meta:empty { display: none; }
.bt20-meta span + span:before,
.bt20-card-meta span + a:before { content: none; }

@media (max-width: 980px) {
  .bt20-glass-toolbar.bt20-search-panel,
  .bt20-search-panel { grid-template-columns: 1fr; margin-top: 18px; }
  .bt20-player-toolbar .bt20-role-filters { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .bt20-search-panel { border-radius: 22px; padding: 14px; }
  .bt20-player-toolbar .bt20-role-filters { gap: 8px; }
  .bt20-search-panel .bt20-role-filters button { padding: 9px 11px; font-size: 11px; }
}

/* BharatT20 v1.8.0 comment polish */
.comments-area a { color: var(--bt20-blue); text-decoration: none; }
.comments-area a:hover { text-decoration: underline; }
.comment-author cite { font-style: normal; }
.comment-meta { display: grid; gap: 4px; }
.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--bt20-muted);
  font-size: 13px;
}
.comment-form-cookies-consent input { margin-top: 3px; }
.comment-form-cookies-consent label { margin: 0; font-weight: 700; color: var(--bt20-muted); }
.comment-form .form-submit { margin-top: 4px; }
.no-comments {
  margin-top: 18px;
  color: var(--bt20-muted);
  font-weight: 800;
}

/* BharatT20 v1.9.0: article search panel, TOC, related article controls */
.bt20-article-search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.25fr);
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f6f9ff);
  border: 1px solid #e5eaf3;
  border-radius: 26px;
  padding: 18px;
  margin: 22px 0 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}
.bt20-article-search-copy { display: grid; gap: 4px; }
.bt20-article-search-copy strong { color: var(--bt20-navy); font-size: 20px; letter-spacing: -.02em; }
.bt20-article-search-copy small { color: var(--bt20-muted); font-weight: 700; line-height: 1.45; }
.bt20-article-search-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.bt20-article-search-form input[type="search"] {
  min-height: 52px;
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  background: #fff;
  padding: 0 18px;
  font-weight: 800;
  color: var(--bt20-navy);
  outline: none;
}
.bt20-article-search-form input[type="search"]::placeholder { color: #667085; opacity: 1; }
.bt20-article-search-form input[type="search"]:focus { border-color: var(--bt20-blue); box-shadow: 0 0 0 4px rgba(12, 87, 189, .12); }
.bt20-article-search-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--bt20-orange);
  color: #111827;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(249, 115, 22, .22);
}
.bt20-article-search-form button:hover { transform: translateY(-1px); }
.bt20-sidebar .bt20-widget-search { display: none !important; }

.bt20-article-toc {
  background: #ffffff;
  border: 1px solid #e5eaf3;
  border-radius: 24px;
  padding: 18px;
  margin: 22px 0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}
.bt20-toc-head { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 12px; }
.bt20-toc-head span { color: var(--bt20-orange); font-size: 12px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.bt20-toc-head strong { color: var(--bt20-navy); font-size: 18px; }
.bt20-article-toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.bt20-article-toc li { color: #344054; font-weight: 800; }
.bt20-article-toc a { color: #1f2937; text-decoration: none; }
.bt20-article-toc a:hover { color: var(--bt20-blue); text-decoration: underline; }
.bt20-toc-level-3 { margin-left: 18px; font-size: 95%; }
.bt20-toc-level-4 { margin-left: 34px; font-size: 90%; }
.bt20-entry-content h2[id], .bt20-entry-content h3[id], .bt20-entry-content h4[id] { scroll-margin-top: 110px; }

.bt20-post-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bt20-related-articles-section { width: 100%; }
.bt20-related-card-grid .bt20-post-card { min-height: 100%; }
.bt20-related-hide-excerpt .bt20-post-body p { display: none !important; }
.bt20-related-hide-excerpt .bt20-card-meta { margin-top: 10px; }
.bt20-related-hide-excerpt .bt20-card-meta span { display: none; }
.bt20-related-hide-excerpt .bt20-post-card h2 { margin-bottom: 0; }

@media (max-width: 1100px) {
  .bt20-post-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .bt20-article-search-panel { grid-template-columns: 1fr; padding: 14px; border-radius: 20px; }
  .bt20-article-search-form { grid-template-columns: 1fr; }
  .bt20-article-search-form button { width: 100%; }
  .bt20-post-grid-4 { grid-template-columns: 1fr; }
  .bt20-toc-head { display: grid; }
  .bt20-toc-level-3, .bt20-toc-level-4 { margin-left: 8px; }
}


/* BharatT20 v1.9.1: smaller related player article grid + TOC label cleanup */
.bt20-related-articles-section.bt20-related-player {
  width: 90%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.bt20-related-player .bt20-related-card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.bt20-related-player .bt20-post-card {
  border-radius: 16px;
  overflow: hidden;
}
.bt20-related-player .bt20-post-thumb {
  min-height: 110px;
  height: 110px;
}
.bt20-related-player .bt20-post-thumb img {
  height: 110px;
  object-fit: cover;
}
.bt20-related-player .bt20-post-body {
  padding: 11px;
}
.bt20-related-player .bt20-post-body h2 {
  font-size: 14px;
  line-height: 1.25;
  margin: 0;
}
.bt20-related-player .bt20-post-top,
.bt20-related-player .bt20-card-meta,
.bt20-related-player .bt20-post-body p {
  display: none !important;
}
.bt20-article-toc .bt20-toc-head {
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .bt20-related-player .bt20-related-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .bt20-related-articles-section.bt20-related-player { width: 100%; }
  .bt20-related-player .bt20-related-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 460px) {
  .bt20-related-player .bt20-related-card-grid { grid-template-columns: 1fr; }
  .bt20-related-player .bt20-post-thumb,
  .bt20-related-player .bt20-post-thumb img { height: 160px; }
}


/* BharatT20 v1.9.2: unified Articles You May Like layout */
.bt20-related-articles-section,
.bt20-related-articles-section.bt20-related-player,
.bt20-related-articles-section.bt20-related-team,
.bt20-related-articles-section.bt20-related {
  width: min(80%, 1180px) !important;
  max-width: 1180px !important;
  margin: 44px auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.bt20-related-articles-section .bt20-section-head-row {
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.bt20-related-articles-section .bt20-section-head-row h2 {
  font-size: clamp(24px, 2.1vw, 34px);
  margin: 4px 0 0;
  letter-spacing: -0.7px;
}

.bt20-related-articles-section .bt20-section-head-row .bt20-muted {
  display: none !important;
}

.bt20-related-articles-section .bt20-section-head-row .bt20-link {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.bt20-related-card-grid,
.bt20-related-player .bt20-related-card-grid,
.bt20-related-team .bt20-related-card-grid,
.bt20-related .bt20-related-card-grid,
.bt20-post-grid.bt20-post-grid-4.bt20-related-card-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.bt20-related-card-grid .bt20-post-card,
.bt20-related-player .bt20-post-card,
.bt20-related-team .bt20-post-card,
.bt20-related .bt20-post-card {
  min-height: 0 !important;
  border-radius: 16px !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07) !important;
  background: #fff !important;
  overflow: hidden !important;
}

.bt20-related-card-grid .bt20-post-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12) !important;
}

.bt20-related-card-grid .bt20-post-thumb,
.bt20-related-player .bt20-post-thumb,
.bt20-related-team .bt20-post-thumb,
.bt20-related .bt20-post-thumb {
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
  height: auto !important;
  background: #edf2f7 !important;
}

.bt20-related-card-grid .bt20-post-thumb img,
.bt20-related-card-grid .bt20-post-thumb .bt20-placeholder,
.bt20-related-player .bt20-post-thumb img,
.bt20-related-team .bt20-post-thumb img,
.bt20-related .bt20-post-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.bt20-related-card-grid .bt20-post-body,
.bt20-related-player .bt20-post-body,
.bt20-related-team .bt20-post-body,
.bt20-related .bt20-post-body {
  padding: 10px 10px 12px !important;
}

.bt20-related-card-grid .bt20-post-body h2,
.bt20-related-player .bt20-post-body h2,
.bt20-related-team .bt20-post-body h2,
.bt20-related .bt20-post-body h2 {
  font-size: 13.5px !important;
  line-height: 1.28 !important;
  letter-spacing: -0.2px !important;
  margin: 0 !important;
}

.bt20-related-card-grid .bt20-post-body h2 a,
.bt20-related-player .bt20-post-body h2 a,
.bt20-related-team .bt20-post-body h2 a,
.bt20-related .bt20-post-body h2 a {
  color: #111827 !important;
  text-decoration: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.bt20-related-card-grid .bt20-post-top,
.bt20-related-card-grid .bt20-card-meta,
.bt20-related-card-grid .bt20-post-body p,
.bt20-related-player .bt20-post-top,
.bt20-related-player .bt20-card-meta,
.bt20-related-player .bt20-post-body p,
.bt20-related-team .bt20-post-top,
.bt20-related-team .bt20-card-meta,
.bt20-related-team .bt20-post-body p,
.bt20-related .bt20-post-top,
.bt20-related .bt20-card-meta,
.bt20-related .bt20-post-body p {
  display: none !important;
}

@media (max-width: 1280px) {
  .bt20-related-articles-section,
  .bt20-related-articles-section.bt20-related-player,
  .bt20-related-articles-section.bt20-related-team,
  .bt20-related-articles-section.bt20-related {
    width: min(90%, 1100px) !important;
  }
  .bt20-related-card-grid,
  .bt20-related-player .bt20-related-card-grid,
  .bt20-related-team .bt20-related-card-grid,
  .bt20-related .bt20-related-card-grid,
  .bt20-post-grid.bt20-post-grid-4.bt20-related-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .bt20-related-articles-section,
  .bt20-related-articles-section.bt20-related-player,
  .bt20-related-articles-section.bt20-related-team,
  .bt20-related-articles-section.bt20-related {
    width: calc(100% - 28px) !important;
  }
  .bt20-related-card-grid,
  .bt20-related-player .bt20-related-card-grid,
  .bt20-related-team .bt20-related-card-grid,
  .bt20-related .bt20-related-card-grid,
  .bt20-post-grid.bt20-post-grid-4.bt20-related-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .bt20-related-articles-section .bt20-section-head-row {
    align-items: flex-start;
  }
  .bt20-related-card-grid,
  .bt20-related-player .bt20-related-card-grid,
  .bt20-related-team .bt20-related-card-grid,
  .bt20-related .bt20-related-card-grid,
  .bt20-post-grid.bt20-post-grid-4.bt20-related-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

@media (max-width: 420px) {
  .bt20-related-card-grid,
  .bt20-related-player .bt20-related-card-grid,
  .bt20-related-team .bt20-related-card-grid,
  .bt20-related .bt20-related-card-grid,
  .bt20-post-grid.bt20-post-grid-4.bt20-related-card-grid {
    grid-template-columns: 1fr !important;
  }
}


/* BharatT20 v1.9.3: Articles You May Like - 3 larger cards per row */
.bt20-related-card-grid,
.bt20-related-player .bt20-related-card-grid,
.bt20-related-team .bt20-related-card-grid,
.bt20-related .bt20-related-card-grid,
.bt20-post-grid.bt20-post-grid-4.bt20-related-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.bt20-related-card-grid .bt20-post-card,
.bt20-related-player .bt20-post-card,
.bt20-related-team .bt20-post-card,
.bt20-related .bt20-post-card {
  border-radius: 22px !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09) !important;
}

.bt20-related-card-grid .bt20-post-thumb,
.bt20-related-player .bt20-post-thumb,
.bt20-related-team .bt20-post-thumb,
.bt20-related .bt20-post-thumb {
  aspect-ratio: 16 / 9 !important;
}

.bt20-related-card-grid .bt20-post-body,
.bt20-related-player .bt20-post-body,
.bt20-related-team .bt20-post-body,
.bt20-related .bt20-post-body {
  padding: 16px 16px 18px !important;
}

.bt20-related-card-grid .bt20-post-body h2,
.bt20-related-player .bt20-post-body h2,
.bt20-related-team .bt20-post-body h2,
.bt20-related .bt20-post-body h2 {
  font-size: clamp(17px, 1.25vw, 21px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.45px !important;
}

@media (max-width: 900px) {
  .bt20-related-card-grid,
  .bt20-related-player .bt20-related-card-grid,
  .bt20-related-team .bt20-related-card-grid,
  .bt20-related .bt20-related-card-grid,
  .bt20-post-grid.bt20-post-grid-4.bt20-related-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 520px) {
  .bt20-related-card-grid,
  .bt20-related-player .bt20-related-card-grid,
  .bt20-related-team .bt20-related-card-grid,
  .bt20-related .bt20-related-card-grid,
  .bt20-post-grid.bt20-post-grid-4.bt20-related-card-grid {
    grid-template-columns: 1fr !important;
  }
}

/* BharatT20 dedicated Live Scores website page */
.bt20-live-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(247,167,0,.16), transparent 28%),
    linear-gradient(180deg, #f5f8ff 0%, #ffffff 420px);
}
.bt20-live-hero-site {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(8,166,255,.34), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(247,167,0,.28), transparent 24%),
    linear-gradient(135deg, #061235 0%, #09245d 54%, #0b57d0 100%);
}
.bt20-live-hero-site:after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -76px;
  height: 150px;
  background: #f8fbff;
  transform: rotate(-2.4deg);
  z-index: 0;
}
.bt20-live-hero-bg,
.bt20-live-hero-grid { position: relative; z-index: 1; }
.bt20-live-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.bt20-live-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  color: #eaf2ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 16px;
}
.bt20-live-kicker i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34,197,94,.17);
  animation: bt20LivePulse 1.3s ease-in-out infinite;
}
.bt20-live-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .88;
  letter-spacing: -4px;
}
.bt20-live-hero-copy p {
  max-width: 720px;
  margin: 0 0 28px;
  color: #dbeafe;
  font-size: clamp(16px, 2vw, 19px);
}
.bt20-live-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.bt20-live-hero-card {
  position: relative;
  border-radius: 34px;
  padding: 24px;
  min-height: 270px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 32px 80px rgba(0,0,0,.26);
  backdrop-filter: blur(16px);
  animation: bt20LiveFloat 4.8s ease-in-out infinite;
}
.bt20-live-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #061235;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}
.bt20-live-card-status span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #ef4444;
  box-shadow: 0 0 0 7px rgba(239,68,68,.16);
  animation: bt20LivePulse 1.2s ease-in-out infinite;
}
.bt20-live-mini-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}
.bt20-live-mini-teams div {
  border-radius: 24px;
  padding: 18px;
  text-align: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
}
.bt20-live-mini-teams strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}
.bt20-live-mini-teams span {
  display: block;
  margin-top: 8px;
  color: #ffda75;
  font-size: 20px;
  font-weight: 900;
}
.bt20-live-mini-teams em {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bt20-orange), #ffd05b);
  color: #061235;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0,0,0,.2);
}
.bt20-live-mini-bars {
  display: grid;
  gap: 9px;
  margin-top: 30px;
}
.bt20-live-mini-bars span {
  display: block;
  height: 9px;
  border-radius: 99px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
  position: relative;
}
.bt20-live-mini-bars span:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 52%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffda75, #22c55e);
  animation: bt20LiveBar 2.8s ease-in-out infinite;
}
.bt20-live-mini-bars span:nth-child(2):after { width: 76%; animation-delay: .35s; }
.bt20-live-mini-bars span:nth-child(3):after { width: 38%; animation-delay: .7s; }
.bt20-live-orb,
.bt20-live-ball {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bt20-live-orb.orb-one {
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  background: rgba(255,255,255,.08);
}
.bt20-live-orb.orb-two {
  width: 180px;
  height: 180px;
  left: 8%;
  bottom: -60px;
  background: rgba(247,167,0,.18);
}
.bt20-live-ball {
  width: 26px;
  height: 26px;
  background: #e32942;
  box-shadow: inset -6px -6px 0 rgba(0,0,0,.14), 0 20px 40px rgba(0,0,0,.22);
  opacity: .9;
}
.bt20-live-ball:before {
  content: "";
  position: absolute;
  inset: 5px 11px;
  border-left: 2px solid rgba(255,255,255,.65);
  border-right: 2px solid rgba(255,255,255,.65);
  border-radius: 50%;
}
.bt20-live-ball.ball-one { left: 10%; top: 28%; animation: bt20LiveFloat 5s ease-in-out infinite; }
.bt20-live-ball.ball-two { right: 34%; bottom: 18%; animation: bt20LiveFloat 6s ease-in-out infinite reverse; }
.bt20-live-site-ticker {
  position: relative;
  z-index: 3;
  margin-top: -38px;
  margin-bottom: 28px;
}
.bt20-live-site-ticker .bt20ca-ticker,
.bt20-live-site-ticker > * {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(6,18,53,.14);
}
.bt20-live-score-shell {
  position: relative;
  z-index: 2;
  padding: 20px 0 86px;
}
.bt20-live-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.bt20-live-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -1.8px;
  color: var(--bt20-navy);
}
.bt20-live-section-head p {
  max-width: 500px;
  margin: 0;
  color: var(--bt20-muted);
  font-weight: 700;
}
.bt20-live-missing-plugin {
  border-radius: 28px;
  padding: clamp(24px, 5vw, 44px);
  background: #fff;
  border: 1px solid var(--bt20-line);
  box-shadow: var(--bt20-shadow);
}
.bt20-live-missing-plugin h2 {
  margin-top: 0;
  color: var(--bt20-navy);
}
.bt20-live-missing-plugin ol {
  margin-bottom: 0;
}

/* Make the Cricket API shortcode look native inside the website page */
.bt20-live-score-shell .bt20ca-page {
  padding: 0 !important;
  background: transparent !important;
}
.bt20-live-score-shell .bt20ca-hero {
  display: none !important;
}
.bt20-live-score-shell .bt20ca-counts {
  margin-top: 0 !important;
}
.bt20-live-score-shell .bt20ca-toolbar,
.bt20-live-score-shell .bt20ca-counts,
.bt20-live-score-shell .bt20ca-card {
  box-shadow: 0 16px 42px rgba(15,23,42,.09) !important;
}
.bt20-live-score-shell .bt20ca-match-grid {
  gap: 24px !important;
}
.bt20-live-score-shell .bt20ca-card {
  border-radius: 28px !important;
}

@keyframes bt20LivePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.82); opacity: .65; }
}
@keyframes bt20LiveFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes bt20LiveBar {
  0%, 100% { transform: translateX(0); opacity: .75; }
  50% { transform: translateX(22%); opacity: 1; }
}

@media (max-width: 920px) {
  .bt20-live-hero-grid {
    grid-template-columns: 1fr;
  }
  .bt20-live-hero-card {
    max-width: 520px;
  }
  .bt20-live-section-head {
    display: block;
  }
  .bt20-live-section-head p {
    margin-top: 10px;
  }
}
@media (max-width: 560px) {
  .bt20-live-hero-site {
    padding: 46px 0 70px;
  }
  .bt20-live-hero-copy h1 {
    letter-spacing: -2.3px;
  }
  .bt20-live-hero-actions .bt20-btn {
    width: 100%;
  }
  .bt20-live-hero-card {
    padding: 18px;
    min-height: 230px;
    border-radius: 26px;
  }
  .bt20-live-mini-teams {
    gap: 8px;
  }
  .bt20-live-mini-teams div {
    padding: 13px 9px;
    border-radius: 18px;
  }
  .bt20-live-mini-teams strong {
    font-size: 22px;
  }
  .bt20-live-mini-teams span {
    font-size: 16px;
  }
  .bt20-live-mini-teams em {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
}

/* BharatT20 About / Contact pages */
.bt20-info-page {
  background: linear-gradient(180deg, #f7faff 0, #fff 420px);
}
.bt20-info-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.20), transparent 24%),
    radial-gradient(circle at 16% 18%, rgba(247,167,0,.34), transparent 30%),
    linear-gradient(135deg, #061235 0%, #082058 54%, #0c57bd 100%);
}
.bt20-info-hero:after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -74px;
  height: 140px;
  background: #fff;
  transform: skewY(-2deg);
  transform-origin: 0 0;
}
.bt20-info-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.2) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,.16) 25%, transparent 25%);
  background-size: 38px 38px;
}
.bt20-info-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
}
.bt20-info-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .96;
  letter-spacing: -3px;
  max-width: 900px;
}
.bt20-info-hero-copy p {
  margin: 0 0 26px;
  max-width: 720px;
  color: #dbeafe;
  font-size: 18px;
}
.bt20-info-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bt20-info-hero-card {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.13);
  box-shadow: 0 26px 80px rgba(0,0,0,.24);
  border-radius: 34px;
  padding: 28px;
  backdrop-filter: blur(12px);
}
.bt20-info-hero-card span,
.bt20-info-stat-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #061235;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bt20-info-hero-card strong {
  display: block;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -1.4px;
  margin-bottom: 12px;
}
.bt20-info-hero-card p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.bt20-info-section {
  position: relative;
  z-index: 2;
  padding: 58px 0;
}
.bt20-info-grid,
.bt20-info-two-col,
.bt20-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}
.bt20-info-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bt20-contact-grid {
  grid-template-columns: minmax(0, 1fr) 430px;
}
.bt20-info-card {
  background: #fff;
  border: 1px solid var(--bt20-line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 16px 44px rgba(15,23,42,.08);
}
.bt20-info-card h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  color: var(--bt20-navy);
}
.bt20-info-card h3 {
  margin: 0 0 8px;
  color: var(--bt20-navy);
}
.bt20-info-card p {
  color: #475467;
  margin: 0 0 14px;
}
.bt20-info-card p:last-child {
  margin-bottom: 0;
}
.bt20-info-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #061235, #0c57bd);
  color: #fff;
  min-height: 260px;
}
.bt20-info-stat-card strong {
  display: block;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .9;
  letter-spacing: -3px;
  margin-bottom: 14px;
}
.bt20-info-stat-card p {
  color: #dbeafe;
  font-weight: 800;
}
.bt20-info-strip {
  padding: 44px 0;
  background: linear-gradient(135deg, #f4f8ff, #fff);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}
.bt20-info-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.bt20-info-features div {
  background: #fff;
  border: 1px solid var(--bt20-line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(15,23,42,.06);
}
.bt20-info-features span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bt20-orange), #ffd05b);
  color: #061235;
  font-weight: 900;
  margin-bottom: 14px;
}
.bt20-info-features h3 {
  margin: 0 0 8px;
  color: var(--bt20-navy);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.6px;
}
.bt20-info-features p {
  margin: 0;
  color: #5b6677;
}
.bt20-info-email {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  margin: 6px 0 18px;
  padding: 11px 15px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--bt20-blue);
  font-weight: 900;
  border: 1px solid #d7e7ff;
}
.bt20-info-email:hover {
  color: #06489d;
  background: #e2efff;
}
.bt20-info-email-large {
  font-size: 20px;
  padding: 14px 18px;
}
.bt20-info-contact-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bt20-contact-card-primary {
  border-top: 8px solid var(--bt20-orange);
}
.bt20-contact-email-card strong {
  font-size: clamp(24px, 3vw, 32px);
  overflow-wrap: anywhere;
}
.bt20-contact-action-row {
  margin-top: 8px;
}
.bt20-clean-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.bt20-clean-list li {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  padding: 14px;
  color: #475467;
}
.bt20-clean-list strong {
  color: var(--bt20-navy);
}

@media (max-width: 960px) {
  .bt20-info-hero-grid,
  .bt20-info-grid,
  .bt20-info-two-col,
  .bt20-contact-grid,
  .bt20-info-features {
    grid-template-columns: 1fr;
  }
  .bt20-info-hero-card {
    max-width: 520px;
  }
}
@media (max-width: 620px) {
  .bt20-info-hero {
    padding: 48px 0 66px;
  }
  .bt20-info-hero-copy h1 {
    letter-spacing: -1.8px;
  }
  .bt20-info-section {
    padding: 38px 0;
  }
  .bt20-info-card,
  .bt20-info-features div,
  .bt20-info-hero-card {
    border-radius: 22px;
    padding: 22px;
  }
  .bt20-info-hero-actions .bt20-btn,
  .bt20-contact-action-row .bt20-btn {
    width: 100%;
  }
  .bt20-info-email-large {
    font-size: 16px;
  }
}
