.briefings {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(231, 199, 125, .025) 1px, transparent 1px),
    linear-gradient(rgba(231, 199, 125, .018) 1px, transparent 1px),
    #050606;
  background-size: 13.8vw 100%, 100% 92px, auto;
  padding: clamp(92px, 9vw, 150px) 0;
}
.briefings::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 77% 44%, rgba(231, 199, 125, .08), transparent 24rem),
    linear-gradient(115deg, transparent 0 68%, rgba(159, 217, 230, .025) 68% 69%, transparent 69%);
  content: "";
  pointer-events: none;
}
.briefings-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.7fr);
  align-items: start;
  gap: clamp(52px, 7vw, 120px);
}
.briefings-copy {
  position: sticky;
  top: 112px;
}
.briefings-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(48px, 5.7vw, 92px);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .92;
}
.briefings-copy > p:last-child {
  max-width: 38rem;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.briefing-console {
  border: 1px solid rgba(231, 199, 125, .2);
  background: rgba(6, 8, 8, .78);
  box-shadow: 0 42px 100px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .025);
}
.briefing-console__head {
  display: grid;
  min-height: 62px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
  color: #b7a981;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.briefing-console__head span:last-child {
  color: var(--blue);
}
.briefing-console__head i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}
.briefing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.briefing-slot {
  position: relative;
  display: grid;
  min-height: 116px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
  background: transparent;
  color: var(--ivory);
}
.briefing-slot:nth-child(2n) { border-right: 0; }
.briefing-slot:nth-last-child(-n + 2) { border-bottom: 0; }
.briefing-slot::after {
  position: absolute;
  inset: 0;
  border-left: 2px solid transparent;
  background: linear-gradient(90deg, rgba(231, 199, 125, .05), transparent 44%);
  content: "";
  opacity: 0;
}
html[lang="en"] .briefing-slot[data-deck-locale="en"] .briefing-slot__code,
html[lang="ru"] .briefing-slot[data-deck-locale="ru"] .briefing-slot__code,
html[lang="es"] .briefing-slot[data-deck-locale="es"] .briefing-slot__code,
html[lang="pt"] .briefing-slot[data-deck-locale="pt"] .briefing-slot__code,
html[lang="de"] .briefing-slot[data-deck-locale="de"] .briefing-slot__code,
html[lang="fr"] .briefing-slot[data-deck-locale="fr"] .briefing-slot__code,
html[lang="zh"] .briefing-slot[data-deck-locale="zh"] .briefing-slot__code,
html[lang="ar"] .briefing-slot[data-deck-locale="ar"] .briefing-slot__code,
html[lang="ja"] .briefing-slot[data-deck-locale="ja"] .briefing-slot__code,
html[lang="ko"] .briefing-slot[data-deck-locale="ko"] .briefing-slot__code {
  border-color: rgba(159, 217, 230, .72);
  color: var(--blue);
  box-shadow: inset 0 0 20px rgba(159, 217, 230, .06);
}
.briefing-slot__index {
  color: #6f6a5d;
  font: 650 9px/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: .1em;
}
.briefing-slot__copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}
.briefing-slot__copy strong {
  overflow: hidden;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.briefing-slot__copy small {
  color: #807b70;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.briefing-slot__code {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(231, 199, 125, .22);
  color: var(--gold);
  font: 700 9px/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: .1em;
}

@media (max-width: 980px) {
  .briefings-layout { grid-template-columns: 1fr; }
  .briefings-copy { position: static; }
  .briefings-copy h2 { max-width: 12ch; }
  .briefings-copy > p:last-child { max-width: 46rem; }
}

@media (max-width: 640px) {
  .briefings {
    padding: 84px 0;
    background-size: 50vw 100%, 100% 74px, auto;
  }
  .briefings-layout { gap: 46px; }
  .briefings-copy h2 { font-size: clamp(43px, 13.4vw, 66px); }
  .briefings-copy > p:last-child { margin-top: 24px; font-size: 14px; }
  .briefing-console { margin-inline: calc((100vw - var(--shell)) * -.5); border-inline: 0; }
  .briefing-console__head { padding-inline: 18px; }
  .briefing-grid { grid-template-columns: 1fr; }
  .briefing-slot,
  .briefing-slot:nth-child(2n),
  .briefing-slot:nth-last-child(2) {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 18px;
  }
  .briefing-slot:last-child { border-bottom: 0; }
  .briefing-slot__copy strong { font-size: 20px; }
}
