[hidden] {
  display: none !important;
}

.article-list {
  display: grid;
  margin-top: clamp(42px, 6vw, 76px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.article-list__status {
  margin: 0;
  color: #666666;
  font-size: 1rem;
  grid-column: 1 / -1;
}

.article-list__status[data-type="error"] {
  color: #a11a1a;
}

.article-card {
  display: block;
  color: #111111;
}

.article-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #efefef;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.article-card:hover .article-card__image {
  opacity: 0.86;
}

.article-card__content {
  padding-top: 18px;
}

.article-card__meta {
  margin: 0 0 12px;
  color: #6b6b6b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card__featured {
  color: #ce2029;
}

.article-card__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.article-card__title a {
  color: inherit;
  text-decoration: none;
}

.article-card__title a:hover,
.article-card__title a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-card__author {
  margin: 14px 0 0;
  color: #555555;
  font-size: 0.9rem;
}

.article-card__author a {
  color: inherit;
  text-decoration-color: #a8a8a8;
  text-underline-offset: 3px;
}

.listing-page,
.team-page {
  padding: clamp(64px, 9vw, 132px) clamp(20px, 5vw, 76px)
    clamp(88px, 12vw, 170px);
}

.listing-page__inner,
.team-page__inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.listing-page__header {
  max-width: 900px;
}

.listing-page__header h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.listing-page__line {
  width: clamp(72px, 9vw, 128px);
  height: 2px;
  margin-top: 26px;
  background: #111111;
}

.listing-page__intro {
  max-width: 620px;
  margin: 26px 0 0;
  color: #5e5e5e;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  margin-top: clamp(46px, 7vw, 86px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-leadership {
  display: grid;
  margin-top: clamp(52px, 7vw, 88px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-profile {
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  grid-template-rows: auto 1fr;
}

a.team-profile {
  transition: transform 180ms ease;
}

a.team-profile:hover,
a.team-profile:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
  transform: translateY(-4px);
}

.team-profile__media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ce2029;
  place-items: center;
}

.team-profile:nth-child(2) .team-profile__media {
  background: #dedede;
  color: #111111;
}

.team-profile:nth-child(3) .team-profile__media {
  background: #262626;
}

.team-profile__placeholder {
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 750;
  letter-spacing: -0.08em;
}

.team-profile__portrait {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-profile__content {
  display: grid;
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  align-content: space-between;
}

.team-profile__role {
  color: #bdbdbd;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-profile h2 {
  margin: 44px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.team-profile__cta {
  margin-top: 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.team-subheading {
  margin-top: clamp(82px, 11vw, 150px);
  padding-top: clamp(36px, 5vw, 64px);
  border-top: 1px solid #dedede;
}

.team-subheading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.team-subheading + .team-grid {
  margin-top: clamp(34px, 5vw, 58px);
}

.team-card {
  display: grid;
  min-height: 240px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid #dedede;
  color: #111111;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
  align-content: space-between;
}

.team-card:hover,
.team-card:focus-visible {
  background: #111111;
  color: #ffffff;
  outline: none;
}

.team-card__role {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card__name {
  margin: 34px 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.team-card__cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.writer-page {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 76px);
}

.auth-panel {
  display: grid;
  min-height: calc(100vh - 185px);
  place-items: center;
}

.auth-card {
  width: min(100%, 470px);
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid #dedede;
}

.section-kicker {
  margin: 0 0 14px;
  color: #777777;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-card h1,
.editor-heading h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.auth-card__intro {
  margin: 20px 0 30px;
  color: #5c5c5c;
  line-height: 1.55;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label,
.field label,
.gallery-upload-row__fields label {
  color: #242424;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.auth-form input,
.field input,
.field select,
.field textarea,
.gallery-upload-row__fields input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cccccc;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font: inherit;
}

.auth-form input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.gallery-upload-row__fields input:focus {
  border-color: #111111;
  outline: 1px solid #111111;
}

.auth-form input[readonly] {
  background: #f5f5f5;
  color: #555555;
}

.primary-action,
.secondary-action,
.danger-action {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid #111111;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-action {
  background: #111111;
  color: #ffffff;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #ffffff;
  color: #111111;
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.55;
}

.secondary-action {
  background: #ffffff;
  color: #111111;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: #f2f2f2;
}

.secondary-action:disabled,
.danger-action:disabled {
  cursor: wait;
  opacity: 0.55;
}

.danger-action {
  background: #ffffff;
  border-color: #b91c1c;
  color: #b91c1c;
}

.danger-action:hover,
.danger-action:focus-visible {
  background: #b91c1c;
  color: #ffffff;
}

.auth-form .primary-action {
  margin-top: 10px;
}

.form-status {
  min-height: 1.4em;
  margin: 16px 0 0;
  color: #555555;
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-status[data-type="error"] {
  color: #a11a1a;
}

.form-status[data-type="success"] {
  color: #176a37;
}

.form-status[data-type="warning"] {
  color: #8a5b00;
}

.form-status a {
  font-weight: 700;
  text-underline-offset: 3px;
}

.editor-panel {
  display: grid;
  width: min(100%, 1400px);
  margin: 0 auto;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0 clamp(32px, 5vw, 72px);
}

.editor-heading {
  display: flex;
  margin-bottom: clamp(38px, 5vw, 58px);
  align-items: flex-start;
  justify-content: space-between;
  grid-column: 1 / -1;
  gap: 24px;
}

.editor-heading__account {
  margin: 18px 0 0;
  color: #666666;
}

.desk-tabs {
  display: flex;
  position: sticky;
  top: 28px;
  overflow: hidden;
  border-right: 1px solid #d7d7d7;
  align-self: start;
  flex-direction: column;
  grid-column: 1;
  grid-row: 2;
}

.desk-tab {
  display: grid;
  width: 100%;
  min-height: 66px;
  padding: 13px 18px;
  border: 0;
  border-left: 4px solid transparent;
  background: transparent;
  color: #666666;
  cursor: pointer;
  text-align: left;
  align-content: center;
  gap: 4px;
}

.desk-tab[aria-selected="true"] {
  border-left-color: #ce2029;
  background: #f5f5f5;
  color: #111111;
}

.desk-tab__label {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desk-tab small {
  color: #8a8a8a;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
}

.desk-tab:hover,
.desk-tab:focus-visible {
  background: #f4f4f4;
  color: #111111;
  outline: none;
}

.desk-tab:focus-visible {
  outline: 2px solid #ce2029;
  outline-offset: 2px;
}

#editor-panel > [data-desk-panel] {
  min-width: 0;
  grid-column: 2;
  grid-row: 2;
}

.article-manager {
  margin-bottom: clamp(58px, 8vw, 96px);
  padding: clamp(24px, 4vw, 42px);
  background: #f6f6f6;
}

.article-manager__heading,
.article-editor-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.article-manager__heading h2,
.article-editor-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.article-manager__heading .secondary-action {
  flex: 0 0 auto;
}

.staff-article-list {
  display: grid;
  margin-top: 34px;
  gap: 12px;
}

.article-manager__status {
  margin-bottom: 0;
}

.media-maintenance {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #d8d8d8;
}

.media-maintenance__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.media-maintenance__heading h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.media-maintenance__summary {
  margin: 18px 0 0;
  color: #555555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.media-maintenance__progress {
  width: 100%;
  height: 12px;
  margin-top: 18px;
  accent-color: #111111;
}

.media-maintenance__status {
  margin-bottom: 0;
}

.staff-article-card {
  display: flex;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dedede;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.staff-article-card__details {
  min-width: 0;
}

.staff-article-card__meta {
  margin: 0 0 10px;
  color: #6b6b6b;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-article-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.staff-article-card__author {
  margin: 10px 0 0;
  color: #666666;
  font-size: 0.86rem;
}

.staff-article-card__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.staff-article-card__actions .primary-action,
.staff-article-card__actions .secondary-action,
.staff-article-card__actions .danger-action {
  display: inline-flex;
  min-width: 96px;
  min-height: 44px;
  padding-inline: 18px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.staff-article-card__actions [aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}

.writer-manager__intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: #555555;
  line-height: 1.6;
}

.writer-form {
  display: flex;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid #dedede;
  background: #ffffff;
  align-items: flex-end;
  gap: 14px;
}

.writer-form .field {
  min-width: 0;
  margin: 0;
  flex: 1 1 auto;
}

.writer-form .primary-action {
  flex: 0 0 auto;
}

.writer-manager__status {
  margin-bottom: 0;
}

.writer-list {
  display: grid;
  margin-top: 26px;
  gap: 10px;
}

.writer-card {
  display: flex;
  padding: 18px 20px;
  border: 1px solid #dedede;
  background: #ffffff;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.writer-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.writer-card__availability {
  margin: 7px 0 0;
  color: #6b6b6b;
  font-size: 0.78rem;
}

.writer-card__availability[data-active="false"] {
  color: #8a5b00;
}

.writer-card .secondary-action {
  min-width: 104px;
  min-height: 44px;
  flex: 0 0 auto;
}

.inline-desk-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #a11a1a;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-desk-link:hover,
.inline-desk-link:focus-visible {
  color: #111111;
}

.wire-access-manager__intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: #555555;
  line-height: 1.6;
}

.wire-organization-form {
  display: flex;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid #dedede;
  background: #ffffff;
  align-items: flex-end;
  gap: 14px;
}

.wire-organization-form .field {
  min-width: 0;
  margin: 0;
  flex: 1 1 auto;
}

.wire-organization-form .primary-action {
  flex: 0 0 auto;
}

.wire-access-manager__status {
  margin-bottom: 0;
}

.wire-organization-list {
  display: grid;
  margin-top: 26px;
  gap: 12px;
}

.wire-organization-card {
  display: flex;
  padding: 22px;
  border: 1px solid #dedede;
  background: #ffffff;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wire-organization-card__details {
  min-width: 0;
}

.wire-organization-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wire-organization-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.wire-organization-card__state {
  padding: 5px 8px;
  background: #e1f3e6;
  color: #176a37;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wire-organization-card__state--revoked {
  background: #f8e3e3;
  color: #9e1b1b;
}

.wire-organization-card__meta {
  display: grid;
  margin: 14px 0 0;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 5px 12px;
  color: #666666;
  font-size: 0.78rem;
}

.wire-organization-card__meta dt {
  font-weight: 700;
}

.wire-organization-card__meta dd {
  margin: 0;
}

.wire-organization-card__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.document-manager__intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: #555555;
  line-height: 1.6;
}

.document-upload-form {
  display: grid;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid #dedede;
  background: #ffffff;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.document-upload-form .field {
  margin: 0;
}

.document-upload-form .field--wide,
.document-upload-form .primary-action {
  grid-column: 1 / -1;
}

.document-upload-form .primary-action {
  justify-self: start;
}

.document-manager__status {
  margin-bottom: 0;
}

.hosted-document-list {
  display: grid;
  margin-top: 26px;
  gap: 12px;
}

.hosted-document-card {
  display: flex;
  padding: 22px;
  border: 1px solid #dedede;
  background: #ffffff;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hosted-document-card__details {
  min-width: 0;
}

.hosted-document-card__meta {
  margin: 0 0 10px;
  color: #6b6b6b;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.hosted-document-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hosted-document-card__description {
  max-width: 650px;
  margin: 10px 0 0;
  color: #555555;
  line-height: 1.5;
  white-space: pre-line;
}

.hosted-document-card__url {
  display: block;
  max-width: 680px;
  margin-top: 14px;
  color: #555555;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.hosted-document-card__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hosted-document-card__actions .secondary-action,
.hosted-document-card__actions .danger-action {
  display: inline-flex;
  min-height: 44px;
  padding-inline: 18px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.wire-credential-dialog {
  width: min(calc(100% - 32px), 560px);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.wire-credential-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.wire-credential-dialog__card {
  padding: clamp(28px, 5vw, 46px);
  border-top: 5px solid #ce2029;
  background: #ffffff;
}

.wire-credential-dialog h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.045em;
}

.wire-credential-dialog__organization {
  margin: 22px 0 0;
  color: #555555;
  font-weight: 700;
}

.wire-credential-dialog__label {
  margin: 24px 0 8px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wire-credential-dialog code {
  display: block;
  overflow-wrap: anywhere;
  padding: 16px;
  background: #f2f2f2;
  color: #111111;
  font-size: clamp(1rem, 4vw, 1.3rem);
  user-select: all;
}

.wire-credential-dialog__actions {
  display: flex;
  margin-top: 26px;
  justify-content: flex-end;
  gap: 10px;
}

.article-editor-heading {
  margin-bottom: 30px;
}

.text-button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.staff-podcast-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
}

.staff-podcast-card__cover {
  display: block;
  width: 88px;
  aspect-ratio: 1;
  background: #ededed;
  object-fit: cover;
}

.podcast-cover-preview {
  width: min(100%, 330px);
  margin-top: 26px;
}

.podcast-cover-preview .field-label {
  margin-bottom: 10px;
}

.podcast-cover-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: #ededed;
  object-fit: cover;
}

.podcast-guest-editor {
  display: grid;
  margin-top: 22px;
  gap: 16px;
}

.podcast-guest-editor__row {
  display: grid;
  padding: 18px;
  background: #f6f6f6;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.podcast-guest-editor__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.podcast-guest-editor__fields .field:last-child {
  grid-column: 1 / -1;
}

.podcast-guest-editor__fields textarea {
  min-height: 108px;
}

.podcast-order-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.podcast-order-controls button {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid #c8c8c8;
  background: #ffffff;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.podcast-order-controls button:hover,
.podcast-order-controls button:focus-visible {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
  outline: none;
}

.podcast-article-search {
  margin-top: 24px;
}

.podcast-article-picker {
  display: grid;
  max-height: 420px;
  margin-top: 18px;
  overflow: auto;
  border: 1px solid #d6d6d6;
}

.podcast-article-option {
  display: grid;
  min-height: 66px;
  padding: 13px 16px;
  border-bottom: 1px solid #e3e3e3;
  cursor: pointer;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
}

.podcast-article-option:last-child {
  border-bottom: 0;
}

.podcast-article-option:hover {
  background: #f5f5f5;
}

.podcast-article-option input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #ce2029;
}

.podcast-article-option span {
  display: grid;
  gap: 5px;
}

.podcast-article-option strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.podcast-article-option small {
  color: #6b6b6b;
  font-size: 0.7rem;
  line-height: 1.35;
}

.podcast-article-picker > .article-list__status {
  padding: 18px;
}

.podcast-selected-articles {
  margin-top: 28px;
}

.podcast-selected-articles > .field-label {
  margin-bottom: 10px;
}

.podcast-selected-articles__list {
  display: grid;
  gap: 8px;
}

.podcast-selected-article {
  display: grid;
  min-height: 56px;
  padding: 10px 12px;
  background: #f6f6f6;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.podcast-selected-article__order {
  color: #ce2029;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.podcast-selected-article strong {
  font-size: 0.86rem;
  line-height: 1.3;
}

.staff-match-list {
  gap: 18px;
}

.staff-match-card {
  display: grid;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #dedede;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  align-items: stretch;
  gap: 18px;
}

.staff-match-card > .match-card {
  height: 100%;
}

.staff-match-card__controls {
  display: grid;
  min-width: 0;
  padding: 18px;
  background: #f6f6f6;
  align-content: space-between;
  gap: 18px;
}

.quick-score-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(86px, 0.55fr)) minmax(160px, 1fr);
  align-items: end;
  gap: 12px;
}

.quick-score-form label {
  display: grid;
  color: #5f5f5f;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  gap: 7px;
}

.quick-score-form input,
.quick-score-form select {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid #c9c9c9;
  border-radius: 0;
  color: #111111;
  font: inherit;
}

.quick-score-form .primary-action {
  grid-column: 1 / -1;
  justify-self: end;
}

.team-library {
  margin-top: clamp(72px, 10vw, 130px);
}

.staff-team-card {
  display: grid;
  min-height: 92px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #dedede;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.staff-team-card__logo {
  display: grid;
  width: 72px;
  height: 72px;
  overflow: hidden;
  background: #f1f1f1;
  place-items: center;
}

.staff-team-card__logo img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.staff-team-card__details {
  min-width: 0;
}

.staff-team-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.team-logo-preview {
  width: min(100%, 220px);
  margin-top: 26px;
}

.team-logo-preview .field-label {
  margin-bottom: 10px;
}

.team-logo-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 18px;
  background: #f2f2f2;
  object-fit: contain;
}

.match-picker-search {
  margin-top: 24px;
}

.match-picker {
  display: grid;
  max-height: 430px;
  margin-top: 18px;
  overflow: auto;
  border: 1px solid #d6d6d6;
}

.match-picker__option {
  display: grid;
  min-height: 66px;
  padding: 13px 16px;
  border-bottom: 1px solid #e3e3e3;
  cursor: pointer;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
}

.match-picker__option:last-child {
  border-bottom: 0;
}

.match-picker__option:hover {
  background: #f5f5f5;
}

.match-picker__option input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #ce2029;
}

.match-picker__option span {
  display: grid;
  gap: 5px;
}

.match-picker__option strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.match-picker__option small {
  color: #6b6b6b;
  font-size: 0.7rem;
  line-height: 1.35;
}

.match-picker > .article-list__status {
  padding: 18px;
}

.selected-matches {
  margin-top: 28px;
}

.selected-matches > .field-label {
  margin-bottom: 10px;
}

.selected-matches__list {
  display: grid;
  gap: 8px;
}

.selected-match {
  display: grid;
  min-height: 56px;
  padding: 10px 12px;
  background: #f6f6f6;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.selected-match__order {
  color: #ce2029;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.selected-match strong {
  font-size: 0.86rem;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .staff-match-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .quick-score-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-score-form__detail {
    grid-column: 1 / -1;
  }

  .staff-team-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .staff-team-card__logo {
    width: 58px;
    height: 58px;
  }

  .staff-team-card__logo img {
    width: 48px;
    height: 48px;
  }

  .staff-team-card > .secondary-action {
    grid-column: 1 / -1;
  }

  .selected-match {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .selected-match .podcast-order-controls {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .quick-score-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-score-form label:first-child,
  .quick-score-form__detail {
    grid-column: 1 / -1;
  }
}

.article-form {
  display: grid;
  gap: 28px;
}

.form-section {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #dedede;
}

.form-section legend {
  padding: 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.form-section legend span {
  color: #777777;
  font-size: 0.8rem;
  font-weight: 500;
}

.form-grid {
  display: grid;
  gap: 24px;
}

.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  align-content: start;
  gap: 9px;
}

.field--wide {
  grid-column: 1 / -1;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.featured-control {
  display: flex;
  padding: 20px;
  background: #f6f6f6;
  border: 1px solid #dedede;
  cursor: pointer;
  align-items: flex-start;
  gap: 14px;
}

.featured-control input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: #111111;
  flex: 0 0 auto;
}

.featured-control span {
  display: grid;
  gap: 5px;
}

.featured-control strong {
  font-size: 0.92rem;
}

.featured-control small {
  color: #666666;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.45;
}

.field textarea {
  min-height: 280px;
  resize: vertical;
  line-height: 1.65;
}

.markdown-toolbar {
  display: flex;
  width: fit-content;
  padding: 4px;
  border: 1px solid #cccccc;
  background: #f6f6f6;
  gap: 4px;
}

.markdown-toolbar button {
  min-width: 42px;
  min-height: 36px;
  padding: 0 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
}

.markdown-toolbar button:hover,
.markdown-toolbar button:focus-visible {
  background: #111111;
  color: #ffffff;
  outline: none;
}

.field input[type="file"] {
  padding: 10px;
}

.field-hint {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.78rem;
  line-height: 1.45;
}

.article-image-previews {
  display: grid;
  margin-top: 28px;
  grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.55fr);
  align-items: start;
  gap: 22px;
}

.article-image-previews > div {
  display: grid;
  gap: 10px;
}

.main-image-preview {
  overflow: hidden;
  background: #efefef;
}

.main-image-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image-preview--desktop {
  aspect-ratio: 16 / 9;
}

.main-image-preview--mobile {
  aspect-ratio: 9 / 16;
}

.sponsor-creative-preview {
  margin-top: 26px;
}

.sponsor-creative-preview img {
  display: block;
  width: 100%;
  max-height: 220px;
  margin-top: 10px;
  border: 1px solid #dedede;
  background: #f4f4f4;
  object-fit: contain;
}

.sponsor-manager-card {
  align-items: center;
}

.sponsor-manager-card__image {
  display: block;
  width: 180px;
  max-height: 88px;
  border: 1px solid #dedede;
  background: #f4f4f4;
  object-fit: contain;
  flex: 0 0 auto;
}

.gallery-upload-list {
  display: grid;
  margin-top: 24px;
  gap: 18px;
}

.field-label {
  margin: 0;
  color: #242424;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-upload-row {
  display: grid;
  padding: 16px;
  background: #f6f6f6;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
}

.gallery-upload-row > img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.gallery-upload-row__fields {
  display: grid;
  gap: 8px;
}

.gallery-upload-row__name {
  margin: 0 0 4px;
  font-size: 0.85rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.gallery-upload-row__fields input {
  min-height: 42px;
  padding: 9px 12px;
}

.gallery-remove-control {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  color: #8d1717;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

.gallery-remove-control input {
  width: auto;
  min-height: 0;
  padding: 0;
}

.gallery-upload-row--removed {
  opacity: 0.48;
}

.source-editor-list {
  display: grid;
  margin-top: 22px;
  gap: 14px;
}

.source-editor-row {
  display: grid;
  padding: 18px;
  background: #f6f6f6;
  grid-template-columns: 1fr 1.3fr auto;
  align-items: end;
  gap: 14px;
}

.source-editor-row .field:last-of-type {
  grid-column: 1 / 3;
}

.source-editor-row__remove {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #a11a1a;
  background: #ffffff;
  color: #8d1717;
  cursor: pointer;
  grid-column: 3;
  grid-row: 1 / 3;
}

.source-editor-row__remove:hover,
.source-editor-row__remove:focus-visible {
  background: #8d1717;
  color: #ffffff;
}

.add-source-button {
  margin-top: 20px;
}

.publish-bar {
  display: flex;
  padding: 10px 0 0;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.publish-bar .form-status {
  flex: 1;
  margin: 0;
}

.publish-bar .primary-action {
  min-width: 210px;
}

.article-page {
  padding: clamp(70px, 10vw, 150px) 0 0;
}

.article-loading {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  color: #666666;
}

.article-loading--error {
  color: #a11a1a;
}

.article-preview-banner {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto 28px;
  padding: 13px 16px;
  background: #fff4ce;
  border: 1px solid #dfc875;
  color: #5c4700;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.article {
  width: 100%;
  margin: 0 auto;
}

.article__header {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto clamp(34px, 5vw, 58px);
}

.article__category {
  display: inline-block;
  margin-bottom: 34px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.article__category::after {
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 9px;
  background: #111111;
  content: "";
}

.article__date {
  display: block;
  margin-bottom: 18px;
  color: #767676;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.article__title {
  margin: 0;
  font-size: clamp(2.55rem, 7vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.article__byline {
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.article-share-entry {
  margin-top: 24px;
}

.article-share-trigger {
  display: inline-flex;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #111111;
  background: transparent;
  color: #111111;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.article-share-trigger:hover,
.article-share-trigger:focus-visible {
  background: #111111;
  color: #ffffff;
  outline: none;
}

.article-share-trigger:focus-visible {
  outline: 2px solid #ce2029;
  outline-offset: 3px;
}

.article__author-link {
  color: inherit;
  text-decoration-color: #999999;
  text-underline-offset: 4px;
}

.article__main-figure {
  width: 100%;
  margin: 0;
}

.article__main-figure picture {
  display: block;
}

.article__main-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #eeeeee;
  object-fit: cover;
}

.article__main-figure figcaption {
  width: min(calc(100% - 40px), 1440px);
  margin-inline: auto;
}

.article__main-figure figcaption,
.gallery-item figcaption {
  margin-top: 10px;
  color: #777777;
  font-size: 0.78rem;
  line-height: 1.4;
}

.article__body {
  width: min(calc(100% - 40px), 740px);
  margin: clamp(54px, 8vw, 96px) auto;
  color: #2d2d2d;
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.72;
}

.article__body p {
  margin: 0 0 1.5em;
}

.article__body h2,
.article__body h3,
.article__body h4 {
  margin: 2em 0 0.65em;
  color: #111111;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.article__body h2 {
  font-size: clamp(1.7rem, 4vw, 2.65rem);
}

.article__body h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.article__body ul,
.article__body ol {
  margin: 0 0 1.5em;
  padding-left: 1.45em;
}

.article__body li + li {
  margin-top: 0.55em;
}

.article__body blockquote {
  margin: 2em 0;
  padding: 0.2em 0 0.2em 1.4em;
  border-left: 4px solid #111111;
  color: #4d4d4d;
  font-size: 1.12em;
}

.article__body a {
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article__body code {
  padding: 0.12em 0.3em;
  background: #f1f1f1;
  font-size: 0.92em;
}

.article-gallery,
.article-sources,
.article-related {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
  margin-top: clamp(72px, 10vw, 120px);
  padding-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid #d9d9d9;
}

.article-gallery__heading,
.article-sources__heading,
.article-related__heading {
  margin-bottom: 34px;
}

.article-gallery__heading h2,
.article-sources__heading h2,
.article-related__heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.article-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 50px) clamp(18px, 3vw, 34px);
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #eeeeee;
  object-fit: cover;
}

.article-sources__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.source-card {
  display: grid;
  min-height: 150px;
  padding: 24px;
  border: 1px solid #d7d7d7;
  color: #111111;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.source-card:hover,
.source-card:focus-visible {
  background: #111111;
  color: #ffffff;
  outline: none;
}

.source-card__site {
  margin: 0 0 12px;
  color: #777777;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-card:hover .source-card__site,
.source-card:focus-visible .source-card__site {
  color: #bcbcbc;
}

.source-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.source-card__note {
  margin: 18px 0 0;
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.45;
}

.source-card:hover .source-card__note,
.source-card:focus-visible .source-card__note {
  color: #d0d0d0;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.sponsor-placement {
  width: min(calc(100% - 40px), 1180px);
  margin: clamp(72px, 9vw, 110px) auto 0;
}

.sponsor-placement--feed {
  margin-block: clamp(58px, 8vw, 96px);
}

.sponsor-placement__label {
  margin: 0 0 10px;
  color: #6b6b6b;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsor-placement__link {
  display: block;
  overflow: hidden;
  border: 1px solid #dddddd;
  background: #f5f5f5;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    opacity 160ms ease;
}

.sponsor-placement__link:hover,
.sponsor-placement__link:focus-visible {
  border-color: #777777;
  outline: 2px solid #111111;
  outline-offset: 4px;
  opacity: 0.92;
}

.sponsor-placement__image {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.article-share-entry--footer {
  width: min(calc(100% - 40px), 1180px);
  margin: clamp(72px, 10vw, 120px) auto clamp(80px, 11vw, 150px);
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid #d9d9d9;
}

.article-share-dialog {
  width: min(calc(100% - 32px), 560px);
  max-height: min(720px, calc(100svh - 32px));
  padding: 0;
  overflow: auto;
  border: 0;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
}

.article-share-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
}

.article-share-dialog__inner {
  position: relative;
  padding: clamp(30px, 6vw, 52px);
}

.article-share-dialog__inner > .section-kicker {
  margin: 0 0 12px;
  color: #ce2029;
}

.article-share-dialog h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4.25rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.article-share-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  place-items: center;
}

.article-share-dialog__close:hover,
.article-share-dialog__close:focus-visible {
  border-color: #111111;
  outline: none;
}

.article-share-dialog__close:focus-visible {
  outline: 2px solid #ce2029;
  outline-offset: 3px;
}

.article-share-dialog__note {
  margin: 24px 0 0;
  color: #555555;
  font-size: 0.94rem;
  line-height: 1.55;
}

.article-share-dialog__actions {
  display: grid;
  margin-top: 30px;
  gap: 10px;
}

.article-share-action {
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.article-share-action--primary,
.article-share-action:hover:not(:disabled),
.article-share-action:focus-visible:not(:disabled) {
  background: #111111;
  color: #ffffff;
}

.article-share-action--primary:hover:not(:disabled),
.article-share-action--primary:focus-visible:not(:disabled) {
  background: #ce2029;
  border-color: #ce2029;
}

.article-share-action:focus-visible {
  outline: 2px solid #ce2029;
  outline-offset: 3px;
}

.article-share-action:disabled {
  border-color: #cfcfcf;
  background: #eeeeee;
  color: #888888;
  cursor: wait;
}

.article-share-dialog__status {
  min-height: 1.5em;
  margin: 18px 0 0;
  color: #5f5f5f;
  font-size: 0.82rem;
  line-height: 1.5;
}

.article-share-dialog__status[data-type="error"] {
  color: #a11a1a;
}

@media (max-width: 1020px) {
  .editor-panel {
    display: block;
    width: min(100%, 1120px);
  }

  .desk-tabs {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    margin-bottom: clamp(36px, 6vw, 64px);
    border-right: 0;
    border-bottom: 1px solid #cccccc;
    gap: 4px;
    scrollbar-width: thin;
  }

  .desk-tab {
    width: auto;
    min-width: 150px;
    padding: 14px 18px;
    border-left: 0;
    border-bottom: 4px solid transparent;
    text-align: center;
    flex: 1 0 auto;
  }

  .desk-tab[aria-selected="true"] {
    border-left-color: transparent;
    border-bottom-color: #ce2029;
  }

  .desk-tab small {
    display: none;
  }
}

@media (max-width: 900px) {
  .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-leadership {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .article-list {
    grid-template-columns: 1fr;
  }

  .listing-page,
  .team-page {
    padding: 54px 20px 88px;
  }

  .listing-page__header h1 {
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  .listing-page__line {
    margin-top: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-leadership {
    grid-template-columns: 1fr;
  }

  .team-profile__content {
    min-height: 190px;
  }

  .team-card {
    min-height: 210px;
  }

  .writer-page {
    padding: 38px 16px 70px;
  }

  .auth-panel {
    min-height: calc(100vh - 150px);
  }

  .auth-card {
    padding: 30px 22px;
  }

  .editor-heading {
    align-items: flex-end;
  }

  .desk-tabs {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .desk-tab {
    min-width: 118px;
    flex: 1 0 auto;
  }

  .article-manager {
    margin-inline: -16px;
    padding: 28px 16px;
  }

  .article-manager__heading,
  .media-maintenance__heading,
  .article-editor-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-manager__heading .secondary-action,
  .media-maintenance__heading .secondary-action {
    width: 100%;
  }

  .staff-article-card {
    align-items: stretch;
    flex-direction: column;
  }

  .wire-organization-form,
  .writer-form,
  .writer-card,
  .wire-organization-card,
  .hosted-document-card {
    align-items: stretch;
    flex-direction: column;
  }

  .writer-form .primary-action,
  .writer-card .secondary-action {
    width: 100%;
  }

  .document-upload-form {
    grid-template-columns: 1fr;
  }

  .document-upload-form .field--wide,
  .document-upload-form .primary-action {
    grid-column: auto;
  }

  .document-upload-form .primary-action,
  .hosted-document-card__actions,
  .hosted-document-card__actions .secondary-action,
  .hosted-document-card__actions .danger-action {
    width: 100%;
  }

  .wire-organization-form .primary-action,
  .wire-organization-card__actions,
  .wire-organization-card__actions .secondary-action,
  .wire-organization-card__actions .danger-action {
    width: 100%;
  }

  .wire-organization-card__actions .secondary-action,
  .wire-organization-card__actions .danger-action {
    flex: 1 1 100%;
  }

  .wire-credential-dialog__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sponsor-manager-card__image {
    width: 100%;
    max-height: 140px;
  }

  .staff-podcast-card {
    display: flex;
  }

  .staff-podcast-card__cover {
    width: 112px;
  }

  .staff-article-card__actions {
    width: 100%;
  }

  .staff-article-card__actions .primary-action,
  .staff-article-card__actions .secondary-action,
  .staff-article-card__actions .danger-action {
    flex: 1 1 calc(50% - 5px);
  }

  .form-section {
    padding: 22px 16px 26px;
  }

  .form-grid--two {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .article-image-previews {
    grid-template-columns: 1fr;
  }

  .main-image-preview--mobile {
    width: min(100%, 280px);
  }

  .gallery-upload-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .gallery-upload-row > img {
    width: 92px;
    height: 110px;
  }

  .publish-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .publish-bar .primary-action {
    width: 100%;
  }

  .source-editor-row {
    grid-template-columns: 1fr;
  }

  .source-editor-row .field:last-of-type,
  .source-editor-row__remove {
    grid-column: auto;
    grid-row: auto;
  }

  .podcast-guest-editor__row,
  .podcast-guest-editor__fields {
    grid-template-columns: 1fr;
  }

  .podcast-guest-editor__fields .field:last-child {
    grid-column: auto;
  }

  .podcast-selected-article {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .podcast-selected-article .podcast-order-controls {
    grid-column: 1 / -1;
  }

  .article-page {
    padding: 62px 0 0;
  }

  .article__category {
    margin-bottom: 54px;
  }

  .article__title {
    font-size: clamp(2.55rem, 11vw, 4.4rem);
  }

  .article__main-image {
    aspect-ratio: 9 / 16;
  }

  .article-gallery__grid,
  .article-sources__grid,
  .article-related__grid {
    grid-template-columns: 1fr;
  }

  .article-share-dialog {
    width: 100%;
    max-width: none;
    max-height: min(82svh, 720px);
    margin: auto 0 0;
  }
}
