.state-results-page .state-summary {
  padding: 34px 0 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 0, 0, .07) 0, rgba(212, 0, 0, 0) 34%),
    linear-gradient(135deg, #fff 0%, #f8f8f8 52%, #f3f8fb 100%);
  border-bottom: 1px solid #ededed;
}

.results-live-stream-strap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 42px;
  margin-bottom: 26px;
  overflow: hidden;
  border: 1px solid #f1ddbf;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 246, 223, .92)),
    #fff6df;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .035);
}

.results-live-stream-strap--mobile {
  display: none;
}

.results-live-stream-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  height: 100%;
  align-items: center;
  gap: 18px;
  padding: 0 22px 0 22px;
  background: #ededed;
  color: #bb0000;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.results-live-stream-label::before {
  content: "";
  position: absolute;
  top: 0;
  right: -22px;
  z-index: -1;
  width: 44px;
  height: 100%;
  background: #ededed;
  transform: skewX(-34deg);
  transform-origin: center;
}

.results-live-stream-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -28px;
  z-index: 1;

  pointer-events: none;
}

.results-live-stream-label span {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(212, 0, 0, .12);
}

.results-live-stream-label span::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(212, 0, 0, .45);
  border-radius: inherit;
  animation: results-live-pulse 1.5s ease-out infinite;
}

.results-live-stream-body {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 24px;
  padding: 0 18px 0 42px;
}

.results-live-stream-copy {
  min-width: 0;
  overflow: hidden;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.results-live-stream-copy strong {
  color: #111;
  font-weight: 900;
}

.results-live-stream-cta {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-red);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.results-live-stream-strap:hover .results-live-stream-cta {
  background: #b60000;
}

.results-live-video-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  min-height: 100vh;
  padding: 24px 16px;
  overflow-y: auto;
}

.results-live-video-modal.is-open {
  display: grid;
  place-items: center;
}

.results-live-video-modal-overlay {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .62);
  cursor: pointer;
}

.results-live-video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.results-live-video-modal-close {
  position: absolute;
  top: 6px;
  right: 12px;
  z-index: 2;
  border: 0;
  background: none;
  color: #979797;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.results-live-video-modal-close:hover {
  color: #bb0000;
}

.results-live-video-modal .sidebar-live-video-head {
  padding-right: 38px;
  margin-bottom: 14px;
}

.results-live-video-modal .sidebar-live-video-frame {
  margin: 0 auto;
  border-radius: 10px;
}

body.has-results-live-video-modal {
  overflow: hidden;
}

@keyframes results-live-pulse {
  0% {
    opacity: .8;
    transform: scale(.65);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.results-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 0;
  margin-bottom: 16px;
}

.results-dashboard-head .section-title {
  margin: 0;
}

.results-state-switcher {
  position: relative;
  min-width: 220px;
  justify-self: end;
}

.results-switcher-current {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px 0 14px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.results-switcher-current .material-symbols-rounded {
  color: #777;
  font-size: 20px;
}

.results-switcher-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  display: none;
  width: 100%;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.results-state-switcher:hover .results-switcher-menu,
.results-state-switcher:focus-within .results-switcher-menu {
  display: grid;
}

.results-switcher-menu a {
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.results-switcher-menu a:hover,
.results-switcher-menu a[aria-current="page"] {
  background: #f5f5f5;
  color: #d40000;
}

.results-panel-stack {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.state-results-page .results-liveblog-stack {
  height: auto;
}

.state-results-page .results-panel-stack > .section-title {
  display: flex;
  align-items: center;
  min-height: 0;
  margin: 0 0 16px;
}

.state-results-page .results-livevideo-stack {
  display: none;
}

.state-results-page .results-main-grid {
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 28px;
  align-items: stretch;
}

.state-results-page .results-main-grid--with-video {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px) minmax(260px, 320px);
  gap: 24px;
}

.state-results-page .results-main-grid--with-video .results-livevideo-stack {
  display: flex;
}

.state-results-page .state-result-wrap,
.state-results-page .liveblog-column,
.state-results-page .results-livevideo-stack {
  min-width: 0;
}

.state-results-page .results-card,
.state-results-page .liveblog-column {
  height: 100%;
}

.state-results-page .liveblog-column {
  display: flex;
  flex-direction: column;
  padding: 14px 20px 18px 10px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  flex: 1 1 auto;
  height: 666px;
  max-height: 666px;
  min-height: 0;
}

.state-results-page .results-livevideo-stack .sidebar-live-video {
  width: 100%;
  margin-bottom: 0;
}

.state-results-page .results-livevideo-stack .sidebar-live-video-frame {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.state-results-page .liveblog-column .section-title {
  margin: 0;
}

.state-results-page .home-live-blog-head {
  margin-bottom: 16px;
}

.state-results-page .home-live-blog-list {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 10px 0 0;
  border-right: 1px solid #ededed;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #c7c7c7 transparent;
}

.state-results-page .home-live-blog-list::-webkit-scrollbar {
  width: 8px;
}

.state-results-page .home-live-blog-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c7c7c7;
}

.state-results-page .home-live-blog-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 0 0 26px;
}

.state-results-page .home-live-blog-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  border-left: 1px dotted #bcbcbc;
}

.state-results-page .home-live-blog-item::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bfbfbf;
}

.state-results-page .home-live-blog-item.is-breaking::after {
  background: #d40000;
  box-shadow: 0 0 0 4px rgba(212, 0, 0, .12);
}

.state-results-page .home-live-blog-time {
  padding-top: 1px;
  padding-left: 24px;
  color: #666;
  font-size: 11px;
  font-weight: 800;
}

.state-results-page .home-live-blog-content h3 {
  margin: 0 0 8px;
  color: #444;
  font-size: 15px;
  line-height: 1.28;
}

.state-results-page .home-live-blog-content p {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.45;
}

.state-results-page .home-live-blog-media {
  margin-top: 12px;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.state-results-page .home-live-blog-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.state-results-page .home-live-blog-more {
  display: none;
}

.results-main-grid--with-video .liveblog-column--embed {
  overflow: hidden;
}

.results-main-grid--with-video .results-liveblog-embed {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.results-main-grid--with-video .results-liveblog-embed #LB24_LIVE_CONTENT,
.results-main-grid--with-video .results-liveblog-embed iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.results-main-grid--with-video .results-liveblog-embed *,
.results-main-grid--with-video .results-liveblog-embed *::before,
.results-main-grid--with-video .results-liveblog-embed *::after {
  box-sizing: border-box;
}

.results-main-grid--with-video .results-liveblog-embed img,
.results-main-grid--with-video .results-liveblog-embed video,
.results-main-grid--with-video .results-liveblog-embed object,
.results-main-grid--with-video .results-liveblog-embed embed {
  max-width: 100% !important;
}

.results-main-grid--with-video .results-liveblog-embed video {
  width: 100% !important;
  height: auto !important;
}

.state-results-page .seat-filterbar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.state-results-page .seat-filterbar::-webkit-scrollbar {
  display: none;
}

.state-results-page .seat-filterbar button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.state-results-page .seat-filterbar button.is-active {
  border-color: #d40000;
  background: #d40000;
  color: #fff;
}

.state-results-page .seat-result-card {
  max-width: none;
}

.state-results-page .seat-filter-empty {
  padding: 22px;
  border: 1px dashed #d6d6d6;
  border-radius: 8px;
  color: #6e6e6e;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.state-results-v2-page .results-main-grid--v2 {
  grid-template-columns: minmax(0, 820px) minmax(300px, 380px);
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: start;
  gap: 28px;
}

.state-results-v2-page .results-main-grid--v2 .results-liveblog-stack {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.state-results-v2-page .results-main-grid--v2 .results-results-stack {
  grid-column: 2;
  grid-row: 1;
  height: auto;
}

.state-results-v2-page .results-main-grid--v2 .results-livevideo-stack {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  height: auto;
}

.state-results-v2-page .results-main-grid--v2 .liveblog-column {
  height: 980px;
  max-height: 980px;
}

.state-results-v2-page .results-results-stack .state-result-wrap,
.state-results-v2-page .results-results-stack .results-card {
  width: 100%;
  height: auto;
}

.state-results-v2-page .results-results-stack .result-card-content {
  padding: 22px;
}

.state-results-v2-page .results-results-stack .results-card-top {
  margin-bottom: 22px;
}

.state-results-v2-page .results-results-stack .results-progress {
  margin-bottom: 26px;
}

.state-results-v2-page .results-results-stack .results-progress-bar {
  height: 22px;
}

.state-results-v2-page .results-results-stack .results-table-head,
.state-results-v2-page .results-results-stack .results-party-main,
.state-results-v2-page .results-results-stack .results-sub-row {
  grid-template-columns: minmax(0, 1fr) 48px 74px 20px;
  gap: 12px;
}

.state-results-v2-page .results-results-stack .results-total strong {
  font-size: 30px;
}

.state-results-v2-page .results-results-stack .results-total span {
  font-size: 17px;
}

@media (max-width: 1180px) and (min-width: 1024px) {
  .state-results-page .results-main-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
  }

  .state-results-page .results-main-grid--with-video {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px) minmax(230px, 280px);
  }

  .state-results-page .results-main-grid--with-video .results-livevideo-stack {
    grid-column: auto;
  }

  .state-results-page .results-main-grid--with-video .sidebar-live-video-frame {
    max-width: 280px;
  }

  .state-results-v2-page .results-main-grid--v2 {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 22px;
  }

  .state-results-v2-page .results-main-grid--v2 .liveblog-column {
    height: 900px;
    max-height: 900px;
  }
}

@media (max-width: 1023px) {
  .state-results-page .results-dashboard > .wrap {
    width: min(var(--max), calc(100% - 48px));
  }

  .state-results-page .results-main-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .state-results-page .results-main-grid--with-video {
    grid-template-columns: 1fr;
  }

  .state-results-page .results-main-grid--with-video .results-livevideo-stack {
    grid-column: auto;
  }

  .state-results-v2-page .results-main-grid--v2 .results-liveblog-stack,
  .state-results-v2-page .results-main-grid--v2 .results-results-stack,
  .state-results-v2-page .results-main-grid--v2 .results-livevideo-stack {
    grid-column: auto;
    grid-row: auto;
  }

  .state-results-page .state-result-wrap,
  .state-results-page .results-card,
  .state-results-page .liveblog-column,
  .state-results-page .results-livevideo-stack {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .results-dashboard-head {
    align-items: stretch;
    flex-direction: column;
  }

  .state-results-page .liveblog-column {
    height: 520px;
  }

  .state-results-v2-page .results-main-grid--v2 .liveblog-column {
    height: 520px;
    max-height: 520px;
  }
}

@media (max-width: 767px) {
  .state-results-page .results-dashboard > .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .state-results-page .state-summary {
    padding: 10px 0 24px 0;
  }

  .results-live-stream-strap--mobile {
    display: none;
  }

  .results-dashboard:has(.results-main-grid--with-video) .results-live-stream-strap--mobile {
    display: grid;
  }

  .results-live-stream-strap {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
  }

  .results-live-stream-label {
    min-height: 34px;
    padding: 0 12px;
    border-bottom: 1px solid #e2d6c3;
  }

  .results-live-stream-label::before,
  .results-live-stream-label::after {
    display: none;
  }

  .results-live-stream-body {
    gap: 10px;
    padding: 10px 12px;
  }

  .results-live-stream-copy {
    font-size: 13px;
  }

  .results-live-stream-cta {
    min-height: 28px;
    padding: 0 10px;
  }

  .results-live-stream-strap--mobile {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 42px;
    margin-bottom: 16px;
    text-decoration: none;
  }

  .results-live-stream-strap--mobile .results-live-stream-label {
    min-height: 42px;
    padding: 0 24px 0 18px;
    border-bottom: 0;
  }

  .results-live-stream-strap--mobile .results-live-stream-label::before {
    display: block;
    right: -22px;
    width: 44px;
  }

  .results-live-stream-strap--mobile .results-live-stream-label::after {
    display: none;
  }

  .results-live-stream-strap--mobile .results-live-stream-body {
    justify-content: space-between;
    gap: 12px;
    padding: 0 10px 0 36px;
  }

  .results-live-stream-strap--mobile .results-live-stream-copy {
    font-size: 14px;
  }

  .results-live-stream-strap--mobile .results-live-stream-cta {
    min-height: 30px;
    padding: 0 14px;
  }

  .state-results-page .results-livevideo-stack {
    padding-top: 24px;
    scroll-margin-top: 74px;
  }

  .results-live-video-modal {
    padding: 12px 10px;
  }

  .results-live-video-modal-dialog {
    width: min(340px, 100%);
    padding: 14px;
  }

  .results-live-video-modal-close {
    top: 14px;
    right: 14px;
    font-size: 30px;
  }

  .results-dashboard-head {
    display: grid;
    gap: 12px;
  }

  .results-state-switcher {
    width: 100%;
    min-width: 0;
  }

  .results-switcher-current,
  .results-switcher-menu {
    width: 100%;
  }

  .results-switcher-menu {
    right: auto;
    left: 0;
  }

  .state-results-page .liveblog-column {
    height: 460px;
  }

  .state-results-v2-page .results-main-grid--v2 .liveblog-column {
    height: 460px;
    max-height: 460px;
  }

  .state-results-page .seat-filterbar {
    padding-bottom: 10px;
  }
}
