/*
  Page-specific styles for /news/. Shared chrome lives in main.css.
  The ".ft-logo-txt" rule (permanently display:none, unreferenced by
  any element on this page) is the same dead style already found and
  dropped on about.html — not migrated here either. Likewise
  ".ft-copy a" has no matching <a> inside .ft-copy on this page.

  A "SUBMIT CTA" block (.submit-cta/.submit-inner/.submit-label/
  .submit-title/.submit-body/.submit-bullets/.submit-btn/.submit-stats
  and their responsive overrides — a "Submit Your Story" callout with
  a headline, bullet list, button, and stat sidebar) existed in the
  original inline stylesheet with no matching markup anywhere on this
  page. Found during a later audit and dropped per the same
  no-dead-code rule that already applied to the items above.
*/

/* SIDEBAR SOCIAL ROW (unique to this page's offcanvas) */

.sb-soc {

  padding: 18px 22px;

  border-top: 1px solid #ffffff0f;

  display: flex;

  gap: 7px;
}

.sb-soc a {

  width: 32px;

  height: 32px;

  border: 1px solid #ffffff14;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.25s;
}

.sb-soc a:hover {

  border-color: var(--orange);

  background: #ff7a001a;

  transform: translateY(-2px);
}

.sb-soc svg {

  width: 13px;

  height: 13px;

  fill: #ffffff59;

  transition: fill 0.25s;
}

.sb-soc a:hover svg {

  fill: var(--orange);
}

/* HERO */

.hero {

  position: relative;

  min-height: 32vh;

  display: flex;

  align-items: flex-end;

  background: var(--black);

  overflow: hidden;

  padding-top: 76px;
}

.hero-bg {

  position: absolute;

  inset: 0;
}

.hero-bg img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 35%;

  opacity: 0.65;
}

.hero-grad {

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, #0a0a0a4d 0%, #0a0a0a40 50%, #0a0a0ab8 100%);
}

.hero-content {

  position: relative;

  z-index: 2;

  padding: 28px 56px 36px;

  max-width: var(--max);

  margin: 0 auto;

  width: 100%;
}

.hero-kicker {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

  opacity: 0;

  animation: hf 0.7s var(--ease) 0.5s forwards;
}

.hk-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--orange);

  animation: news-pulse 2s infinite;
}

@keyframes news-pulse {

  0%,
  100% {

    opacity: 1;

    transform: scale(1);
  }

  50% {

    opacity: 0.3;

    transform: scale(0.5);
  }
}

.hk-txt {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  color: #ffffff80;

  letter-spacing: 4px;

  text-transform: uppercase;
}

.hero-h1 {

  font-family: var(--fh);

  font-size: clamp(36px, 5vw, 68px);

  font-weight: 900;

  color: var(--white);

  line-height: 1;

  letter-spacing: -1px;

  margin-bottom: 24px;

  opacity: 0;

  animation: hf 0.9s var(--ease) 0.7s forwards;
}

.hero-h1 .ac {

  color: var(--orange);
}

.hero-meta {

  display: flex;

  align-items: center;

  gap: 28px;

  padding-top: 28px;

  border-top: 1px solid #ffffff1a;

  flex-wrap: wrap;

  opacity: 0;

  animation: hf 0.8s var(--ease) 0.95s forwards;
}

.hero-meta-stat {

  display: flex;

  align-items: baseline;

  gap: 6px;
}

.hero-meta-num {

  font-family: var(--fh);

  font-size: 22px;

  font-weight: 900;

  color: var(--white);

  line-height: 1;
}

.hero-meta-num span {

  color: var(--orange);
}

.hero-meta-label {

  font-size: 10px;

  color: #ffffff52;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.hero-meta-divider {

  width: 1px;

  height: 28px;

  background: #ffffff1f;
}

@keyframes hf {

  from {

    opacity: 0;

    transform: translateY(24px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}

/* TICKER */

.strip {

  background: var(--orange);

  overflow: hidden;
}

.strip-track {

  display: flex;

  animation: news-ticker 30s linear infinite;

  width: max-content;

  white-space: nowrap;
}

.strip-track:hover {

  animation-play-state: paused;
}

.strip-item {

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  color: var(--white);

  padding: 16px 32px;

  display: flex;

  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}

.strip-dot {

  width: 4px;

  height: 4px;

  background: #ffffff80;

  border-radius: 50%;
}

@keyframes news-ticker {

  from {

    transform: translateX(0);
  }

  to {

    transform: translateX(-50%);
  }
}

/* FILTER BAR */

.filters-bar {

  background: var(--white);

  border-bottom: 1px solid var(--border);

  position: sticky;

  top: 76px;

  z-index: 100;

  transition: top 0.4s var(--ease);

  box-shadow: 0 2px 12px #0000000d;
}

.navbar.scrolled ~ .filters-bar {

  top: 64px;
}

.filters-inner {

  display: flex;

  align-items: center;

  padding: 0 56px;

  gap: 0;

  min-height: 58px;
}

.filters-tabs {

  display: flex;

  flex-wrap: nowrap;

  overflow-x: auto;

  scrollbar-width: none;

  flex: 1;
}

.filters-tabs::-webkit-scrollbar {

  display: none;
}

.filter-tab,
.filter-tab-sub {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--mid);

  background: none;

  border: none;

  border-bottom: 2px solid transparent;

  padding: 20px 14px 18px;

  cursor: pointer;

  white-space: nowrap;

  flex-shrink: 0;

  transition: color 0.25s, border-color 0.25s;

  position: relative;

  top: 1px;
}

.filter-tab:hover,
.filter-tab-sub:hover {

  color: var(--black);
}

.filter-tab.active,
.filter-tab-sub.active {

  color: var(--orange);

  border-bottom-color: var(--orange);
}

.filter-back-btn {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  color: var(--orange);

  background: none;

  border: none;

  border-right: 1px solid var(--border);

  cursor: pointer;

  padding: 0 16px 0 0;

  margin-right: 8px;

  white-space: nowrap;

  flex-shrink: 0;

  transition: opacity 0.2s;

  letter-spacing: 0.5px;
}

.filter-back-btn:hover {

  opacity: 0.65;
}

.filters-right {

  display: flex;

  align-items: center;

  gap: 10px;

  flex-shrink: 0;

  padding-left: 16px;

  border-left: 1px solid var(--border);
}

.sort-select {

  background: var(--surface);

  border: 1px solid var(--border);

  color: var(--mid);

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 600;

  padding: 8px 12px;

  cursor: pointer;

  outline: none;

  letter-spacing: 0.5px;

  transition: border-color 0.25s, color 0.25s;
}

.sort-select:hover {

  border-color: #0003;

  color: var(--black);
}

.sort-select:focus-visible {

  border-color: var(--orange);

  color: var(--black);
}

.sort-select option {

  background: var(--white);
}

.view-toggles {

  display: flex;

  gap: 2px;
}

.view-btn {

  width: 34px;

  height: 34px;

  background: var(--surface);

  border: 1px solid var(--border);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: all 0.25s;
}

.view-btn:hover {

  background: var(--page);
}

.view-btn svg {

  width: 13px;

  height: 13px;

  stroke: var(--mid);

  fill: none;

  stroke-width: 2;

  transition: stroke 0.25s;
}

.view-btn.active {

  background: var(--orange);

  border-color: var(--orange);
}

.view-btn.active svg {

  stroke: var(--white);
}

.filters-fmt-row {

  display: flex;

  align-items: center;

  padding: 0 56px;

  background: var(--orange-pale);

  border-top: 1px solid #ff7a0026;

  overflow-x: auto;

  scrollbar-width: none;
}

.filters-fmt-row::-webkit-scrollbar {

  display: none;
}

.filter-fmt-label {

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #ff7a008c;

  padding: 10px 14px 8px 0;

  white-space: nowrap;

  flex-shrink: 0;

  border-right: 1px solid #ff7a0033;

  margin-right: 4px;
}

.filter-tab-fmt {

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: #00000061;

  background: none;

  border: none;

  border-bottom: 2px solid transparent;

  padding: 10px 12px 8px;

  cursor: pointer;

  white-space: nowrap;

  flex-shrink: 0;

  transition: color 0.25s, border-color 0.25s;

  position: relative;

  top: 1px;
}

.filter-tab-fmt:hover {

  color: var(--orange-dk);
}

.filter-tab-fmt.active {

  color: var(--orange);

  border-bottom-color: var(--orange);
}

.filter-select-mobile,
.filter-select-sub,
.filter-select-fmt {

  display: none;

  width: 100%;

  border: none;

  border-bottom: 1px solid var(--border);

  font-family: var(--fh);

  font-weight: 700;

  cursor: pointer;

  appearance: none;

  background-repeat: no-repeat;

  background-position: right 16px center;

  background-size: 16px;

  outline: none;
}

.filter-select-mobile:focus-visible,
.filter-select-sub:focus-visible,
.filter-select-fmt:focus-visible {

  border-bottom-color: var(--orange);
}

.filter-select-mobile {

  background-color: var(--white);

  color: var(--black);

  font-size: 13px;

  padding: 14px 16px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF7A00' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.filter-select-sub {

  background-color: var(--orange-pale);

  border-bottom-color: #ff7a0026;

  color: var(--black);

  font-size: 12px;

  font-weight: 600;

  padding: 12px 16px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF7A00' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.filter-select-fmt {

  background-color: var(--surface);

  color: var(--mid);

  font-size: 12px;

  font-weight: 600;

  padding: 12px 16px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF7A00' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.filter-select-mobile option,
.filter-select-sub option,
.filter-select-fmt option {

  background: var(--white);
}

/*
  Progressive-disclosure state (category → subcategory → format) is
  driven by a single data-level attribute on #filters_bar instead of
  JS setting element.style.display directly. That's what lets the
  <900px breakpoint below override the "shown" state with a plain
  (non-!important) rule: a stylesheet rule can never beat an inline
  style without !important, but with no inline styles left to beat,
  normal specificity/source-order is enough.
*/

#sub_cat_tabs,
#sub_cat_back,
.filters-fmt-row {

  display: none;
}

#filters_bar[data-level="subcategory"] #filter_tabs,
#filters_bar[data-level="format"] #filter_tabs {

  display: none;
}

#filters_bar[data-level="subcategory"] #sub_cat_tabs,
#filters_bar[data-level="format"] #sub_cat_tabs {

  display: flex;
}

#filters_bar[data-level="subcategory"] #sub_cat_back,
#filters_bar[data-level="format"] #sub_cat_back {

  display: block;
}

#filters_bar[data-level="format"] .filters-fmt-row {

  display: flex;
}

/* STORY COUNT */

.story-count-bar {

  background: var(--surface);

  padding: 13px 56px;

  border-bottom: 1px solid var(--border);
}

.story-count-txt {

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 600;

  color: var(--mid);

  letter-spacing: 1px;
}

.story-count-txt span {

  color: var(--orange);
}

/* PORTAL MAIN */

.portal-main {

  background: var(--page);

  min-height: 60vh;
}

.portal-inner {

  padding: 48px 56px 88px;

  max-width: var(--max);

  margin: 0 auto;
}

/* HERO FEATURE CARD */

.hero-feature {

  position: relative;

  height: 560px;

  display: block;

  overflow: hidden;

  margin-bottom: 2px;
}

.hero-feature img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.7s var(--ease);

  display: block;
}

.hero-feature:hover img {

  transform: scale(1.03);
}

.hero-feature-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, #000000e6 0%, #0006 50%, #00000014 100%);
}

.hero-feature-accent {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: var(--orange);
}

.hero-feature-body {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  padding: 44px 52px;

  z-index: 2;
}

.hero-feature-cat {

  display: inline-block;

  background: var(--orange);

  color: var(--white);

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  padding: 5px 12px;

  letter-spacing: 2.5px;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.hero-feature-title {

  font-family: var(--fh);

  font-size: clamp(24px, 3.2vw, 44px);

  font-weight: 900;

  color: var(--white);

  line-height: 1.1;

  margin-bottom: 12px;

  max-width: 740px;
}

.hero-feature-exc {

  font-size: 14px;

  color: #ffffffa6;

  max-width: 580px;

  line-height: 1.7;

  margin-bottom: 22px;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.hero-feature-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 14px;
}

.hero-feature-meta {

  display: flex;

  align-items: center;

  gap: 14px;
}

.hero-feature-author {

  font-family: var(--fh);

  font-size: 12px;

  font-weight: 600;

  color: #ffffff7a;
}

.hero-feature-date {

  font-size: 12px;

  color: #ffffff52;
}

.hero-feature-sep {

  width: 1px;

  height: 13px;

  background: #fff3;
}

.hero-feature-btn {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 12px 26px;

  background: var(--white);

  color: var(--black);

  font-family: var(--fh);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.5px;

  transition: all 0.3s var(--ease);
}

.hero-feature-btn:hover {

  background: var(--orange);

  color: var(--white);

  transform: translateY(-2px);
}

.hero-feature-btn svg {

  width: 13px;

  height: 13px;

  stroke: currentColor;

  fill: none;

  stroke-width: 2.5;

  transition: transform 0.3s;
}

.hero-feature-btn:hover svg {

  transform: translateX(4px);
}

/* SECONDARY ROW */

.secondary-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 2px;

  margin-bottom: 2px;
}

.sec-card {

  position: relative;

  height: 300px;

  display: block;

  overflow: hidden;
}

.sec-card img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.6s var(--ease);

  display: block;
}

.sec-card:hover img {

  transform: scale(1.06);
}

.sec-card-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, #000000db 0%, #0000002e 60%, transparent 100%);
}

.sec-card::after {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: var(--orange);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s var(--ease);
}

.sec-card:hover::after {

  transform: scaleX(1);
}

.sec-card-body {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  padding: 24px 28px;
}

.sec-card-cat {

  display: inline-block;

  background: var(--orange);

  color: var(--white);

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  padding: 4px 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 8px;
}

.sec-card-title {

  font-family: var(--fh);

  font-size: clamp(14px, 1.7vw, 19px);

  font-weight: 800;

  color: var(--white);

  line-height: 1.25;

  margin-bottom: 7px;
}

.sec-card-exc {

  font-size: 12px;

  color: #ffffff85;

  line-height: 1.6;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.sec-card-arrow {

  position: absolute;

  top: 18px;

  right: 18px;

  width: 34px;

  height: 34px;

  background: #ffffff1f;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s;
}

.sec-card-arrow svg {

  width: 13px;

  height: 13px;

  stroke: var(--white);

  fill: none;

  stroke-width: 2;
}

.sec-card:hover .sec-card-arrow {

  background: var(--orange);
}

/* GRID LABEL */

.portal-grid-label {

  padding: 36px 0 22px;

  display: flex;

  align-items: center;

  gap: 14px;
}

.portal-grid-label-line {

  flex: 1;

  height: 1px;

  background: var(--border);
}

.portal-grid-label-text {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  color: var(--mid);

  letter-spacing: 3px;

  text-transform: uppercase;

  white-space: nowrap;
}

/* STORY CARDS */

.stories-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.stories-grid.view-list {

  grid-template-columns: 1fr;

  gap: 2px;
}

.story-card {

  background: var(--white);

  display: flex;

  flex-direction: column;

  overflow: hidden;

  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.35s;

  position: relative;

  border: 1px solid var(--border);
}

.story-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 20px 56px #0000001a;

  z-index: 2;

  border-color: transparent;
}

.story-card::after {

  content: '';

  position: absolute;

  inset: 0;

  border: 1.5px solid transparent;

  pointer-events: none;

  transition: border-color 0.35s;
}

.story-card:hover::after {

  border-color: var(--orange);
}

.sc-img {

  position: relative;

  aspect-ratio: 16 / 10;

  overflow: hidden;
}

.sc-img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.6s var(--ease);

  display: block;
}

.story-card:hover .sc-img img {

  transform: scale(1.05);
}

.sc-cat {

  position: absolute;

  top: 14px;

  left: 14px;

  background: var(--orange);

  color: var(--white);

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  padding: 4px 10px;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.sc-fmt {

  display: inline-block;

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--mid);

  background: var(--surface);

  border: 1px solid var(--border);

  padding: 3px 8px;

  margin-bottom: 7px;
}

.sc-body {

  padding: 22px 22px 18px;

  display: flex;

  flex-direction: column;

  flex: 1;
}

.sc-title {

  font-family: var(--fh);

  font-size: 15px;

  font-weight: 800;

  color: var(--black);

  line-height: 1.35;

  margin-bottom: 8px;
}

.sc-exc {

  font-size: 13px;

  color: var(--mid);

  line-height: 1.65;

  margin-bottom: 16px;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.sc-meta {

  display: flex;

  align-items: center;

  justify-content: space-between;

  font-size: 11px;

  padding-top: 12px;

  border-top: 1px solid var(--border);

  margin-top: auto;
}

.sc-author {

  font-weight: 600;

  color: #0006;
}

.sc-arrow {

  width: 28px;

  height: 28px;

  background: var(--orange-pale);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s;

  flex-shrink: 0;
}

.sc-arrow svg {

  width: 12px;

  height: 12px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 2.5;

  transition: stroke 0.25s;
}

.story-card:hover .sc-arrow {

  background: var(--orange);
}

.story-card:hover .sc-arrow svg {

  stroke: var(--white);
}

.view-list .story-card {

  display: grid;

  grid-template-columns: 220px 1fr;

  border: none;

  border-bottom: 1px solid var(--border);
}

.view-list .sc-img {

  aspect-ratio: unset;

  height: 100%;

  min-height: 150px;
}

.view-list .sc-body {

  padding: 22px 26px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

/* LOAD MORE */

.load-more-wrap {

  display: none;

  text-align: center;

  margin-top: 48px;
}

.load-more-btn {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 15px 36px;

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  background: #2a2a27;

  color: var(--white);

  border: none;

  cursor: pointer;

  transition: all 0.3s var(--ease);

  letter-spacing: 0.3px;
}

.load-more-btn:hover {

  background: var(--orange);

  transform: translateY(-2px);

  box-shadow: 0 14px 36px #ff7a0047;
}

.load-more-btn svg {

  width: 14px;

  height: 14px;

  stroke: currentColor;

  fill: none;

  stroke-width: 2.5;

  transition: transform 0.3s;
}

.load-more-btn:hover svg {

  transform: translateY(3px);
}

.load-more-btn:disabled {

  opacity: 0.5;

  pointer-events: none;
}

/* SKELETON */

.skeleton {

  background: var(--surface);

  animation: shimmer 1.5s ease-in-out infinite;

  position: relative;

  overflow: hidden;
}

.skeleton::after {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, transparent 0%, #ffffffb3 50%, transparent 100%);

  animation: sweep 1.5s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {

    opacity: 1;
  }

  50% {

    opacity: 0.7;
  }
}

@keyframes sweep {

  from {

    transform: translateX(-100%);
  }

  to {

    transform: translateX(100%);
  }
}

.skel-card {

  background: var(--white);

  overflow: hidden;

  border: 1px solid var(--border);
}

.skel-img {

  aspect-ratio: 16 / 10;
}

.skel-body {

  padding: 24px 22px;
}

.skel-line {

  height: 11px;

  border-radius: 3px;

  margin-bottom: 9px;
}

.skel-line.w80 {

  width: 80%;
}

.skel-line.w60 {

  width: 60%;
}

.skel-line.w40 {

  width: 40%;
}

/* EMPTY / ERROR */

.empty-state {

  grid-column: 1 / -1;

  text-align: center;

  padding: 80px 0;
}

.empty-icon {

  width: 60px;

  height: 60px;

  background: var(--orange-pale);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 20px;
}

.empty-icon svg {

  width: 26px;

  height: 26px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 1.5;
}

.empty-title {

  font-family: var(--fh);

  font-size: 18px;

  font-weight: 700;

  color: var(--black);

  margin-bottom: 8px;
}

.empty-body {

  font-size: 14px;

  color: var(--mid);
}

.error-banner {

  display: none;

  background: #e5393512;

  border: 1px solid #e539352e;

  padding: 14px 20px;

  margin-bottom: 28px;

  align-items: center;

  gap: 10px;
}

.error-banner.show {

  display: flex;
}

.error-banner svg {

  width: 15px;

  height: 15px;

  stroke: #e53935;

  fill: none;

  stroke-width: 2;

  flex-shrink: 0;
}

.error-banner p {

  font-size: 13px;

  color: #c62828;
}

.error-banner a {

  color: #e53935;

  text-decoration: underline;
}

/* RESPONSIVE */

@media (width < 1100px) {

  .secondary-row {

    grid-template-columns: 1fr 1fr;
  }

  .stories-grid {

    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width < 900px) {

  .hero-content,
  .portal-inner,
  .story-count-bar {

    padding-left: 24px;

    padding-right: 24px;
  }

  .filters-inner {

    padding: 0;

    min-height: 0;
  }

  #filters_bar[data-level] #filter_tabs,
  #filters_bar[data-level] #sub_cat_tabs,
  #filters_bar[data-level] #sub_cat_back,
  #filters_bar[data-level] .filters-right,
  #filters_bar[data-level] .filters-fmt-row {

    display: none;
  }

  #filters_bar[data-level="category"] .filter-select-mobile {

    display: block;
  }

  #filters_bar[data-level="subcategory"] .filter-select-sub,
  #filters_bar[data-level="format"] .filter-select-sub {

    display: block;
  }

  #filters_bar[data-level="format"] .filter-select-fmt {

    display: block;
  }

  .hero-feature {

    height: auto;
  }

  .hero-feature img {

    height: 200px;
  }

  .hero-feature-overlay,
  .hero-feature-accent {

    display: none;
  }

  .hero-feature-body {

    position: relative;

    background: var(--black);

    padding: 18px 20px 22px;
  }

  .hero-feature-exc {

    display: none;
  }

  .hero-feature-bottom {

    flex-direction: column;

    align-items: flex-start;
  }

  .hero-feature-btn {

    width: 100%;

    justify-content: center;
  }

  .secondary-row {

    grid-template-columns: 1fr;
  }

  .sec-card {

    height: 240px;
  }

  .stories-grid {

    grid-template-columns: 1fr;

    gap: 14px;
  }
}

@media (width < 640px) {

  .view-list .story-card {

    grid-template-columns: 1fr;
  }

  .view-list .sc-img {

    height: 170px;
  }
}
