/* ============================================================
   PureBrain Blog Post Styles - CF Pages Static Version
   Shared CSS extracted from inline styles (performance optimization)
   Colors: Blue #2a93c1 | Orange #f1420b | Dark #0a0a0f
   ============================================================ */

/* Body reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    background: #0a0a0f !important;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Animated background layers */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://purebrain.ai/wp-content/uploads/2026/02/Pure-Brain-Vid-3.gif') center center no-repeat;
    background-size: cover;
    opacity: 0.25;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 8, 15, 0.60);
    z-index: -1;
    pointer-events: none;
}

/* Video Background */
.pb-video-bg-wrap {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.pb-video-bg-wrap video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.18;
}

@media (prefers-reduced-motion: reduce) {
    .pb-video-bg-wrap video { display: none; }
}

/* ============================================================
   ARTICLE CONTAINER
   ============================================================ */
article.pb-blog-post {
    max-width: 760px;
    margin: 60px auto 80px;
    padding: 48px 40px;
    background: rgba(10, 15, 35, 0.60);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(42, 147, 193, 0.18);
    position: relative;
    z-index: 1;
}

@media (max-width: 800px) {
    article.pb-blog-post { margin: 20px 16px 60px; padding: 32px 24px; }
}

@media (max-width: 480px) {
    article.pb-blog-post { margin: 12px 10px 40px; padding: 24px 16px; }
}

/* ============================================================
   HEADINGS
   ============================================================ */
article.pb-blog-post h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

article.pb-blog-post h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(42, 147, 193, 0.25);
    letter-spacing: -0.01em;
}

article.pb-blog-post h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8eaf0;
    margin-top: 32px;
    margin-bottom: 12px;
}

article.pb-blog-post h4,
article.pb-blog-post h5,
article.pb-blog-post h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #e8eaf0;
    margin-top: 24px;
    margin-bottom: 10px;
}

/* ============================================================
   BODY TEXT
   ============================================================ */
article.pb-blog-post p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    margin-bottom: 20px;
}

article.pb-blog-post strong {
    color: #ffffff;
    font-weight: 700;
}

article.pb-blog-post em {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

/* ============================================================
   LINKS
   ============================================================ */
article.pb-blog-post a {
    color: #f1420b;
    text-decoration: none;
    border-bottom: 1px solid rgba(241, 66, 11, 0.4);
    transition: all 0.2s ease;
}

article.pb-blog-post a:hover {
    color: #ffffff;
    background: #f1420b;
    border-bottom-color: #f1420b;
    padding: 0 3px;
    border-radius: 3px;
}

/* ============================================================
   LISTS
   ============================================================ */
article.pb-blog-post ul, article.pb-blog-post ol {
    padding-left: 28px;
    margin-bottom: 20px;
}

article.pb-blog-post ul {
    list-style: none;
    padding-left: 0;
}

article.pb-blog-post ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
}

article.pb-blog-post ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f1420b;
}

article.pb-blog-post ol li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 6px;
}

article.pb-blog-post ol li::marker {
    color: #2a93c1;
    font-weight: 700;
}

/* Nested lists */
article.pb-blog-post ul ul,
article.pb-blog-post ol ul {
    margin-top: 8px;
    margin-bottom: 4px;
}

article.pb-blog-post ul ul li::before {
    background: #2a93c1;
    width: 6px;
    height: 6px;
    top: 11px;
}

/* ============================================================
   HORIZONTAL RULES & BLOCKQUOTES
   ============================================================ */
article.pb-blog-post hr {
    border: none;
    border-top: 1px solid rgba(42, 147, 193, 0.3);
    margin: 36px 0;
}

article.pb-blog-post blockquote {
    border-left: 4px solid #f1420b;
    background: rgba(241, 66, 11, 0.06);
    padding: 16px 24px;
    margin: 28px 0;
    border-radius: 0 8px 8px 0;
}

article.pb-blog-post blockquote p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 0;
}

/* ============================================================
   IMAGES
   ============================================================ */
article.pb-blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 24px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: block;
}

/* ============================================================
   BYLINE (first paragraph strong)
   ============================================================ */
article.pb-blog-post p:first-of-type strong {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ============================================================
   SOCIAL SHARE
   ============================================================ */
.pt-social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    margin: 28px 0 0;
    border-top: 2px solid rgba(42, 147, 193, 0.3);
    flex-wrap: wrap;
}

.pt-social-share span {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pt-social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(42, 147, 193, 0.15);
    color: #2a93c1;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
    border: none !important;
    border-bottom: none !important;
    padding: 0 !important;
}

.pt-social-share a:hover {
    background: #2a93c1;
    color: #fff;
    transform: scale(1.1);
    border-bottom: none !important;
}

.pt-social-share a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.blog-cta-block {
    margin-top: 40px;
    padding: 28px 32px;
    background: rgba(42, 147, 193, 0.08);
    border: 1px solid rgba(42, 147, 193, 0.2);
    border-radius: 12px;
    text-align: center;
}

.blog-cta-block p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
}

.blog-cta-block a.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #f1420b 0%, #d13608 100%);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: 0 4px 20px rgba(241, 66, 11, 0.35);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    letter-spacing: 0.03em;
}

.blog-cta-block a.cta-btn:hover {
    background: linear-gradient(135deg, #2a93c1 0%, #1e7da8 100%) !important;
    box-shadow: 0 0 24px rgba(42, 147, 193, 0.5), 0 6px 20px rgba(0,0,0,0.3) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border-bottom: none !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
}

/* CTA button hover override for specific links */
.blog-cta-block a[href*="awakening"],
.blog-cta-block a[href*="ai-partnership-assessment"] {
    transition: background-color 0.25s ease, background-image 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease !important;
}

.blog-cta-block a[href*="awakening"]:hover,
.blog-cta-block a[href*="awakening"]:focus,
.blog-cta-block a[href*="ai-partnership-assessment"]:hover,
.blog-cta-block a[href*="ai-partnership-assessment"]:focus {
    background-color: #2a93c1 !important;
    background-image: linear-gradient(135deg, #2a93c1 0%, #1e7da8 100%) !important;
    background: linear-gradient(135deg, #2a93c1 0%, #1e7da8 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 0 24px rgba(42,147,193,0.5), 0 6px 20px rgba(0,0,0,0.3) !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
}

/* ============================================================
   TRANSPARENCY SECTION
   ============================================================ */
.transparency-section {
    margin-top: 48px;
    padding: 20px;
    border: 1px solid rgba(42,147,193,0.2);
    border-radius: 8px;
    background: rgba(42,147,193,0.05);
}

.transparency-section p {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.5) !important;
    margin: 0 !important;
}

.pb-transparency-block {
    margin-top: 48px;
    border: 1px solid rgba(42,147,193,0.18);
    border-radius: 12px;
    overflow: hidden;
}

.pb-transparency-header {
    padding: 18px 24px;
    background: rgba(42,147,193,0.07);
    border-bottom: 1px solid rgba(42,147,193,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pb-transparency-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(42,147,193,0.85);
}

.pb-transparency-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin-left: auto;
}

/* ============================================================
   BACK TO BLOG LINK
   ============================================================ */
.pb-back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2a93c1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    transition: color 0.2s;
    border-bottom: none !important;
}

.pb-back-to-blog:hover {
    color: #f1420b;
    background: transparent;
    padding: 0;
    border-bottom: none !important;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: rgba(42, 147, 193, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2a93c1; }

/* ============================================================
   POST NAVIGATION BAR
   ============================================================ */
.pb-post-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-bottom: 1px solid rgba(42, 147, 193, 0.3);
    flex-wrap: wrap;
}

.pb-post-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: none !important;
}

.pb-post-nav a:hover {
    color: #2a93c1;
    background: rgba(42, 147, 193, 0.1);
    padding: 8px 14px;
    border-radius: 6px;
    border-bottom: none !important;
}

.pb-post-nav a.nav-cta {
    color: #ffffff !important;
    background: linear-gradient(135deg, #f1420b 0%, #ed6626 100%);
    border-bottom: none !important;
}

.pb-post-nav a.nav-cta:hover {
    background: linear-gradient(135deg, #ed6626 0%, #f1420b 100%);
    box-shadow: 0 4px 20px rgba(241, 66, 11, 0.4);
    transform: translateY(-1px);
    padding: 8px 14px;
    border-radius: 6px;
    border-bottom: none !important;
}

@media (max-width: 600px) {
    .pb-post-nav { gap: 8px; padding: 10px 12px; }
    .pb-post-nav a { font-size: 0.78rem; padding: 6px 10px; min-height: 40px; }
}

/* ============================================================
   BANNER HERO IMAGE
   ============================================================ */
.pb-post-banner {
    width: 100%;
    max-width: 900px;
    margin: 32px auto 0;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

@media (max-width: 940px) {
    .pb-post-banner { border-radius: 8px; margin: 20px auto 0; }
}

/* ============================================================
   FAQ STYLES (new style - pb-faq)
   ============================================================ */
.pb-faq-section { margin: 40px 0; padding: 0; }

.pb-faq-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.pb-faq-item {
    border: 1px solid rgba(42, 147, 193, 0.15);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    background: rgba(10, 15, 35, 0.4);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.pb-faq-item:hover {
    background: rgba(10, 15, 35, 0.6);
    border-color: rgba(42, 147, 193, 0.3);
}

.pb-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.pb-faq-trigger:hover { color: #ffffff; }

.pb-faq-trigger[aria-expanded="true"] {
    color: #2a93c1;
    border-bottom: 1px solid rgba(42, 147, 193, 0.15);
}

.pb-faq-trigger span { flex: 1; }

.pb-faq-chevron {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: #2a93c1;
    transition: transform 0.3s ease;
}

.pb-faq-trigger[aria-expanded="true"] .pb-faq-chevron { transform: rotate(180deg); }

.pb-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.pb-faq-answer:not([hidden]) { padding: 16px 20px 20px; max-height: 800px; }
.pb-faq-answer[hidden] { display: block !important; max-height: 0 !important; padding-top: 0 !important; padding-bottom: 0 !important; }

.pb-faq-answer p {
    font-size: 0.975rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   FAQ STYLES (old style - .faq-section, 3 posts)
   ============================================================ */
.faq-section { margin-bottom: 0; border-bottom: 1px solid rgba(42,147,193,0.15); }
.faq-section:last-of-type { border-bottom: none; }
.faq-section h3 { cursor: pointer; padding: 16px 0; margin: 0; font-size: 1.05rem; color: #fff; position: relative; padding-right: 30px; }
.faq-section h3::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: #2a93c1; transition: transform 0.3s; }
.faq-section h3.active::after { content: '\2212'; }
.faq-section .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-section .faq-answer p { padding: 0 0 16px 0; margin: 0; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ============================================================
   DAILY RECAP STYLES
   ============================================================ */
.pb-recap-wrapper { margin-top: 32px; }

.pb-recap-frozen {
    padding: 28px 28px 24px;
    background: rgba(8, 10, 18, 0.75);
    border: 1px solid rgba(42, 147, 193, 0.2);
    border-radius: 12px;
    border-left: 4px solid #2a93c1;
    margin-bottom: 16px;
}

.pb-recap-frozen-header { margin-bottom: 16px; }

.pb-recap-frozen-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a93c1;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 4px;
}

.pb-recap-frozen-date {
    display: block;
    font-size: 13px;
    color: rgba(224, 230, 240, 0.45);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}

.pb-recap-frozen-list { list-style: none; padding: 0; margin: 0 0 16px 0; }

.pb-recap-frozen-list li {
    position: relative;
    padding: 5px 0 5px 18px;
    font-size: 0.9rem !important;
    color: rgba(224, 230, 240, 0.82) !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    border: none !important;
    background: none !important;
}

.pb-recap-frozen-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 6px; height: 6px;
    background: #2a93c1;
    border-radius: 50%;
}

.pb-recap-frozen-tagline {
    font-size: 0.82rem !important;
    color: rgba(224, 230, 240, 0.38) !important;
    font-style: italic;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.pb-recap-frozen > p {
    font-size: 0.9rem !important;
    color: rgba(255,255,255,0.55) !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
}

.pb-recap-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.pb-recap-table th {
    padding: 8px 12px;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(42,147,193,0.8);
    border-bottom: 1px solid rgba(42,147,193,0.2);
}

.pb-recap-table td {
    padding: 9px 12px;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: top;
}

.pb-recap-table tbody tr:hover td {
    background: rgba(42,147,193,0.05);
}

.pb-recap-table .pb-recap-value {
    color: #4bc8a0;
    font-weight: 600;
}

.pb-recap-total-row td {
    border-top: 1px solid rgba(42,147,193,0.35) !important;
    border-bottom: none !important;
    background: rgba(42,147,193,0.07) !important;
    color: #ffffff !important;
    font-size: 0.9rem;
}

.pb-recap-total-row .pb-recap-value {
    color: #4bc8a0 !important;
}

/* Live recap */
.pb-recap-live {
    padding: 18px 22px;
    background: rgba(8, 10, 18, 0.55);
    border: 1px solid rgba(42, 147, 193, 0.1);
    border-radius: 10px;
}

.pb-recap-live-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pb-recap-live-dot {
    display: inline-block;
    width: 7px; height: 7px;
    background: #2a93c1;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pb-live-pulse 2s ease-in-out infinite;
}

@keyframes pb-live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(42,147,193,0.5); }
    50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(42,147,193,0); }
}

.pb-recap-live-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(42, 147, 193, 0.7);
    font-family: 'Oswald', sans-serif;
}

.pb-recap-live-date {
    font-size: 10px;
    color: rgba(224, 230, 240, 0.35);
    font-family: 'Oswald', sans-serif;
    margin-left: auto;
}

.pb-recap-live-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    min-height: 40px;
}

.pb-recap-live-list li {
    position: relative;
    padding: 3px 0 3px 15px;
    font-size: 0.85rem !important;
    color: rgba(224, 230, 240, 0.65) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    border: none !important;
    background: none !important;
}

.pb-recap-live-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 5px; height: 5px;
    background: rgba(42, 147, 193, 0.5);
    border-radius: 50%;
}

.pb-recap-live-list.pb-recap-loading li { color: rgba(224, 230, 240, 0.25) !important; }

.pb-recap-live-cta {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #f1420b 0%, #d13608 100%);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 7px;
    text-decoration: none !important;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pb-recap-live-cta:hover {
    background: #2a93c1;
    box-shadow: 0 4px 16px rgba(42,147,193,0.4);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

article.pb-blog-post .pb-recap-live-cta {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border-bottom: none !important;
    text-decoration: none !important;
}

article.pb-blog-post .pb-recap-live-cta:hover {
    background: #2a93c1 !important;
    box-shadow: 0 4px 16px rgba(42,147,193,0.4) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: none !important;
    padding: 10px 24px !important;
    border-bottom: none !important;
    border-radius: 7px !important;
}

@media (max-width: 600px) {
    .pb-recap-frozen { padding: 20px 16px; }
    .pb-recap-live { padding: 14px 16px; }
    .pb-recap-table th:nth-child(3),
    .pb-recap-table td:nth-child(3) { display: none; }
    .pb-recap-table { font-size: 0.82rem; }
    .pb-recap-table th, .pb-recap-table td { padding: 6px 8px; }
}
