.component.main-wrapper .speaker-profile {
  display: flex;
}
.component.main-wrapper .speaker-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.component.main-wrapper .speaker-profile .speaker-name {
  margin-left: 16px;
  color: #000;
  font-family: MetricWeb, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

.component.main-wrapper--mobile .speaker-profile img {
  width: 28px;
  height: 28px;
}
.component.main-wrapper--mobile .speaker-profile .speaker-name {
  line-height: 28px;
}

.component .audio-transcript {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  border: 1px solid #fff1e5;
  margin-bottom: 20px;
  margin-top: 18px;
}
.component .audio-transcript p {
  margin: 0;
}
.component .transcript-key {
  color: rgba(0, 0, 0, 0.95);
}
.component .transcript-key.highlight {
  color: #b85100;
}

.main-wrapper--mobile.component .audio-transcript {
  font-size: 18px;
  padding: 8px 0;
}

.component.main-wrapper .player {
  width: 100%;
  margin: 32px 0 32px auto;
}
.component.main-wrapper audio,
.component.main-wrapper .controls {
  width: 100%;
}
.component.main-wrapper .progress-bar {
  position: relative;
  height: 6px;
  background-color: #f2e5da;
  border-radius: 20px;
  margin: 10px 0 16px;
}
.component.main-wrapper .progress-bar .progress {
  background: #d55e00;
  height: 100%;
}
.component.main-wrapper .controls {
  height: 48px;
}
.component.main-wrapper .controls button {
  display: block;
  float: left;
  border: 0;
  margin-right: 2px;
  height: 100%;
  cursor: pointer;
  background: #fff9f5;
}
.component.main-wrapper .controls button:hover,
.component.main-wrapper .controls button:focus {
  background-color: #fff2e8;
}
.component.main-wrapper .controls button:active {
  background-color: #ccc;
}
.component.main-wrapper .controls div.time {
  font-size: 16px;
  font-family: MetricWeb, sans-serif;
  display: inline-block;
  line-height: 48px;
  color: #66605c;
  font-variant-numeric: tabular-nums;
}
.component.main-wrapper .controls div.time .current-time {
  font-weight: 600;
  color: black;
}
.component.main-wrapper .controls button {
  float: right;
  position: relative;
  color: black;
}
.component.main-wrapper .controls button.play {
  border: 1px solid black;
  font-weight: 600;
  width: 110px;
  height: 48px;
  position: relative;
  padding-left: 30px;
  margin-left: 20px;
}
.component.main-wrapper .controls button.play:before {
  content: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1%3Aplay?source=ig-content");
  position: absolute;
  top: 0;
  width: 48px;
  left: 0;
}
.component.main-wrapper .controls button.pause {
  border: 1px solid black;
  font-weight: 600;
  width: 110px;
  height: 48px;
  position: relative;
  padding-left: 30px;
  margin-left: 20px;
}
.component.main-wrapper .controls button.pause:before {
  content: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1%3Apause?source=ig-content");
  position: absolute;
  top: 0;
  width: 48px;
  left: 0;
}
.component.main-wrapper .controls button.fwd, .component.main-wrapper .controls button.rwd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  margin-right: 12px;
}
.component.main-wrapper .controls button.fwd img, .component.main-wrapper .controls button.rwd img {
  width: 20px;
  flex-shrink: 0;
}

.component.main-wrapper--mobile .player {
  margin-top: 20px;
  margin-bottom: 0;
}
.component.main-wrapper--mobile .progress-bar {
  margin-top: 35px;
}
.component.main-wrapper--mobile .controls button.fwd svg,
.component.main-wrapper--mobile .controls button.rwd svg {
  width: 150%;
  margin-left: -25%;
  margin-top: -50%;
}
.component.main-wrapper--mobile .controls button.play,
.component.main-wrapper--mobile .controls button.pause {
  margin-left: 0;
}

.component.main-wrapper table.aitranscripts tr {
  display: table;
  padding-bottom: 30px;
}
.component.main-wrapper table.aitranscripts tr th.transcript-service {
  vertical-align: top;
  width: 140px;
  padding-right: 10px;
  font-family: MetricWeb, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #000;
  text-align: right;
  font-feature-settings: "clig" off, "liga" off;
}
.component.main-wrapper table.aitranscripts tr td.transcript-text {
  color: #333;
  font-family: MetricWeb, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  position: relative;
  display: block;
}
.component.main-wrapper table.aitranscripts tr td.transcript-text .transcript-content {
  position: relative;
  padding-right: 1rem;
  /* Ensures padding inside the text container */
  display: block;
}

.o-forms-input__error {
  display: none;
}

.o-forms-input--invalid *:invalid:not(:disabled), .o-forms-input--invalid input:not(:disabled), .o-forms-input--invalid textarea:not(:disabled), .o-forms-input--invalid select:not(:disabled) {
  color: #cc0000;
  border-color: #cc0000;
}
.o-forms-input--invalid *:invalid:not(:disabled) + .o-forms-input__label:before,
.o-forms-input--invalid *:invalid:not(:disabled) + .o-forms-input__label:after, .o-forms-input--invalid input:not(:disabled) + .o-forms-input__label:before,
.o-forms-input--invalid input:not(:disabled) + .o-forms-input__label:after, .o-forms-input--invalid textarea:not(:disabled) + .o-forms-input__label:before,
.o-forms-input--invalid textarea:not(:disabled) + .o-forms-input__label:after, .o-forms-input--invalid select:not(:disabled) + .o-forms-input__label:before,
.o-forms-input--invalid select:not(:disabled) + .o-forms-input__label:after {
  border-color: #cc0000;
}
.o-forms-input--invalid .o-forms-input__error {
  font-size: 14px;
  line-height: 16px;
  color: #cc0000;
  display: block;
  position: relative;
  margin-top: 4px;
  margin-bottom: -20px;
}
.o-typography--loading-sans .o-forms-input--invalid .o-forms-input__error {
  font-size: 12.18px;
}

.o-forms-field,
.o-forms-title,
.o-forms-input {
  font-family: MetricWeb, sans-serif;
  font-size: 16px;
  line-height: 20px;
}
.o-typography--loading-sans .o-forms-field,
.o-typography--loading-sans .o-forms-title,
.o-typography--loading-sans .o-forms-input {
  font-size: 13.92px;
  font-family: sans-serif;
}

.o-forms-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  position: relative;
}
.o-forms-field label {
  display: block;
  margin: 0 0 12px;
  position: relative;
}
.o-forms-field label:last-of-type {
  margin-bottom: 0;
}

.o-forms-field--optional .o-forms-title__main:after {
  font-size: 14px;
  line-height: 16px;
  content: "(optional)";
  color: #66605c;
  font-weight: 400;
  margin-left: 4px;
}
.o-typography--loading-sans .o-forms-field--optional .o-forms-title__main:after {
  font-size: 12.18px;
}

.o-forms-title__main {
  font-weight: 600;
  display: block;
}

.o-forms-input__label__main {
  font-weight: 400;
  display: block;
}

.o-forms-input__label__prompt,
.o-forms-title__prompt {
  font-size: 14px;
  line-height: 16px;
  color: #66605c;
  display: block;
}
.o-typography--loading-sans .o-forms-input__label__prompt,
.o-typography--loading-sans .o-forms-title__prompt {
  font-size: 12.18px;
}

.o-forms-input__label__main + .o-forms-input__label__prompt {
  margin-top: 4px;
}

.o-forms-input {
  margin-top: 12px;
}
.o-forms-input input {
  border-radius: 0;
  appearance: none;
}

.o-forms-field--professional-inverse .o-forms-title .o-forms-title__main:after,
.o-forms-field--professional-inverse .o-forms-title .o-forms-title__prompt {
  color: rgba(255, 255, 255, 0.7);
}

.o-forms-field--professional-inverse input:focus {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}

@supports selector(:focus-visible) {
  .o-forms-field--professional-inverse input:focus {
    outline: unset;
    box-shadow: unset;
  }

  .o-forms-field--professional-inverse input:focus-visible {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}

.o-forms-field--ft-live .o-forms-title .o-forms-title__main:after,
.o-forms-field--ft-live .o-forms-title .o-forms-title__prompt {
  color: rgba(255, 255, 255, 0.7);
}

.o-forms-field--ft-live input:focus {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}

@supports selector(:focus-visible) {
  .o-forms-field--ft-live input:focus {
    outline: unset;
    box-shadow: unset;
  }

  .o-forms-field--ft-live input:focus-visible {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}

.o-forms-input--pseudo-radio-link {
  font-size: 14px;
  line-height: unset;
  font-weight: 600;
  box-sizing: border-box;
  border: 1px solid #807973;
  display: inline-flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 2px;
  border-color: #807973;
  margin-top: 0;
}
.o-typography--loading-sans-bold .o-forms-input--pseudo-radio-link {
  font-size: 11.62px;
}
.o-forms-input--pseudo-radio-link a {
  display: inline-flex;
  flex-grow: 1;
  cursor: pointer;
  margin: 0;
  min-height: 28px;
  min-width: 8ch;
  box-sizing: border-box;
  color: #0d7680;
  padding: 6px 8px;
  position: relative;
  text-decoration: none;
}
.o-forms-input--pseudo-radio-link a:hover {
  background-color: rgba(13, 118, 128, 0.15);
}
.o-forms-input--pseudo-radio-link a.o-forms-input__link--current {
  background-color: #0d7680;
  color: #ffffff;
}
.o-forms-input--pseudo-radio-link a:not(:first-of-type) {
  border-color: #807973;
}

.o-forms-input--checkbox input[type=checkbox] {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  padding: 0;
  width: 24px;
  height: 24px;
}
.o-forms-input--checkbox input[type=checkbox]:checked ~ .o-forms-input__label:after {
  opacity: 1;
}
.o-forms-input--checkbox input[type=checkbox]:disabled {
  opacity: 0;
}
.o-forms-input--checkbox input[type=checkbox]:disabled ~ .o-forms-input__label {
  opacity: 0.4;
}
.o-forms-input--checkbox input[type=checkbox]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-input--checkbox input[type=checkbox]:focus + .o-forms-input__label:before {
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
}
@supports selector(:focus-visible) {
  .o-forms-input--checkbox input[type=checkbox]:focus + .o-forms-input__label:before {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-input--checkbox input[type=checkbox]:focus-visible + .o-forms-input__label:before {
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
  }
}
.o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23FFFFFF,%23FFFFFF&format=svg");
  background-color: #0d7680;
  opacity: 1;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-input--checkbox .o-forms-input__right {
  display: inline-block;
}
.o-forms-input--checkbox .o-forms-input__right input[type=checkbox] {
  right: 0;
}
.o-forms-input--checkbox .o-forms-input__right input[type=checkbox] ~ .o-forms-input__label {
  padding-left: 0;
  padding-right: 38px;
}
.o-forms-input--checkbox .o-forms-input__right input[type=checkbox] ~ .o-forms-input__label:before, .o-forms-input--checkbox .o-forms-input__right input[type=checkbox] ~ .o-forms-input__label:after {
  left: calc(100% - 24px);
}
.o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label {
  display: inline-block;
  padding: 2px 0 0 38px;
  vertical-align: top;
}
.o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:before {
  content: "";
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border: 1px solid #807973;
  background-color: #ffffff;
}
.o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
  content: "";
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23FFFFFF,%23FFFFFF&format=svg");
  background-color: #0d7680;
  opacity: 0;
  transition: opacity 0.1s ease;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label + .o-forms-input__label {
  padding-top: 12px;
}

.o-forms-field--professional .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23FFFFFF,%23FFFFFF&format=svg");
  background-color: #262a33;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-field--professional .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-field--professional .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-field--professional .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:before {
  border: 1px solid #807973;
}
.o-forms-field--professional .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23FFFFFF,%23FFFFFF&format=svg");
  background-color: #262a33;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-field--professional .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-field--professional .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-field--professional .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label .o-forms-input__label__prompt {
  color: #33302e;
}

.o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23262A33,%23262A33&format=svg");
  background-color: #c0efd8;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:before {
  border: 1px solid #c0efd8;
}
.o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23262A33,%23262A33&format=svg");
  background-color: #c0efd8;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label .o-forms-input__label__prompt {
  color: #ffffff;
}
.o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox]:focus + .o-forms-input__label:before {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}
@supports selector(:focus-visible) {
  .o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox]:focus + .o-forms-input__label:before {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--professional-inverse .o-forms-input--checkbox input[type=checkbox]:focus-visible + .o-forms-input__label:before {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}

.o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23262A33,%23262A33&format=svg");
  background-color: #fcd0b1;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox]:indeterminate + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:minus?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:before {
  border: 1px solid #fcd0b1;
}
.o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23262A33,%23262A33&format=svg");
  background-color: #fcd0b1;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox] ~ .o-forms-input__label .o-forms-input__label__prompt {
  color: #ffffff;
}
.o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox]:focus + .o-forms-input__label:before {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}
@supports selector(:focus-visible) {
  .o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox]:focus + .o-forms-input__label:before {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--ft-live .o-forms-input--checkbox input[type=checkbox]:focus-visible + .o-forms-input__label:before {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}

.o-forms-input--date label {
  display: flex;
  float: left;
  flex-direction: column-reverse;
  margin-bottom: 0;
}
.o-forms-input--date input[type=text] {
  font-family: inherit;
  font-size: inherit;
  background-color: #ffffff;
  border: 1px solid #807973;
  box-sizing: border-box;
  min-height: 40px;
  padding: 8px;
  width: 100%;
  display: block;
  margin: 4px 12px 0 0;
}
.o-forms-input--date input[type=text]:disabled {
  cursor: default;
  color: #66605c;
  background-color: #e6d9ce;
  border-color: #e6d9ce;
  -webkit-text-fill-color: currentColor;
  opacity: 1;
}
.o-forms-input--date input[type=text].o-forms-input__day-part, .o-forms-input--date input[type=text].o-forms-input__month-part, .o-forms-input--date input[type=text][pattern$="{2}"], .o-forms-input--date input[type=text][pattern$="[012]"] {
  width: calc(2.2ch + 1em);
}
.o-forms-input--date input[type=text].o-forms-input__year-part, .o-forms-input--date input[type=text][pattern$="{4}"] {
  width: calc(4.2ch + 1em);
}
.o-forms-input--date .o-forms-input__error {
  padding-top: 4px;
  clear: both;
}

.o-forms-input--file ::file-selector-button {
  font-family: MetricWeb, sans-serif;
  font-weight: 600;
  font-family: MetricWeb, sans-serif;
  font-size: 14px;
  line-height: 16px;
  line-height: 14px;
  background-size: 21px 21px;
  min-height: 28px;
  min-width: 60px;
  padding: 6px 8px;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  margin: 0;
  border-style: solid;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s background-color, 0.15s color ease-out, 0.15s border-color ease-out;
  user-select: none;
  background-clip: border-box;
  border-width: 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: #0d7680;
  color: white;
  border-color: transparent;
  margin-right: 4px;
}
.o-typography--loading-sans .o-forms-input--file ::file-selector-button {
  font-size: 12.18px;
  font-family: sans-serif;
}
.o-forms-input--file ::file-selector-button[disabled] {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
}
.o-forms-input--file ::file-selector-button:hover {
  background-color: #0a5960;
  color: white;
  border-color: transparent;
  text-decoration: none;
}
.o-forms-input--file ::file-selector-button:focus {
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
  background-color: #0a5960;
  color: white;
  border-color: transparent;
  z-index: 1;
}

@supports selector(:focus-visible) {
  .o-forms-input--file ::file-selector-button:focus {
    outline: unset;
    box-shadow: unset;
  }

  .o-forms-input--file ::file-selector-button:focus-visible {
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
    background-color: #0a5960;
    color: white;
    border-color: transparent;
    z-index: 1;
  }
}
.o-forms-input--file ::file-selector-button[aria-selected=true], .o-forms-input--file ::file-selector-button[aria-current], .o-forms-input--file ::file-selector-button[aria-pressed=true], .o-forms-input--file ::file-selector-button:active {
  background-color: #073b40;
  color: white;
  border-color: transparent;
}

.o-forms-input--radio-round .o-forms-input__label {
  padding: 2px 0 2px 38px;
  display: inline-block;
}
.o-forms-input--radio-round .o-forms-input__label:before, .o-forms-input--radio-round .o-forms-input__label:after {
  content: "";
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border-radius: 50%;
  transition: opacity 0.1s ease-in;
  background-color: transparent;
}
.o-forms-input--radio-round .o-forms-input__label:before {
  border: 1px solid #807973;
}
.o-forms-input--radio-round .o-forms-input__label:after {
  background-color: #0d7680;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  margin: 6px;
  opacity: 0;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--radio-round .o-forms-input__label:after {
    background-color: windowText;
  }
}
.o-forms-input--radio-round input[type=radio] {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  padding: 0;
  width: 24px;
  height: 24px;
}
.o-forms-input--radio-round input[type=radio]:checked ~ .o-forms-input__label:after {
  opacity: 1;
}
.o-forms-input--radio-round input[type=radio]:disabled {
  opacity: 0;
}
.o-forms-input--radio-round input[type=radio]:disabled ~ .o-forms-input__label {
  opacity: 0.4;
}
.o-forms-input--radio-round input[type=radio]:checked + .o-forms-input__label:before {
  border-color: #0d7680;
}
.o-forms-input--radio-round input[type=radio]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-input--radio-round input[type=radio]:focus + .o-forms-input__label:before {
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
}
@supports selector(:focus-visible) {
  .o-forms-input--radio-round input[type=radio]:focus + .o-forms-input__label:before {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-input--radio-round input[type=radio]:focus-visible + .o-forms-input__label:before {
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
  }
}

.o-forms-field--professional {
  color: #33302e;
}
.o-forms-field--professional .o-forms-input--radio-round input[type=radio]:checked + .o-forms-input__label:before {
  border-color: #262a33;
}
.o-forms-field--professional .o-forms-input--radio-round .o-forms-input__label:before {
  border: 1px solid #807973;
}
.o-forms-field--professional .o-forms-input--radio-round .o-forms-input__label:after {
  background-color: #262a33;
}

.o-forms-field--professional-inverse {
  color: #ffffff;
}
.o-forms-field--professional-inverse .o-forms-input--radio-round input[type=radio]:checked + .o-forms-input__label:before {
  border-color: #c0efd8;
}
.o-forms-field--professional-inverse .o-forms-input--radio-round .o-forms-input__label:before {
  border: 1px solid #c0efd8;
}
.o-forms-field--professional-inverse .o-forms-input--radio-round .o-forms-input__label:after {
  background-color: #c0efd8;
}
.o-forms-field--professional-inverse input[type=radio]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--professional-inverse input[type=radio]:focus + .o-forms-input__label:before {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}
@supports selector(:focus-visible) {
  .o-forms-field--professional-inverse input[type=radio]:focus + .o-forms-input__label:before {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--professional-inverse input[type=radio]:focus-visible + .o-forms-input__label:before {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}

.o-forms-field--ft-live {
  color: #ffffff;
}
.o-forms-field--ft-live .o-forms-input--radio-round input[type=radio]:checked + .o-forms-input__label:before {
  border-color: #fcd0b1;
}
.o-forms-field--ft-live .o-forms-input--radio-round .o-forms-input__label:before {
  border: 1px solid #fcd0b1;
}
.o-forms-field--ft-live .o-forms-input--radio-round .o-forms-input__label:after {
  background-color: #fcd0b1;
}
.o-forms-field--ft-live input[type=radio]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--ft-live input[type=radio]:focus + .o-forms-input__label:before {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}
@supports selector(:focus-visible) {
  .o-forms-field--ft-live input[type=radio]:focus + .o-forms-input__label:before {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--ft-live input[type=radio]:focus-visible + .o-forms-input__label:before {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}

.o-forms-input--radio-box {
  border-color: #807973;
}
.o-forms-input--radio-box .o-forms-input--radio-box__container {
  background-color: transparent;
}
.o-forms-input--radio-box .o-forms-input--radio-box__container,
.o-forms-input--radio-box label:not(:first-of-type) {
  border-color: #807973;
}
.o-forms-input--radio-box input[type=radio] + .o-forms-input__label {
  color: #0d7680;
}
.o-forms-input--radio-box input[type=radio]:not(:checked):not(:disabled):hover + .o-forms-input__label {
  background-color: rgba(13, 118, 128, 0.15);
}
.o-forms-input--radio-box input[type=radio]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
}
@supports selector(:focus-visible) {
  .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-input--radio-box input[type=radio]:focus-visible + .o-forms-input__label {
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
  }
}
.o-forms-input--radio-box input[type=radio]:checked + .o-forms-input__label {
  background-color: #0d7680;
  color: #ffffff;
}
.o-forms-input--radio-box input[type=radio]:checked + .o-forms-input__label.o-forms-input__label--negative {
  background-color: hsl(185.2173913043deg, 81.5602836879%, 16.5234375%);
}
.o-forms-input--radio-box .o-forms-input--radio-box__container {
  font-size: 14px;
  line-height: unset;
  font-weight: 600;
  box-sizing: border-box;
  border: 1px solid #807973;
  display: inline-flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 2px;
}
.o-typography--loading-sans-bold .o-forms-input--radio-box .o-forms-input--radio-box__container {
  font-size: 11.62px;
}
.o-forms-input--radio-box.o-forms-input--invalid .o-forms-input--radio-box__container {
  border-color: #cc0000;
}
.o-forms-input--radio-box label {
  display: inline-flex;
  flex-grow: 1;
  cursor: pointer;
  margin: 0;
  min-height: 28px;
  min-width: 8ch;
}
.o-forms-input--radio-box label:not(:first-of-type) {
  border-left: 1px solid #807973;
}
.o-forms-input--radio-box label .o-forms-input__label {
  box-sizing: border-box;
  padding: 4px 8px;
  transition: 0.3s background-color, 0.15s color ease-out;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.o-forms-input--radio-box input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.o-forms-input--radio-box input[type=radio]:disabled + .o-forms-input__label {
  cursor: default;
  opacity: 0.4;
}
@media (min-width: 30.625em) {
  .o-forms-input--radio-box.o-forms-input--inline .o-forms-input__state {
    position: relative;
    margin-bottom: 0;
  }
}
.o-forms-input--radio-box .o-forms-input__state {
  position: relative;
  margin-bottom: -22px;
}

.o-forms-field--professional .o-forms-input--radio-box {
  border-color: #807973;
}
.o-forms-field--professional .o-forms-input--radio-box .o-forms-input--radio-box__container {
  background-color: transparent;
}
.o-forms-field--professional .o-forms-input--radio-box .o-forms-input--radio-box__container,
.o-forms-field--professional .o-forms-input--radio-box label:not(:first-of-type) {
  border-color: #807973;
}
.o-forms-field--professional .o-forms-input--radio-box input[type=radio] + .o-forms-input__label {
  color: #262a33;
}
.o-forms-field--professional .o-forms-input--radio-box input[type=radio]:not(:checked):not(:disabled):hover + .o-forms-input__label {
  background-color: rgba(38, 42, 51, 0.15);
}
.o-forms-field--professional .o-forms-input--radio-box input[type=radio]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--professional .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
}
@supports selector(:focus-visible) {
  .o-forms-field--professional .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--professional .o-forms-input--radio-box input[type=radio]:focus-visible + .o-forms-input__label {
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
  }
}
.o-forms-field--professional .o-forms-input--radio-box input[type=radio]:checked + .o-forms-input__label {
  background-color: #262a33;
  color: #ffffff;
}
.o-forms-field--professional .o-forms-input--radio-box input[type=radio]:checked + .o-forms-input__label.o-forms-input__label--negative {
  background-color: #262a33;
}

.o-forms-field--professional-inverse .o-forms-input--radio-box {
  border-color: #c0efd8;
}
.o-forms-field--professional-inverse .o-forms-input--radio-box .o-forms-input--radio-box__container {
  background-color: transparent;
}
.o-forms-field--professional-inverse .o-forms-input--radio-box .o-forms-input--radio-box__container,
.o-forms-field--professional-inverse .o-forms-input--radio-box label:not(:first-of-type) {
  border-color: #c0efd8;
}
.o-forms-field--professional-inverse .o-forms-input--radio-box input[type=radio] + .o-forms-input__label {
  color: #c0efd8;
}
.o-forms-field--professional-inverse .o-forms-input--radio-box input[type=radio]:not(:checked):not(:disabled):hover + .o-forms-input__label {
  background-color: rgba(192, 239, 216, 0.15);
}
.o-forms-field--professional-inverse .o-forms-input--radio-box input[type=radio]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--professional-inverse .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}
@supports selector(:focus-visible) {
  .o-forms-field--professional-inverse .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--professional-inverse .o-forms-input--radio-box input[type=radio]:focus-visible + .o-forms-input__label {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}
.o-forms-field--professional-inverse .o-forms-input--radio-box input[type=radio]:checked + .o-forms-input__label {
  background-color: #c0efd8;
  color: #262a33;
}
.o-forms-field--ft-live .o-forms-input--radio-box {
  border-color: #fcd0b1;
}
.o-forms-field--ft-live .o-forms-input--radio-box .o-forms-input--radio-box__container {
  background-color: transparent;
}
.o-forms-field--ft-live .o-forms-input--radio-box .o-forms-input--radio-box__container,
.o-forms-field--ft-live .o-forms-input--radio-box label:not(:first-of-type) {
  border-color: #fcd0b1;
}
.o-forms-field--ft-live .o-forms-input--radio-box input[type=radio] + .o-forms-input__label {
  color: #fcd0b1;
}
.o-forms-field--ft-live .o-forms-input--radio-box input[type=radio]:not(:checked):not(:disabled):hover + .o-forms-input__label {
  background-color: rgba(252, 208, 177, 0.15);
}
.o-forms-field--ft-live .o-forms-input--radio-box input[type=radio]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--ft-live .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}
@supports selector(:focus-visible) {
  .o-forms-field--ft-live .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--ft-live .o-forms-input--radio-box input[type=radio]:focus-visible + .o-forms-input__label {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}
.o-forms-field--ft-live .o-forms-input--radio-box input[type=radio]:checked + .o-forms-input__label {
  background-color: #fcd0b1;
  color: #262a33;
}
.o-forms-input--select.o-forms-input--small select {
  font-size: 14px;
  line-height: 1.65;
  min-height: 28px;
  padding: 0 8px;
}
.o-typography--loading-sans .o-forms-input--select.o-forms-input--small select {
  font-size: 12.18px;
}
.o-forms-input--select.o-forms-input--suffix {
  display: flex;
  flex-wrap: wrap;
}
.o-forms-input--select.o-forms-input--suffix select {
  flex: 1;
  min-width: 0;
  margin-right: 8px;
}
.o-forms-input--select.o-forms-input--suffix select:only-child {
  margin-right: 0;
}
.o-forms-input--select.o-forms-input--suffix .o-forms-input__error {
  width: 100%;
}
.o-forms-input--select select {
  font-family: inherit;
  font-size: inherit;
  background-color: #ffffff;
  border: 1px solid #807973;
  box-sizing: border-box;
  min-height: 40px;
  padding: 8px;
  width: 100%;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:arrow-down?source=ig-content&format=svg");
  appearance: none;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border-radius: 0;
  background-clip: padding-box;
  color: #33302e;
  cursor: pointer;
  outline: none;
  background-position: right center;
  background-position: right 8px center;
}
.o-forms-input--select select:disabled {
  cursor: default;
  color: #66605c;
  background-color: #e6d9ce;
  border-color: #e6d9ce;
  -webkit-text-fill-color: currentColor;
  opacity: 1;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--select select {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:arrow-down?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--select select {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:arrow-down?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-input--select select::-ms-expand {
  color: #ffffff;
  display: none;
}
.o-forms-input--select select:disabled {
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:arrow-down?source=ig-content&tint=%2366605C,%2366605C&format=svg");
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--select select:disabled {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:arrow-down?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--select select:disabled {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:arrow-down?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-input--select select[multiple] {
  background-image: none;
}

.o-forms-input--textarea textarea {
  font-family: inherit;
  font-size: inherit;
  background-color: #ffffff;
  border: 1px solid #807973;
  box-sizing: border-box;
  min-height: 40px;
  padding: 8px;
  width: 100%;
  resize: vertical;
}
.o-forms-input--textarea textarea:disabled {
  cursor: default;
  color: #66605c;
  background-color: #e6d9ce;
  border-color: #e6d9ce;
  -webkit-text-fill-color: currentColor;
  opacity: 1;
}

.o-forms-input--text.o-forms-input--small input, .o-forms-input--password.o-forms-input--small input {
  font-size: 14px;
  line-height: 1.65;
  min-height: 28px;
  padding: 0 8px;
}
.o-typography--loading-sans .o-forms-input--text.o-forms-input--small input, .o-typography--loading-sans .o-forms-input--password.o-forms-input--small input {
  font-size: 12.18px;
}
.o-forms-input--text.o-forms-input--suffix, .o-forms-input--password.o-forms-input--suffix {
  display: flex;
  flex-wrap: wrap;
}
.o-forms-input--text.o-forms-input--suffix input, .o-forms-input--password.o-forms-input--suffix input {
  flex: 1;
  min-width: 0;
  margin-right: 8px;
}
.o-forms-input--text.o-forms-input--suffix input:only-child, .o-forms-input--password.o-forms-input--suffix input:only-child {
  margin-right: 0;
}
.o-forms-input--text.o-forms-input--suffix .o-forms-input__error, .o-forms-input--password.o-forms-input--suffix .o-forms-input__error {
  width: 100%;
}
.o-forms-input--text input, .o-forms-input--password input {
  font-family: inherit;
  font-size: inherit;
  background-color: #ffffff;
  border: 1px solid #807973;
  box-sizing: border-box;
  min-height: 40px;
  padding: 8px;
  width: 100%;
}
.o-forms-input--text input:disabled, .o-forms-input--password input:disabled {
  cursor: default;
  color: #66605c;
  background-color: #e6d9ce;
  border-color: #e6d9ce;
  -webkit-text-fill-color: currentColor;
  opacity: 1;
}

.o-forms-input--toggle > label {
  display: flex;
}
.o-forms-input--toggle .o-forms-input__label {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 48px;
  min-height: 24px;
}
.o-forms-input--toggle .o-forms-input__label:before, .o-forms-input--toggle .o-forms-input__label:after {
  content: "";
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
.o-forms-input--toggle .o-forms-input__label:before {
  background-color: #000000;
  border-radius: 40px;
  height: 24px;
  width: 40px;
}
.o-forms-input--toggle .o-forms-input__label:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%2333302E,%2333302E&format=svg");
  background-color: #fff1e5;
  background-color: var(--o-forms-toggle-handle-color, #fff1e5);
  border: 2px solid #33302e;
  border-radius: 50%;
  box-sizing: border-box;
  height: 24px;
  width: 24px;
  transition: left 75ms ease-in-out;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--toggle .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--toggle .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-input--toggle input[type=checkbox]:checked + .o-forms-input__label:before {
  background-color: #0d7680;
}
.o-forms-input--toggle input[type=checkbox]:checked + .o-forms-input__label:after {
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%230D7680,%230D7680&format=svg");
  left: 16px;
  border-color: #0d7680;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--toggle input[type=checkbox]:checked + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--toggle input[type=checkbox]:checked + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-input--toggle input[type=checkbox]:invalid:not(:disabled) + .o-forms-input__label:after {
  border-color: inherit;
}
.o-forms-input--toggle input[type=checkbox]:focus, .o-forms-input--toggle input[type=checkbox]:focus-visible {
  outline: unset;
  box-shadow: unset;
}
.o-forms-input--toggle input[type=checkbox]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-input--toggle input[type=checkbox]:focus + .o-forms-input__label:before {
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
}
@supports selector(:focus-visible) {
  .o-forms-input--toggle input[type=checkbox]:focus + .o-forms-input__label:before {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-input--toggle input[type=checkbox]:focus-visible + .o-forms-input__label:before {
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4d4845;
  }
}
.o-forms-input--toggle input[type=checkbox]:disabled + .o-forms-input__label {
  color: #66605c;
}
.o-forms-input--toggle input[type=checkbox]:disabled + .o-forms-input__label:after {
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%23000000,%23000000&format=svg");
  border-color: #ccc1b7;
  background-color: #999189;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--toggle input[type=checkbox]:disabled + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--toggle input[type=checkbox]:disabled + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-input--toggle input[type=checkbox]:disabled + .o-forms-input__label:before {
  background-color: #ccc1b7;
}
.o-forms-input--toggle input[type=checkbox]:disabled:checked + .o-forms-input__label:after {
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--toggle input[type=checkbox]:disabled:checked + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--toggle input[type=checkbox]:disabled:checked + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}

/* inline field titles and inputs
	[title] [input]
	or
	[title] [input]
					[input]
*/
@media (min-width: 30.625em) {
  .o-forms-field--inline {
    flex-direction: row;
    justify-content: space-between;
  }
  .o-forms-field--inline .o-forms-title {
    flex: 0 1 50%;
    margin-right: 12px;
    box-sizing: border-box;
  }
  .o-forms-field--inline .o-forms-title.o-forms-title--shrink {
    flex-basis: auto;
  }
  .o-forms-field--inline .o-forms-title.o-forms-title--vertical-center {
    align-self: center;
  }
  .o-forms-field--inline .o-forms-input {
    display: flex;
    flex-direction: column;
    flex: 1 0 50%;
    align-items: flex-start;
    margin: 0;
  }

  /* inline inputs
  	[title] 
  	[input] [input]
  	or (combined with field inline)
  	[title] [input] [input]
  */
  .o-forms-input.o-forms-input--inline {
    display: flex;
    flex-flow: row wrap;
  }
  .o-forms-input.o-forms-input--inline label {
    margin: 0 16px 12px 0;
    max-width: 75%;
  }
  .o-forms-input.o-forms-input--inline.o-forms-input--date label, .o-forms-input.o-forms-input--inline.o-forms-input--radio-box label {
    margin: 0;
  }
}
.o-forms__error-summary {
  font-family: MetricWeb, sans-serif;
  font-size: 16px;
  line-height: 20px;
  background-color: #fad9ce;
  margin-bottom: 16px;
  padding: 12px;
  position: relative;
  padding-left: calc(16px + 1rem + 8px);
}
.o-typography--loading-sans .o-forms__error-summary {
  font-size: 13.92px;
  font-family: sans-serif;
}
.o-forms__error-summary:before {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 2rem;
  height: 2rem;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:warning-alt?source=ig-content&tint=%23B30000,%23B30000&format=svg");
  content: "";
  position: absolute;
  margin: -0.5rem;
  left: 16px;
  top: calc(12px + 0.1rem);
}
@media screen and (-ms-high-contrast: active) {
  .o-forms__error-summary:before {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:warning-alt?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms__error-summary:before {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:warning-alt?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms__error-summary .o-forms__error-summary__heading {
  font-weight: 600;
  color: #b30000;
  margin: 0 0 4px;
}
.o-forms__error-summary .o-forms__error-summary__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.o-forms__error-summary .o-forms__error-summary__list a {
  color: #b30000;
  display: inline-block;
  font-weight: 400;
  margin-top: 4px;
  text-decoration: none;
  border-bottom: 1px solid #cc0000;
}
.o-forms__error-summary .o-forms__error-summary__list .o-forms__error-summary__item-overview {
  font-weight: 600;
}

.o-forms-field--inverse {
  color: #ffffff;
}
.o-forms-field--inverse .o-forms-title .o-forms-title__main:after,
.o-forms-field--inverse .o-forms-title .o-forms-title__prompt {
  color: rgba(255, 255, 255, 0.7);
}
.o-forms-field--inverse .o-forms-input__label:before {
  background-color: #ffffff;
}
.o-forms-field--inverse .o-forms-input__label:after {
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%23FFFFFF,%23FFFFFF&format=svg");
  border-color: #ffffff;
  background-color: #262a33;
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-field--inverse .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-field--inverse .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:cross?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-field--inverse input:focus {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}

@supports selector(:focus-visible) {
  .o-forms-field--inverse input:focus {
    outline: unset;
    box-shadow: unset;
  }

  .o-forms-field--inverse input:focus-visible {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}
.o-forms-field--inverse input[type=checkbox]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--inverse input[type=checkbox]:focus + .o-forms-input__label:before {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}
@supports selector(:focus-visible) {
  .o-forms-field--inverse input[type=checkbox]:focus + .o-forms-input__label:before {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--inverse input[type=checkbox]:focus-visible + .o-forms-input__label:before {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}
.o-forms-field--inverse input[type=checkbox]:checked + .o-forms-input__label:before {
  background-color: hsl(185.2173913043deg, 100%, 55.078125%);
}
.o-forms-field--inverse input[type=checkbox]:checked + .o-forms-input__label:after {
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%231AEBFF,%231AEBFF&format=svg");
  border-color: hsl(185.2173913043deg, 100%, 55.078125%);
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-field--inverse input[type=checkbox]:checked + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-field--inverse input[type=checkbox]:checked + .o-forms-input__label:after {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}
.o-forms-field--inverse .o-forms-input--invalid *:invalid:not(:disabled), .o-forms-field--inverse .o-forms-input--invalid input:not(:disabled), .o-forms-field--inverse .o-forms-input--invalid textarea:not(:disabled), .o-forms-field--inverse .o-forms-input--invalid select:not(:disabled) {
  color: #000000;
  border-color: hsl(340deg, 100%, 54.9019607843%);
}
.o-forms-field--inverse .o-forms-input--invalid *:invalid:not(:disabled) + .o-forms-input__label:before,
.o-forms-field--inverse .o-forms-input--invalid *:invalid:not(:disabled) + .o-forms-input__label:after, .o-forms-field--inverse .o-forms-input--invalid input:not(:disabled) + .o-forms-input__label:before,
.o-forms-field--inverse .o-forms-input--invalid input:not(:disabled) + .o-forms-input__label:after, .o-forms-field--inverse .o-forms-input--invalid textarea:not(:disabled) + .o-forms-input__label:before,
.o-forms-field--inverse .o-forms-input--invalid textarea:not(:disabled) + .o-forms-input__label:after, .o-forms-field--inverse .o-forms-input--invalid select:not(:disabled) + .o-forms-input__label:before,
.o-forms-field--inverse .o-forms-input--invalid select:not(:disabled) + .o-forms-input__label:after {
  border-color: hsl(340deg, 100%, 54.9019607843%);
}
.o-forms-field--inverse .o-forms-input--invalid .o-forms-input__error {
  color: #ffffff;
}
.o-forms-field--inverse .o-forms-input--radio-box.o-forms-input--invalid .o-forms-input--radio-box__container {
  border-color: hsl(340deg, 100%, 54.9019607843%);
}
.o-forms-field--inverse .o-forms-input--radio-box__container {
  background-color: #ffffff;
}
.o-forms-field--inverse .o-forms-input--radio-box input[type=radio]:focus {
  outline: unset;
  box-shadow: unset;
}
.o-forms-field--inverse .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
}
@supports selector(:focus-visible) {
  .o-forms-field--inverse .o-forms-input--radio-box input[type=radio]:focus + .o-forms-input__label {
    outline: unset;
    box-shadow: unset;
  }
  .o-forms-field--inverse .o-forms-input--radio-box input[type=radio]:focus-visible + .o-forms-input__label {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  }
}
.o-forms-field--inverse .o-forms-input--file ::file-selector-button {
  background-color: #ffffff;
  color: #262a33;
  border-color: transparent;
}
.o-forms-field--inverse .o-forms-input--file ::file-selector-button:hover {
  background-color: #c9cacc;
  color: #262a33;
  border-color: transparent;
  text-decoration: none;
}
.o-forms-field--inverse .o-forms-input--file ::file-selector-button:focus {
  box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
  background-color: #c9cacc;
  color: #262a33;
  border-color: transparent;
  z-index: 1;
}

@supports selector(:focus-visible) {
  .o-forms-field--inverse .o-forms-input--file ::file-selector-button:focus {
    outline: unset;
    box-shadow: unset;
  }

  .o-forms-field--inverse .o-forms-input--file ::file-selector-button:focus-visible {
    box-shadow: 0 0 0 4px #4d4845, 0 0 0 8px #ffffff;
    background-color: #c9cacc;
    color: #262a33;
    border-color: transparent;
    z-index: 1;
  }
}
.o-forms-field--inverse .o-forms-input--file ::file-selector-button[aria-selected=true], .o-forms-field--inverse .o-forms-input--file ::file-selector-button[aria-current], .o-forms-field--inverse .o-forms-input--file ::file-selector-button[aria-pressed=true], .o-forms-field--inverse .o-forms-input--file ::file-selector-button:active {
  background-color: #9d9fa3;
  color: #262a33;
  border-color: transparent;
}

.o-forms__error-summary--inverse {
  background-color: rgba(255, 25, 102, 0.11);
  border-color: hsl(340deg, 100%, 54.9019607843%);
  border-width: 1px;
  border-style: solid;
}
.o-forms__error-summary--inverse .o-forms__error-summary__heading {
  color: #ffffff;
}
.o-forms__error-summary--inverse .o-forms__error-summary__list {
  color: #ffffff;
}
.o-forms__error-summary--inverse .o-forms__error-summary__list a {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.o-forms__error-summary--inverse .o-forms__error-summary__list a:focus,
.o-forms__error-summary--inverse .o-forms__error-summary__list a:focus-visible {
  outline-color: inherit;
}

.o-forms-field--white {
  --o-forms-toggle-handle-color: #ffffff;
}

.o-forms-input__state {
  font-size: 14px;
  line-height: 1.75;
  color: inherit;
  display: flex;
  align-items: center;
}
.o-typography--loading-sans .o-forms-input__state {
  font-size: 12.18px;
}
.o-forms-input__state:before, .o-forms-input__state:after {
  content: "";
}

.o-forms-input__state--icon-only:after {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: polygon(0 0, 0 0);
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  width: 2px;
  height: 2px;
  white-space: nowrap;
}

.o-forms-input__state--custom:after {
  display: none;
}

.o-forms-input--saving {
  display: block;
}
.o-forms-input--saving .o-forms-input__state {
  padding: 0;
}
.o-forms-input--saving .o-forms-input__state:after {
  content: "Saving";
}
.o-forms-input--saving .o-forms-input__state:before {
  border-style: solid;
  border-color: rgba(51, 48, 46, 0.25);
  border-top-color: #33302e;
  width: 12px;
  height: 12px;
  border-width: 2px;
  margin: 0 8px 0 0;
}
@keyframes o-loading-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.o-forms-input--saving .o-forms-input__state:before {
  display: inline-block;
  border-radius: 50%;
  animation: o-loading-spinner 1s infinite linear;
}

.o-forms-input--saved {
  display: block;
  color: #007a3e;
}
.o-forms-input--saved .o-forms-input__state {
  margin-left: -4px;
}
.o-forms-input--saved .o-forms-input__state:after {
  content: "Saved";
}
.o-forms-input--saved .o-forms-input__state:before {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-color: transparent;
  vertical-align: baseline;
  width: 28px;
  height: 28px;
  background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23007A3E,%23007A3E&format=svg");
}
@media screen and (-ms-high-contrast: active) {
  .o-forms-input--saved .o-forms-input__state:before {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23ffffff,%23ffffff&format=svg");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .o-forms-input--saved .o-forms-input__state:before {
    background-image: url("https://www.ft.com/__origami/service/image/v2/images/raw/fticon-v1:tick?source=ig-content&tint=%23000000,%23000000&format=svg");
  }
}

@media (min-width: 30.625em) {
  .o-forms-input--inline.o-forms-input--saving, .o-forms-input--inline.o-forms-input--saved {
    flex-direction: row-reverse;
    align-items: center;
  }
  .o-forms-input--inline.o-forms-input--saving label, .o-forms-input--inline.o-forms-input--saved label {
    margin: 0;
  }
  .o-forms-input--inline.o-forms-input--saving .o-forms-input__state--icon-only, .o-forms-input--inline.o-forms-input--saved .o-forms-input__state--icon-only {
    padding: 0;
  }
  .o-forms-input--inline.o-forms-input--saving .o-forms-input__state {
    padding: 0 12px;
  }
  .o-forms-input--inline.o-forms-input--saved .o-forms-input__state {
    padding: 0 12px 0 8px;
  }
}
.component.main-wrapper label {
  margin-bottom: 12px;
}
.component.main-wrapper .dropdown-selected .o-forms-input--select select {
  color: black;
}
.component.main-wrapper .mobile-ai-transcript {
  font-family: MetricWeb, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  background: var(--White-Tints-White-80, #fffcfa);
  padding: 8px 8px 12px 8px;
  color: var(--Primary-FT-Grey, #333);
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}
.nav-container .nav-item {
  background: none;
  border: none;
  width: 80px;
  margin-right: 8px;
  box-sizing: border-box;
  padding: 4px;
  cursor: pointer;
}
.nav-container .nav-item:last-child {
  margin-right: 0;
}
.nav-container .nav-item .nav-item-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.nav-container .nav-item .nav-item-circle--selected {
  border: 4px solid #ffc699;
}
.nav-container .nav-item .nav-item-circle .nav-item-name {
  position: absolute;
}
.nav-container .nav-item:hover .nav-item-circle--selected {
  border: 4px solid #fea661;
}

@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Thin&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Thin&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Light&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Light&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-LightItalic&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-LightItalic&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Regular&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Regular&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-RegularItalic&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-RegularItalic&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Medium&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Medium&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Semibold&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Semibold&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Bold&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Bold&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-BoldItalic&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-BoldItalic&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Black&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=MetricWeb-Black&system_code=origami&font_format=woff") format("woff");
  font-family: "MetricWeb";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Light&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Light&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-LightItalic&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-LightItalic&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Regular&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Regular&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-RegularItalic&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-RegularItalic&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-MediumItalic&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-MediumItalic&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Medium&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Medium&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Semibold&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Semibold&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-SemiboldItalic&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-SemiboldItalic&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Bold&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Bold&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Black&system_code=origami&font_format=woff2") format("woff2"), url("https://www.ft.com/__origami/service/build/v3/font?version=1.12&font_name=FinancierDisplayWeb-Black&system_code=origami&font_format=woff") format("woff");
  font-family: "FinancierDisplayWeb";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html,
body {
  margin: 0;
  height: 100%;
  padding: 2px;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.component.main-wrapper {
  margin-top: 44px;
  margin-bottom: 2em;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 2px solid #ffc699;
  padding: 52px 40px 0;
  position: relative;
}
.component.main-wrapper:before {
  content: open-quote;
  text-align: center;
  font-family: FinancierDisplayWeb, serif;
  font-size: 228.392px;
  font-weight: 800;
  line-height: 228.392px;
  position: absolute;
  top: -78px;
  color: #ffc699;
}
.component.main-wrapper .main-quote {
  font-family: Georgia;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  width: 45%;
}
.component.main-wrapper .transcript-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  width: 55%;
  color: #333333;
}
.component.main-wrapper .transcript-container h4 {
  font-family: MetricWeb, sans-serif;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin: -24px 0 4px 150px;
}
.component.main-wrapper button.play,
.component.main-wrapper button.fwd,
.component.main-wrapper button.rwd {
  background: #fff1e5;
}

.component.main-wrapper--mobile {
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  margin-top: 20px;
  margin-bottom: 1em;
  border-radius: 0;
  display: inline-flex;
  width: 100%;
}
.component.main-wrapper--mobile:before {
  left: 0;
  width: 100%;
  font-size: 112.941px;
  line-height: 112.941px;
  top: -40px;
}
.component.main-wrapper--mobile .main-quote {
  width: 100%;
  max-width: 400px;
}
.component.main-wrapper--mobile .transcript-container {
  display: none;
}
.component.main-wrapper--mobile .audio-transcript--ai {
  border-radius: 0;
  border: 0;
  background: #fffcfa;
}

/*# sourceMappingURL=style.css.map */
