/* FeedBuzz public design system */

:root {
  --fb-container: 1480px;
  --fb-font-size: 16px;
  --fb-heading-weight: 800;
  --fb-accent: #d81b60;
  --fb-secondary: #6c5ce7;
  --fb-tertiary: #00c2a8;
  --fb-warning: #ffb703;
  --fb-ink: #172033;
  --fb-muted: #657089;
  --fb-surface: #fff;
  --fb-page: #f4f6fb;
  --fb-dark: #111827;
  --fb-border: rgba(23,32,51,.1);
  --fb-shadow: 0 24px 70px rgba(39,48,76,.12);
  --fb-soft-shadow: 0 12px 35px rgba(39,48,76,.08);
  --fb-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fb-page);
  color: var(--fb-ink);
  font-family: var(--fb-font);
  font-size: var(--fb-font-size);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.fb-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--fb-heading-weight);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-top: 0;
}

p {
  margin-top: 0;
}

.fb-container {
  margin-inline: auto;
}

.fb-main {
  min-height: 60vh;
}

.fb-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus,
.fb-skip-link:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  width: auto;
  background: #fff;
  color: #111;
  padding: 14px 18px;
  z-index: 100000;
  top: 8px;
  left: 8px;
}

.fb-card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.fb-icon-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fb-border);
  border-radius: 15px;
  background: var(--fb-surface);
  color: var(--fb-ink);
  transition: .25s ease;
}

.fb-icon-button:hover,
.fb-icon-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--fb-secondary);
  color: var(--fb-secondary);
}

.fb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 800;
  transition: .25s ease;
  position: relative;
  z-index: 4;
}

.fb-button:hover {
  transform: translateY(-2px);
}

.fb-button-dark {
  background: var(--fb-dark);
  color: #fff;
}

.fb-brandbar {
  background: var(--fb-surface);
  border-bottom: 1px solid var(--fb-border);
}

.fb-brandbar-inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.fb-brand {
  text-align: left;
}

.fb-brand-kicker {
  margin: 5px 0 0;
  color: var(--fb-muted);
  font-size: 13px;
  font-weight: 600;
}

.custom-logo {
  max-height: 65px;
  width: auto;
}

.fb-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.feedbuzz-default-logo {
  display: block;
}

.fb-menu-toggle {
  display: none;
}

.fb-navbar {
  background: var(--fb-surface);
  border-bottom: 1px solid var(--fb-border);
  position: relative;
  z-index: 50;
}

.fb-navbar-inner {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fb-nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fb-nav-list a {
  display: flex;
  align-items: center;
  padding: 18px 14px;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.fb-nav-list>li>a:hover,
.fb-nav-list>.current-menu-item>a {
  background: rgba(108,92,231,.09);
  color: var(--fb-secondary);
}

.fb-nav-list .menu-item-has-children {
  position: relative;
}

.fb-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  list-style: none;
  background: var(--fb-surface);
  border: 1px solid var(--fb-border);
  box-shadow: var(--fb-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
}

.fb-nav-list li:hover>.sub-menu,
.fb-nav-list li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.fb-nav-list .sub-menu a {
  padding: 11px 12px;
}

.fb-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 18px;
  background: var(--fb-page);
  border: 1px solid var(--fb-border);
  border-radius: 18px;
  width: 100%;
}

.fb-search-form input {
  border: 0;
  background: transparent;
  min-width: 0;
  width: 100%;
  color: var(--fb-ink);
}

.fb-search-form button {
  border: 0;
  background: var(--fb-dark);
  color: #fff;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 800;
}

.fb-ticker-inner {
  min-height: 50px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.fb-ticker strong {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.fb-ticker strong span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fb-accent);
  animation: fbPulse 1.8s infinite;
}

.fb-ticker-track {
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
}

.fb-ticker-track a {
  position: relative;
}

@keyframes fbPulse {
  50% {
    box-shadow: 0 0 0 7px rgba(255,61,129,.12);
  }
}

.fb-eyebrow {
  display: inline-flex;
  color: var(--fb-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.fb-post-media {
  height: 100%;
  overflow: hidden;
  /* Keep the image loading surface neutral. The old purple/blue gradient was
     visible for a frame while real images decoded on refresh. */
  background: #f5f5f4;
}

.fb-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.fb-card-link:hover~.fb-post-media img,
.fb-story-card:hover .fb-post-media img,
.fb-editor-card:hover .fb-post-media img {
  transform: scale(1.045);
}

.fb-image-fallback {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,var(--fb-secondary),var(--fb-accent) 50%,var(--fb-warning));
}

.fb-image-fallback span {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  background: rgba(255,255,255,.18);
}

.fb-image-fallback span:nth-child(1) {
  width: 55%;
  aspect-ratio: 1;
  right: -10%;
  top: -20%;
}

.fb-image-fallback span:nth-child(2) {
  width: 35%;
  aspect-ratio: 1;
  left: 10%;
  bottom: -15%;
}

.fb-image-fallback span:nth-child(3) {
  width: 18%;
  aspect-ratio: 1;
  left: 45%;
  top: 25%;
  background: rgba(255,255,255,.28);
}

.fb-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--fb-accent);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  z-index: 4;
}

.fb-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--fb-muted);
  font-size: 12px;
  font-weight: 700;
}

.fb-post-meta .fb-icon {
  width: 15px;
  height: 15px;
}

.fb-post-meta a:hover {
  color: var(--fb-accent);
}

.fb-content-section {
  padding: 70px 0;
}

.fb-content-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 370px;
  align-items: start;
}

.fb-section-heading {
  display: flex;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.fb-section-heading h2 {
  margin: 0;
}

.fb-section-line {
  height: 1px;
  background: linear-gradient(90deg,var(--fb-border),transparent);
  flex: 1;
  margin-bottom: 9px;
}

.fb-latest-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.fb-story-card {
  position: relative;
  background: var(--fb-surface);
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius);
  overflow: hidden;
  box-shadow: var(--fb-soft-shadow);
  transition: .3s ease;
}

.fb-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fb-shadow);
}

.fb-story-card>.fb-post-media {
  height: 220px;
}

.fb-story-featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
}

.fb-story-body {
  padding: 24px;
}

.fb-story-featured .fb-story-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fb-story-body h3 {
  margin: 14px 0 12px;
}

.fb-story-body p {
  color: var(--fb-muted);
}

.fb-sidebar-column {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fb-trending-card,
.fb-widget {
  background: var(--fb-surface);
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius);
  box-shadow: var(--fb-soft-shadow);
  overflow: hidden;
}

.fb-side-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 25px 25px 17px;
}

.fb-side-title>span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg,var(--fb-warning),#ff7f50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b2d00;
}

.fb-side-title small {
  color: var(--fb-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.fb-side-title h2 {
  margin: 2px 0 0;
  font-size: 24px;
}

.fb-trending-list {
  counter-reset: trending;
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.fb-trending-list li {
  counter-increment: trending;
  border-top: 1px solid var(--fb-border);
}

.fb-trending-list li>a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  align-items: center;
  padding: 16px 0;
  position: relative;
}

.fb-trending-list li>a:before {
  content: counter(trending,decimal-leading-zero);
  position: absolute;
  right: 0;
  bottom: 5px;
  color: rgba(108,92,231,.12);
  font-size: 34px;
  font-weight: 900;
}

.fb-trending-thumb {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  overflow: hidden;
  background: linear-gradient(135deg,var(--fb-secondary),var(--fb-accent));
}

.fb-trending-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fb-trending-list strong {
  font-size: 14px;
  line-height: 1.35;
  display: block;
  padding-right: 23px;
}

.fb-trending-list small {
  color: var(--fb-muted);
  font-size: 11px;
}

.fb-trending-placeholder {
  display: flex;
  gap: 12px;
  padding: 18px 0;
}

.fb-trending-placeholder>span {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--fb-page);
}

.fb-trending-placeholder div {
  flex: 1;
}

.fb-trending-placeholder i {
  display: block;
  height: 10px;
  border-radius: 10px;
  background: var(--fb-page);
  margin: 8px 0;
}

.fb-trending-placeholder i:last-child {
  width: 55%;
}

.fb-widget {
  padding: 25px;
}

.widget-title {
  font-size: 22px;
}

.fb-widget ul {
  padding-left: 18px;
}

.fb-widget li {
  margin: 8px 0;
}

.fb-empty-card {
  padding: 50px;
  border-radius: var(--fb-radius);
  background: var(--fb-surface);
  border: 1px dashed rgba(108,92,231,.35);
  text-align: center;
}

.fb-empty-card h2,
.fb-empty-card h3 {
  font-size: 32px;
}

.fb-editor-section:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  background: rgba(108,92,231,.24);
  right: -100px;
  top: -180px;
}

.fb-editor-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  position: relative;
}

.fb-editor-card {
  position: relative;
  border-radius: var(--fb-radius);
}

.fb-editor-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 25%,rgba(4,8,17,.95));
}

.fb-editor-card-body {
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.fb-footer-top {
  position: relative;
}

.fb-footer-brand p {
  margin-top: 18px;
}

.fb-site-footer .widget-title {
  font-size: 17px;
  color: #fff;
}

.fb-site-footer ul {
  list-style: none;
  padding: 0;
}

.fb-site-footer li {
  margin: 8px 0;
  color: #9faabd;
}

.fb-site-footer a:hover {
  color: #fff;
}

.fb-footer-bottom {
  position: relative;
}

.fb-page-header h1 {
  margin: 0;
}

.fb-page-header p,
.fb-archive-description {
  color: var(--fb-muted);
  font-size: 18px;
}

.fb-archive-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 340px;
  gap: 30px;
  padding-bottom: 80px;
}

.fb-archive-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
  align-content: start;
}

.fb-archive-card {
  position: relative;
  background: var(--fb-surface);
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius);
  overflow: hidden;
  box-shadow: var(--fb-soft-shadow);
}

.fb-archive-card>.fb-post-media {
  height: 240px;
}

.fb-archive-card-body {
  padding: 24px;
}

.fb-archive-card h2 {
  margin: 13px 0 12px;
}

.fb-archive-card p {
  color: var(--fb-muted);
}

.fb-sidebar {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nav-links {
  grid-column: 1/-1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-numbers {
  padding: 11px 15px;
  background: var(--fb-surface);
  border: 1px solid var(--fb-border);
  border-radius: 12px;
  font-weight: 800;
}

.page-numbers.current {
  background: var(--fb-secondary);
  color: #fff;
}

.entry-content {
  font-size: 18px;
  line-height: 1.85;
}

.entry-content h2 {
  font-size: 40px;
  margin-top: 1.7em;
}

.entry-content h3 {
  font-size: 30px;
  margin-top: 1.5em;
}

.entry-content a {
  color: var(--fb-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  margin: 40px 0;
  padding: 30px 36px;
  border-left: 6px solid var(--fb-accent);
  background: linear-gradient(135deg,rgba(255,61,129,.08),rgba(108,92,231,.08));
  border-radius: 0 var(--fb-radius) var(--fb-radius) 0;
  font-size: 1.25em;
  font-weight: 700;
}

.entry-content pre {
  overflow: auto;
  background: var(--fb-dark);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  border: 1px solid var(--fb-border);
  padding: 12px;
}

.post-navigation {
  margin: 40px 0;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.post-navigation a {
  display: block;
  padding: 22px;
  border: 1px solid var(--fb-border);
  border-radius: 18px;
  background: var(--fb-surface);
}

.fb-comments-area {
  margin-top: 50px;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-body {
  padding: 24px;
  border: 1px solid var(--fb-border);
  border-radius: 18px;
  margin: 18px 0;
  background: var(--fb-surface);
}

.comment-author img {
  border-radius: 50%;
  float: left;
  margin-right: 12px;
}

.comment-form input:not([type=submit]),
.comment-form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--fb-border);
  border-radius: 12px;
  background: var(--fb-surface);
  color: var(--fb-ink);
}

.comment-form .submit {
  border: 0;
  border-radius: 13px;
  padding: 13px 20px;
  background: var(--fb-secondary);
  color: #fff;
  font-weight: 800;
}

.fb-page-featured {
  border-radius: var(--fb-radius);
  overflow: hidden;
}

.fb-not-found {
  padding: 100px 0;
  text-align: center;
  max-width: 760px;
}

.fb-not-found>span {
  font-size: clamp(100px,20vw,230px);
  font-weight: 900;
  line-height: .8;
  background: linear-gradient(135deg,var(--fb-accent),var(--fb-secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.fb-not-found h1 {
  font-size: 48px;
  margin: 35px 0 15px;
}

.fb-not-found .fb-search-form {
  margin: 30px 0;
}

@media (max-width:1180px) {
  .fb-content-layout {
    grid-template-columns: minmax(0,1fr) 330px;
  }

  .fb-editor-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .fb-footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .fb-footer-top>div:last-child {
    display: none;
  }
}

@media (max-width:980px) {
  .fb-container {
    width: min(calc(100% - 28px),var(--fb-container));
  }

  .fb-brand-kicker {
    display: none;
  }

  .fb-menu-toggle {
    display: inline-flex;
  }

  .fb-brandbar-inner {
    min-height: 88px;
  }

  .fb-primary-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(86vw,390px);
    background: var(--fb-surface);
    z-index: 100;
    padding: 96px 20px 30px;
    overflow: auto;
    box-shadow: var(--fb-shadow);
  }

  .fb-primary-nav.is-open {
    display: block;
  }

  .fb-primary-nav .fb-nav-list {
    display: block;
  }

  .fb-primary-nav .fb-nav-list a {
    padding: 13px;
  }

  .fb-primary-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding-left: 15px;
  }

  .fb-navbar {
    display: none;
  }

  .fb-content-layout,
  .fb-archive-layout {
    grid-template-columns: 1fr;
  }

  .fb-sidebar-column,
  .fb-sidebar {
    position: static;
  }

  .fb-sidebar-column {
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }

  .fb-widget-stack {
    grid-column: 1/-1;
  }

  .fb-archive-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .fb-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .fb-footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width:720px) {
  .fb-content-section {
    padding: 50px 0;
  }

  .fb-latest-grid {
    grid-template-columns: 1fr;
  }

  .fb-story-featured {
    grid-column: auto;
    display: block;
  }

  .fb-story-featured>.fb-post-media {
    height: 260px;
  }

  .fb-story-featured .fb-story-body {
    padding: 25px;
  }

  .fb-sidebar-column {
    display: flex;
  }

  .fb-editor-grid {
    display: flex;
    overflow: auto;
    scroll-snap-type: x mandatory;
  }

  .fb-editor-card {
    min-width: 78vw;
    scroll-snap-align: center;
  }

  .fb-archive-grid {
    grid-template-columns: 1fr;
  }

  .fb-footer-top {
    grid-template-columns: 1fr;
  }

  .fb-footer-bottom {
    display: block;
  }

  .entry-content {
    font-size: 17px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .fb-brandbar-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .fb-icon-button {
    width: 42px;
    height: 42px;
  }

  .fb-section-heading h2 {
    font-size: 34px;
  }

  .fb-story-card>.fb-post-media {
    height: 210px;
  }

  .fb-editor-card {
    min-width: 88vw;
  }

  .fb-not-found h1 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion:reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.fb-nav-list a {
  border-radius: 10px;
}

.fb-nav-list .sub-menu {
  border-radius: 14px;
}

.fb-search-form,
.fb-icon-button,
.fb-button,
.comment-form input:not([type=submit]),
.comment-form textarea {
  border-radius: 12px;
}

.fb-page-featured,
.comment-body,
.post-navigation a,
.fb-widget,
.fb-story-card,
.fb-editor-card,
.fb-sidebar .widget,
.fb-search-form button {
  border-radius: 16px;
}

.fb-post-media,
.fb-story-featured>.fb-post-media {
  border-radius: 16px;
  overflow: hidden;
}

.fb-site-header,
.fb-site-footer,
.fb-content-section,
.fb-page-main,
.fb-archive-main {
  overflow-x: clip;
}

.fb-ticker {
  background: linear-gradient(90deg,#fff6fa,#f5f1ff,#f1fffc);
  border-bottom: 1px solid rgba(108,92,231,.08);
}

.fb-ticker-inner {
  grid-template-columns: auto minmax(0,1fr);
  gap: 18px;
}

.fb-ticker-viewport {
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.fb-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  min-width: max-content;
  will-change: transform;
}

.fb-ticker-track.is-animated {
  animation: fbTickerMove 272s linear infinite;
}

.fb-ticker-track:hover,
.fb-ticker-track:focus-within {
  animation-play-state: paused;
}

.fb-ticker-track a,
.fb-ticker-track span {
  flex: none;
}

.fb-ticker-track a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fb-secondary);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes fbTickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--fb-ticker-distance, 50%)));
  }
}

.fb-page-header {
  padding-top: 56px;
}

.fb-footer-top,
.fb-footer-bottom,
.fb-brandbar-inner,
.fb-navbar-inner,
.fb-page-article {
  width: 100%;
}

@media (max-width:980px) {
  .fb-page-article {
    padding-top: 40px;
  }
}

.fb-container {
  width: min(calc(100% - 40px),var(--fb-container));
}

.fb-story-card,
.fb-editor-card,
.fb-widget,
.fb-trending-card,
.fb-page-featured,
.comment-body,
.post-navigation a,
.fb-search-form button {
  border-radius: 12px;
}

.fb-post-media,
.fb-story-featured>.fb-post-media,
.fb-trending-thumb {
  border-radius: 12px;
}

.fb-side-title>span {
  border-radius: 12px;
}

.fb-page-article {
  margin-inline: auto;
}

.fb-page-article {
  padding-top: 42px;
  padding-bottom: 80px;
}

.fb-page-header {
  padding: 24px 0 26px;
}

.fb-page-featured {
  margin-bottom: 28px;
}

.fb-content-layout {
  gap: 28px;
}

.fb-site-header .fb-container,
.fb-site-footer .fb-container,
.fb-content-section>.fb-container,
.fb-editor-section .fb-container {
  width: min(calc(100% - 40px),var(--fb-container));
  margin-inline: auto;
}

.fb-footer-top,
.fb-footer-bottom,
.fb-brandbar-inner,
.fb-navbar-inner {
  width: 100%;
}

@media (max-width:980px) {
  .fb-page-article {
    width: min(calc(100% - 28px),var(--fb-container));
  }

  .fb-page-article {
    padding-top: 34px;
  }
}

:root {
  --fb-radius: 10px;
}

.fb-article-page {
  padding: 28px 0 84px;
  background: var(--fb-page);
}

.fb-article-shell {
  width: min(calc(100% - 40px),var(--fb-container));
  margin-inline: auto;
}

.fb-article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--fb-muted);
  font-size: 13px;
  line-height: 1.5;
}

.fb-article-breadcrumb a {
  color: var(--fb-secondary);
  font-weight: 750;
}

.fb-article-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fb-article-breadcrumb span[aria-hidden=true] {
  opacity: .55;
}

.fb-article-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 28px;
  align-items: start;
  width: 100%;
}

.fb-no-widgets .fb-article-layout {
  grid-template-columns: minmax(0,1fr);
}

.fb-article-column {
  min-width: 0;
}

.fb-article-card,
.fb-comments-section {
  background: var(--fb-surface);
  border: 1px solid var(--fb-border);
  border-radius: 10px;
  box-shadow: var(--fb-soft-shadow);
}

.fb-article-card {
  overflow: hidden;
}

.fb-article-header {
  padding: 34px 38px 26px;
}

.fb-article-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--fb-tertiary),var(--fb-secondary));
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fb-article-title {
  margin: 0;
  color: var(--fb-ink);
  font-weight: var(--fb-heading-weight);
}

.fb-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--fb-border);
}

.fb-article-author {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.fb-article-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.fb-article-author strong {
  display: block;
  color: var(--fb-ink);
  font-size: 15px;
}

.fb-article-author span {
  display: block;
  color: var(--fb-muted);
  font-size: 13px;
  margin-top: 2px;
}

.fb-article-stats {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--fb-muted);
  font-size: 13px;
  font-weight: 700;
}

.fb-article-stats>span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.fb-article-stats .fb-icon {
  width: 16px;
  height: 16px;
}

.fb-article-hero {
  margin: 0;
  background: var(--fb-dark);
}

.fb-article-hero img {
  display: block;
  width: 100%;
  height: clamp(340px,48vw,660px);
  object-fit: cover;
}

.fb-article-hero figcaption {
  padding: 10px 38px;
  color: var(--fb-muted);
  background: var(--fb-page);
  background: color-mix(in srgb,var(--fb-page) 78%,var(--fb-surface));
  border-bottom: 1px solid var(--fb-border);
  font-size: 12px;
  line-height: 1.5;
}

.fb-article-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px 38px 38px;
  color: var(--fb-ink);
  font-size: 18px;
  line-height: 1.85;
}

.fb-article-content>*:first-child {
  margin-top: 0;
}

.fb-article-content p {
  margin: 0 0 22px;
}

.fb-article-content>p:first-child {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--fb-ink);
}

.fb-article-content h2 {
  margin: 38px 0 15px;
  color: var(--fb-ink);
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.fb-article-content h3 {
  margin: 30px 0 12px;
  color: var(--fb-ink);
  font-size: 24px;
  line-height: 1.3;
}

.fb-article-content ul,
.fb-article-content ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.fb-article-content li {
  margin: 0 0 10px;
  padding-left: 3px;
}

.fb-article-content blockquote {
  margin: 30px 0;
  padding: 24px 26px;
  border-left: 5px solid var(--fb-secondary);
  border-radius: 0 10px 10px 0;
  background: linear-gradient(135deg,rgba(108,92,231,.09),rgba(255,61,129,.07));
  color: var(--fb-ink);
  font-size: 21px;
  line-height: 1.65;
  font-weight: 650;
}

.fb-article-content figure {
  margin: 30px 0;
}

.fb-article-content figure img {
  width: 100%;
  border-radius: 10px;
}

.fb-article-content figcaption {
  margin-top: 8px;
  color: var(--fb-muted);
  font-size: 12px;
  line-height: 1.5;
}

.fb-article-content pre {
  border-radius: 10px;
}

.fb-article-footer {
  padding: 0 38px 38px;
}

.fb-article-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--fb-border);
}

.fb-article-share-label {
  color: var(--fb-ink);
  font-size: 14px;
  font-weight: 800;
}

.fb-article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.fb-article-tags a {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--fb-page);
  border: 1px solid var(--fb-border);
  color: var(--fb-muted);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.fb-article-tags a:hover {
  border-color: var(--fb-secondary);
  color: var(--fb-secondary);
}

.fb-article-author-box {
  display: grid;
  grid-template-columns: 76px minmax(0,1fr);
  gap: 18px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--fb-border);
  border-radius: 10px;
  background: var(--fb-page);
  background: color-mix(in srgb,var(--fb-page) 70%,var(--fb-surface));
}

.fb-author-box-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.fb-article-author-box h2 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.25;
}

.fb-article-author-box p {
  margin: 0;
  color: var(--fb-muted);
  font-size: 14px;
  line-height: 1.65;
}

.fb-comments-section {
  margin-top: 28px;
  padding: 28px;
}

.fb-article-section-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--fb-ink);
  font-size: 25px;
  line-height: 1.25;
}

.fb-article-section-title:before {
  content: "";
  width: 4px;
  height: 28px;
  border-radius: 99px;
  background: linear-gradient(180deg,var(--fb-secondary),var(--fb-accent));
  flex: none;
}

.fb-article-layout>.fb-sidebar {
  position: static;
  top: auto;
  min-width: 0;
}

.fb-article-layout>.fb-sidebar .fb-widget {
  border-radius: 10px;
  box-shadow: var(--fb-soft-shadow);
}

.fb-comments-section .comment-list {
  margin: 0 0 28px;
}

.fb-comments-section .comment-body {
  border-radius: 10px;
  box-shadow: none;
}

.fb-comment-reply-title {
  font-size: 21px;
  margin: 0 0 18px;
}

.fb-article-comment-form {
  display: grid;
  gap: 14px;
}

.fb-article-comment-form p {
  margin: 0;
}

.fb-article-comment-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--fb-muted);
  font-size: 13px;
  font-weight: 750;
}

.fb-article-comment-form input:not([type=submit]):not([type=checkbox]),
.fb-article-comment-form textarea {
  width: 100%;
  border: 1px solid var(--fb-border);
  border-radius: 9px;
  background: var(--fb-surface);
  color: var(--fb-ink);
  padding: 13px 14px;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.fb-article-comment-form input:focus-visible,
.fb-article-comment-form textarea:focus-visible {
  border-color: var(--fb-secondary);
  outline-color: var(--fb-secondary);
  box-shadow: 0 0 0 4px rgba(108,92,231,.12);
}

.fb-article-comment-form textarea {
  min-height: 140px;
}

.fb-comment-submit {
  border: 0;
  border-radius: 9px;
  padding: 12px 20px;
  background: linear-gradient(135deg,var(--fb-secondary),var(--fb-accent));
  color: #fff;
  font-weight: 850;
}

.fb-comment-submit:hover {
  transform: translateY(-1px);
}

@media (max-width:1100px) {
  .fb-article-layout {
    grid-template-columns: minmax(0,1fr) 290px;
    gap: 22px;
  }
}

@media (max-width:980px) {
  .fb-article-shell {
    width: min(calc(100% - 28px),var(--fb-container));
  }

  .fb-article-layout {
    grid-template-columns: 1fr;
  }

  .fb-article-layout>.fb-sidebar {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
  }

  .fb-article-layout>.fb-sidebar .fb-widget {
    margin: 0;
  }
}

@media (max-width:720px) {
  .fb-article-page {
    padding-top: 18px;
  }

  .fb-article-header {
    padding: 24px 20px 20px;
  }

  .fb-article-title {
    font-size: 34px;
  }

  .fb-article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .fb-article-stats {
    justify-content: flex-start;
  }

  .fb-article-hero img {
    height: 300px;
  }

  .fb-article-hero figcaption {
    padding: 9px 20px;
  }

  .fb-article-content {
    padding: 26px 20px 30px;
    font-size: 17px;
    line-height: 1.78;
  }

  .fb-article-content>p:first-child {
    font-size: 19px;
  }

  .fb-article-content h2 {
    font-size: 25px;
  }

  .fb-article-footer {
    padding: 0 20px 28px;
  }

  .fb-comments-section {
    padding: 22px 18px;
  }

  .fb-article-author-box {
    grid-template-columns: 58px minmax(0,1fr);
    padding: 18px;
  }

  .fb-author-box-avatar {
    width: 58px;
    height: 58px;
  }

  .fb-article-layout>.fb-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width:420px) {
  .fb-article-title {
    font-size: 29px;
  }

  .fb-article-hero img {
    height: 245px;
  }

  .fb-article-content {
    font-size: 16px;
  }

  .fb-article-content blockquote {
    padding: 20px;
    font-size: 18px;
  }
}

.fb-article-title {
  font-size: clamp(28px,3vw,36px);
  letter-spacing: -.03em;
}

.fb-article-card>.fb-comments-section {
  margin: 0;
  padding: 32px 38px 38px;
  border: 0;
  border-top: 1px solid var(--fb-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fb-article-card>.fb-comments-section .fb-article-section-title {
  margin-bottom: 22px;
}

.fb-article-card>.fb-comments-section .comment-body {
  background: var(--fb-page);
  background: color-mix(in srgb,var(--fb-page) 55%,var(--fb-surface));
  border: 1px solid var(--fb-border);
}

@media (max-width:720px) {
  .fb-article-title {
    font-size: 28px;
  }

  .fb-article-card>.fb-comments-section {
    padding: 26px 20px 30px;
  }
}

@media (max-width:420px) {
  .fb-article-title {
    font-size: 26px;
  }
}

.fb-header-colormag .fb-brandbar {
  background: #fff;
  border-bottom: 1px solid #d7dce6;
}

.fb-header-colormag .fb-brandbar-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto minmax(320px,1fr);
  align-items: center;
  gap: 28px;
  padding: 16px 0;
}

.fb-header-colormag .fb-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.fb-color-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fb-color-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f71567;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
}

.fb-color-logo-text strong {
  display: block;
  color: #1b2440;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.fb-color-logo-text small,
.fb-header-colormag .fb-brand-kicker {
  display: block;
  margin-top: 5px;
  color: #6d7a96;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.fb-header-colormag .custom-logo {
  max-height: 54px;
  width: auto;
}

.fb-header-colormag .fb-leaderboard {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px dashed #ff95b7;
  border-radius: 16px;
}

.fb-header-colormag .fb-leader-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f71567;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.fb-header-colormag .fb-leader-copy strong {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fb-header-colormag .fb-leader-copy small {
  display: block;
  margin-top: 4px;
  color: #5b667f;
  font-size: 11px;
  font-weight: 500;
}

.fb-header-colormag .fb-leader-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.fb-header-colormag .fb-navbar {
  border-bottom: 0;
  position: relative;
}

.fb-header-colormag .fb-navbar-inner {
  min-height: 42px;
  justify-content: flex-start;
}

.fb-header-colormag .fb-nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.fb-header-colormag .fb-nav-list>li {
  position: relative;
}

.fb-header-colormag .fb-nav-list>li>a {
  padding: 11px 18px 11px 24px;
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.fb-header-colormag .fb-nav-list>li>a:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.fb-header-colormag .fb-nav-list>li:nth-child(1)>a:before {
  background: #ffffff;
}

.fb-header-colormag .fb-nav-list>li:nth-child(2)>a:before {
  background: #ff8fb5;
}

.fb-header-colormag .fb-nav-list>li:nth-child(3)>a:before {
  background: #26b5ff;
}

.fb-header-colormag .fb-nav-list>li:nth-child(4)>a:before {
  background: #33d16b;
}

.fb-header-colormag .fb-nav-list>li:nth-child(5)>a:before {
  background: #20d3ff;
}

.fb-header-colormag .fb-nav-list>li:nth-child(6)>a:before {
  background: #ff9700;
}

.fb-header-colormag .fb-nav-list>li:nth-child(7)>a:before {
  background: #7be450;
}

.fb-header-colormag .fb-nav-list>li:nth-child(8)>a:before {
  background: #9a6bff;
}

.fb-header-colormag .fb-nav-list>li:nth-child(9)>a:before {
  background: #ff2d55;
}

.fb-header-colormag .fb-nav-list>li>a:hover,
.fb-header-colormag .fb-nav-list>.current-menu-item>a,
.fb-header-colormag .fb-nav-list>.current-menu-ancestor>a {
  background: rgba(0,0,0,.12);
  color: #fff;
}

.fb-header-colormag .fb-nav-list .sub-menu {
  top: 100%;
  border-radius: 0 0 14px 14px;
  border: 1px solid #efdae3;
  box-shadow: 0 18px 48px rgba(21,22,35,.12);
}

/* Keep long desktop menus on one line without changing WordPress menu data. */
@media (min-width:981px) {
  .fb-header-colormag .fb-navbar-inner,
  .fb-header-colormag .fb-primary-nav {
    min-width: 0;
    width: 100%;
  }

  .fb-header-colormag .fb-nav-list {
    flex-wrap: nowrap;
    min-width: 0;
    width: 100%;
    overflow: visible;
  }

  .fb-header-colormag .fb-nav-list > li {
    flex: 0 0 auto;
  }

  .fb-header-colormag .fb-nav-overflow-item {
    order: -1;
    margin-inline: 0 6px;
    position: relative;
    align-self: stretch;
  }

  .fb-header-colormag .fb-nav-overflow-toggle {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-width: 46px;
    height: 42px;
    padding: 0;
    border: 0;
    border-inline-end: 1px solid rgba(255,255,255,.18);
    border-radius: 0;
    background: rgba(0,0,0,.12);
    color: #fff;
    cursor: pointer;
  }

  .fb-nav-overflow-icon {
    width: 19px;
    height: 15px;
    display: grid;
    align-content: space-between;
  }

  .fb-nav-overflow-icon i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .fb-header-colormag .fb-nav-overflow-toggle:hover,
  .fb-header-colormag .fb-nav-overflow-toggle:focus-visible,
  .fb-header-colormag .fb-nav-overflow-item.is-open > .fb-nav-overflow-toggle {
    background: rgba(0,0,0,.24);
    color: #fff;
  }

  .fb-header-colormag .fb-nav-overflow-item > .fb-nav-overflow-menu {
    top: calc(100% + 8px);
    inset-inline-start: 0;
    inset-inline-end: auto;
    min-width: 290px;
    max-width: min(420px, calc(100vw - 32px));
    max-height: min(70vh, 560px);
    padding: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid #eadde4;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(21,22,35,.18);
  }

  .fb-header-colormag .fb-nav-overflow-item.is-open > .fb-nav-overflow-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .fb-header-colormag .fb-nav-overflow-menu > li + li {
    border-top: 1px solid #f0e8ed;
  }

  .fb-header-colormag .fb-nav-overflow-menu > li > a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    color: #222a3c;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-transform: none;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .fb-header-colormag .fb-nav-overflow-menu > li > a:hover,
  .fb-header-colormag .fb-nav-overflow-menu > .current-menu-item > a {
    background: #fff2f7;
    color: var(--fb-accent);
  }

  .fb-header-colormag .fb-nav-overflow-menu .menu-item-has-children > .sub-menu {
    top: 0;
    inset-inline-start: 100%;
    inset-inline-end: auto;
  }
}

@media (max-width:980px) {
  .fb-nav-overflow-item {
    display: none !important;
  }
}

.fb-header-colormag .fb-breaking-bar {
  background: #eef1f5;
  border-top: 1px solid #d7dce6;
  border-bottom: 1px solid #d7dce6;
}

.fb-header-colormag .fb-ticker-inner {
  min-height: 40px;
  grid-template-columns: auto minmax(0,1fr);
  gap: 14px;
}

.fb-header-colormag .fb-ticker strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.fb-header-colormag .fb-ticker strong span {
  display: none;
}

.fb-header-colormag .fb-ticker-viewport {
  min-width: 0;
}

.fb-header-colormag .fb-ticker-track {
  font-size: 13px;
  font-weight: 700;
  color: #29334d;
  gap: 32px;
}

.fb-header-colormag .fb-ticker-track a {
  padding: 0;
}

.fb-header-colormag .fb-ticker-track a:after {
  background: #b8c1d6;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.fb-page-header h1 {
  font-size: clamp(24px,4vw,43px) !important;
  line-height: 1.06;
}

.fb-story-featured h3 {
  font-size: clamp(20px,2.4vw,34px);
}

.fb-story-body h3 {
  font-size: clamp(18px,1.6vw,24px);
}

.fb-archive-card h2 {
  font-size: 22px;
}

.fb-section-heading h2 {
  font-size: clamp(26px,3vw,40px);
}

@media (max-width:980px) {
  .fb-header-colormag .fb-brandbar-inner {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .fb-header-colormag .fb-leaderboard {
    grid-column: 1/-1;
  }

  .fb-header-colormag .fb-navbar {
    display: block;
  }

  .fb-header-colormag .fb-navbar-inner {
    min-height: 0;
    padding: 0;
  }

  .fb-header-colormag .fb-primary-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(86vw,390px);
    background: #fff;
    z-index: 100;
    padding: 84px 18px 24px;
    overflow: auto;
    box-shadow: 0 18px 60px rgba(20,27,44,.18);
  }

  .fb-header-colormag .fb-primary-nav.is-open {
    display: block;
  }

  .fb-header-colormag .fb-primary-nav .fb-nav-list {
    display: block;
  }

  .fb-header-colormag .fb-primary-nav .fb-nav-list>li>a {
    color: #1b2440;
    padding: 14px 14px 14px 28px;
  }

  .fb-header-colormag .fb-primary-nav .fb-nav-list>li>a:hover,
  .fb-header-colormag .fb-primary-nav .fb-nav-list>.current-menu-item>a,
  .fb-header-colormag .fb-primary-nav .fb-nav-list>.current-menu-ancestor>a {
    background: #f5f7fb;
    color: #1b2440;
  }

  .fb-header-colormag .fb-primary-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding-left: 18px;
  }

  .fb-header-colormag .fb-ticker-track {
    gap: 24px;
  }

  .fb-header-colormag .fb-ticker strong {
    padding: 0 10px;
    font-size: 11px;
  }
}

@media (max-width:640px) {
  .fb-color-logo-text strong {
    font-size: 22px;
  }

  .fb-color-logo-text small,
  .fb-header-colormag .fb-brand-kicker {
    font-size: 10px;
  }

  .fb-header-colormag .fb-leaderboard {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .fb-header-colormag .fb-leader-button {
    width: 100%;
  }

  .fb-page-header h1 {
    font-size: clamp(22px,8vw,34px) !important;
  }
}

.fb-page-article {
  width: min(calc(100% - 40px),var(--fb-container)) !important;
  max-width: none;
}

.fb-page-header {
  max-width: none;
}

.fb-primary-nav {
  display: block;
}

.fb-latest-grid,
.fb-editor-grid,
.fb-archive-grid,
.fb-sidebar-column,
.fb-widget-stack,
.fb-article-layout,
.fb-content-layout,
.fb-article-layout>.fb-sidebar {
  gap: 15px !important;
}

.fb-story-featured {
  column-gap: 15px;
}

.post-navigation .nav-links {
  gap: 15px;
}

.fb-comments-area .comment-list {
  display: grid;
  gap: 15px;
}

.fb-comments-area .comment-body {
  margin: 0;
}

@media (max-width:980px) {
  .fb-latest-grid,
  .fb-editor-grid,
  .fb-archive-grid,
  .fb-sidebar-column,
  .fb-widget-stack,
  .fb-article-layout,
  .fb-content-layout,
  .fb-article-layout>.fb-sidebar {
    gap: 15px !important;
  }
}

.fb-content-section {
  padding-top: 38px;
}

.fb-story-body h3,
.fb-story-featured h3,
.fb-editor-card h3,
.fb-archive-card h2,
.fb-trending-list strong {
  font-weight: 500 !important;
  letter-spacing: -.015em;
}

.fb-story-body h3,
.fb-story-featured h3 {
  line-height: 1.22;
}

.fb-editor-card h3,
.fb-archive-card h2 {
  line-height: 1.25;
}

.fb-article-title,
.fb-page-header h1,
.fb-archive-main .fb-page-header h1,
.fb-not-found h1 {
  font-weight: 500 !important;
  letter-spacing: -.025em;
}

.fb-article-title {
  line-height: 1.14;
}

@media (max-width:980px) {
  .fb-article-title,
  .fb-page-header h1,
  .fb-archive-main .fb-page-header h1,
  .fb-not-found h1 {
    font-weight: 500 !important;
  }
}

.fb-header-colormag .fb-nav-list>li>a {
  font-weight: 400 !important;
  letter-spacing: 0;
}

.fb-header-colormag .fb-primary-nav .fb-nav-list>li>a {
  font-weight: 400 !important;
}

.fb-story-featured .fb-story-body {
  padding: 20px 28px !important;
}

.fb-story-featured .fb-story-body p {
  margin-bottom: 12px;
}

@media (max-width:720px) {
  .fb-story-featured .fb-story-body {
    padding: 18px 20px !important;
  }
}

.fb-story-featured {
  min-height: 290px !important;
}

.fb-story-featured>.fb-post-media {
  height: 290px !important;
}

.fb-site,
.fb-site * {
  font-weight: 400 !important;
}

.fb-site strong,
.fb-site b,
.fb-site th,
.fb-site button,
.fb-site input,
.fb-site select,
.fb-site textarea {
  font-weight: 400 !important;
}

@media (max-width:720px) {
  .fb-story-featured>.fb-post-media {
    height: 230px !important;
  }

  .fb-story-featured {
    min-height: 0 !important;
  }
}

.fb-editor-section {
  padding: 58px 0;
  background: var(--fb-page);
  color: var(--fb-ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--fb-border);
}

.fb-editor-section:before {
  display: none;
}

.fb-editor-section .fb-eyebrow {
  color: var(--fb-accent);
}

.fb-editor-section .fb-section-line {
  background: linear-gradient(90deg,var(--fb-border),transparent);
}

.fb-editor-grid {
  gap: 15px;
}

.fb-editor-card {
  min-height: 0;
  background: var(--fb-surface);
  border: 1px solid var(--fb-border);
  box-shadow: var(--fb-soft-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fb-editor-card .fb-post-media {
  height: 220px;
  flex: none;
}

.fb-editor-card:after {
  display: none;
}

.fb-editor-card-body {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px;
  color: var(--fb-ink);
  min-height: 150px;
}

.fb-editor-card h3 {
  font-size: 20px;
  line-height: 1.28;
  margin: 0;
  color: var(--fb-ink);
  font-weight: 400 !important;
}

.fb-editor-card-body>span {
  font-size: 12px;
  color: var(--fb-muted);
  font-weight: 400;
}

.fb-editor-card .fb-category-badge {
  margin: 0;
}

.fb-site-footer {
  background: #111827;
  color: #d9dfeb;
  padding: 58px 0 22px;
  border-top: 4px solid var(--fb-accent);
  position: relative;
  overflow: hidden;
}

.fb-footer-top {
  display: grid;
  grid-template-columns: 1.35fr repeat(3,minmax(0,1fr));
  gap: 28px;
  padding-bottom: 38px;
}

.fb-footer-brand {
  min-width: 0;
}

.fb-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.fb-footer-logo .custom-logo-link {
  display: block;
}

.fb-footer-logo .custom-logo {
  max-height: 48px;
  width: auto;
}

.fb-footer-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fb-accent);
  color: #fff;
  font-size: 19px;
  font-weight: 500;
}

.fb-footer-brand p {
  max-width: 330px;
  margin: 18px 0;
  color: #9da8bb;
  font-size: 14px;
  line-height: 1.75;
}

.fb-footer-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
}

.fb-footer-home-link .fb-icon {
  width: 16px;
  height: 16px;
}

.fb-footer-column h2,
.fb-site-footer .widget-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400 !important;
}

.fb-footer-list,
.fb-footer-posts,
.fb-site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fb-footer-list li,
.fb-site-footer li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.fb-footer-list a,
.fb-site-footer li>a {
  display: block;
  padding: 9px 0;
  color: #aab4c7;
  font-size: 13px;
}

.fb-footer-list a:hover,
.fb-site-footer a:hover {
  color: #fff;
}

.fb-footer-posts li {
  padding: 0 0 13px;
  margin: 0 0 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.fb-footer-posts a {
  display: block;
  color: #d8deea;
  font-size: 13px;
  line-height: 1.45;
}

.fb-footer-posts small {
  display: block;
  margin-top: 5px;
  color: #7f8ba0;
  font-size: 11px;
}

.fb-site-footer .widget {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.fb-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #7f8ba0;
  font-size: 12px;
}

.fb-footer-bottom p {
  margin: 0;
}

@media (max-width:1100px) {
  .fb-footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .fb-footer-top>section:last-child {
    grid-column: 2/4;
  }

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

@media (max-width:720px) {
  .fb-editor-section {
    padding: 42px 0;
  }

  .fb-editor-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .fb-editor-card {
    min-width: 0;
  }

  .fb-editor-card .fb-post-media {
    height: 240px;
  }

  .fb-footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fb-footer-top>section:last-child {
    grid-column: auto;
  }

  .fb-footer-bottom p+p {
    margin-top: 8px;
  }
}

.fb-header-colormag .fb-color-logo-mark {
  background: var(--fb-accent) !important;
}

.fb-header-colormag .fb-leaderboard {
  border-color: var(--fb-accent) !important;
  background: #fff8fc !important;
  background: color-mix(in srgb,var(--fb-accent) 4%,#fff) !important;
}

.fb-header-colormag .fb-leader-copy strong {
  color: var(--fb-accent) !important;
}

.fb-header-colormag .fb-leader-button {
  background: var(--fb-accent) !important;
}

.fb-header-colormag .fb-navbar {
  background: var(--fb-accent) !important;
}

.fb-header-colormag .fb-ticker strong {
  background: var(--fb-accent) !important;
}

.fb-header-colormag .fb-leaderboard.has-banner-image {
  display: block;
  min-width: 0;
  border-style: solid !important;
  background: #fff !important;
}

.fb-leader-image-link {
  display: flex;
  width: 100%;
  min-height: 64px;
  max-height: 90px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fb-leader-image-link img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: contain;
  background: #fff;
}

.fb-brand-kicker,
.fb-color-logo-text small {
  max-width: 390px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fb-story-body h3,
.fb-story-featured h3,
.fb-editor-card h3,
.fb-archive-card h2,
.fb-article-title,
.fb-article-content h2,
.fb-article-content h3,
.fb-side-title h2,
.widget-title,
.fb-footer-column h2,
.fb-site-footer .widget-title {
  font-weight: var(--fb-heading-weight) !important;
}

.fb-story-card,
.fb-editor-card,
.fb-widget,
.fb-trending-card,
.fb-archive-card,
.fb-article-card,
.fb-comments-section,
.fb-page-featured,
.comment-body,
.post-navigation a {
  border-radius: var(--fb-radius) !important;
}

.fb-story-card>.fb-post-media,
.fb-editor-card .fb-post-media,
.fb-archive-card>.fb-post-media,
.fb-page-featured img {
  border-radius: var(--fb-radius) !important;
}

@media (max-width:980px) {
  .fb-header-colormag .fb-brandbar-inner {
    grid-template-columns: auto minmax(0,1fr);
  }

  .fb-leader-image-link,
  .fb-leader-image-link img {
    height: auto;
    max-height: 90px;
  }
}

.fb-header-colormag .fb-leaderboard.has-banner-image {
  width: min(100%,728px) !important;
  height: 90px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  justify-self: end;
  overflow: hidden !important;
  padding: 0 !important;
  border-radius: 10px !important;
}

.fb-header-colormag .fb-leader-image-link {
  display: block !important;
  width: 100% !important;
  height: 90px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  overflow: hidden !important;
  background: #fff;
}

.fb-header-colormag .fb-leader-image-link img {
  display: block !important;
  width: 100% !important;
  height: 90px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
}

.fb-header-colormag .fb-leader-image-link.is-not-linked {
  cursor: default;
}

@media (max-width:980px) {
  .fb-header-colormag .fb-leaderboard.has-banner-image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 728/90;
  }

  .fb-header-colormag .fb-leader-image-link,
  .fb-header-colormag .fb-leader-image-link img {
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
  }
}

.fb-sidebar,
.fb-widget-stack,
.fb-sidebar-column,
.fb-article-layout>.fb-sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

.fb-sidebar>.widget,
.fb-widget-stack>.widget,
.fb-sidebar-column>.widget,
.fb-article-layout>.fb-sidebar>.widget {
  margin: 0 !important;
}

.fb-sidebar>.fb-widget,
.fb-widget-stack>.fb-widget,
.fb-sidebar-column>.fb-widget,
.fb-article-layout>.fb-sidebar>.fb-widget {
  margin-block: 0 !important;
}

@media (max-width:980px) {
  .fb-article-layout>.fb-sidebar {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 15px !important;
  }
}

@media (max-width:720px) {
  .fb-article-layout>.fb-sidebar {
    grid-template-columns: 1fr !important;
  }
}

.fb-no-widgets .fb-archive-layout {
  grid-template-columns: minmax(0,1fr);
}

.fb-sidebar-column,
.fb-sidebar,
.fb-article-layout>.fb-sidebar {
  align-self: start;
}

.fb-content-layout,
.fb-article-layout,
.fb-archive-layout {
  align-items: start;
}

/* FeedBuzz light utility bar and international layout support. */

.fb-utilitybar {
  background: #fbf9fd;
  color: #5f5770;
  border-bottom: 1px solid #ece8f1;
  font-size: 12px;
}

.fb-utilitybar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fb-utilitybar-left,
.fb-utilitybar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.fb-utility-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #312b3b;
}

.fb-utility-date .fb-icon {
  width: 15px;
  height: 15px;
  color: var(--fb-accent);
}

.fb-utility-menu {
  min-width: 0;
}

.fb-utility-menu-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.fb-utility-menu-list a {
  color: #5f5770;
  transition: color .2s ease;
}

.fb-utility-menu-list a:hover,
.fb-utility-menu-list a:focus-visible {
  color: var(--fb-accent);
}

.fb-utility-socials {
  display: flex;
  align-items: center;
  gap: 7px;
}

.fb-utility-socials a {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4dee8;
  border-radius: 50%;
  background: #fff;
  color: #5b5367;
  line-height: 1;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.fb-utility-socials a:hover,
.fb-utility-socials a:focus-visible {
  border-color: color-mix(in srgb,var(--fb-accent) 42%,#fff);
  background: color-mix(in srgb,var(--fb-accent) 6%,#fff);
  color: var(--fb-accent);
}

.fb-utility-socials .fb-icon {
  width: 13px;
  height: 13px;
}

@media (max-width:980px) {
  .fb-utilitybar-inner {
    min-height: 34px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .fb-utilitybar-inner::-webkit-scrollbar {
    display: none;
  }

  .fb-utilitybar-left,
  .fb-utilitybar-right {
    gap: 14px;
    flex: none;
  }


  .fb-utility-menu-list {
    gap: 16px;
  }
}

@media (max-width:640px) {
  .fb-utilitybar-right {
    margin-inline-start: auto;
  }

  .fb-utility-menu {
    display: none;
  }
}

/* FeedBuzz utility bar exact-content update 1.0.18. */

.fb-utilitybar {
  background: #f7f5fa;
  color: #4e465d;
  border-bottom: 1px solid #e7e2eb;
}

.fb-utilitybar-inner {
  min-height: 38px;
}

.fb-utility-date {
  font-weight: 500;
}

.fb-utility-menu-list a {
  font-weight: 400;
}

/* Fix stretched category bar */

.fb-story-body .fb-category-badge,
.fb-editor-card-body .fb-category-badge,
.fb-archive-card-body .fb-category-badge,
.fb-page-header .fb-category-badge {
  align-self: flex-start !important;
  width: auto !important;
  max-width: max-content !important;
  flex: 0 0 auto !important;
}

/* Keyboard-focus hardening. */

.fb-nav-list a:focus-visible,
.fb-button:focus-visible,
.fb-card-link:focus-visible,
.fb-footer a:focus-visible,
.entry-content a:focus-visible,
.fb-article-breadcrumb a:focus-visible,
.fb-article-category:focus-visible,
.fb-category-badge:focus-visible {
  outline: 2px solid var(--fb-secondary);
  outline-offset: 3px;
}

.fb-card-link:focus-visible {
  outline-offset: -4px;
  border-radius: inherit;
}

.fb-search-form:focus-within {
  border-color: var(--fb-secondary);
  box-shadow: 0 0 0 3px color-mix(in srgb,var(--fb-secondary) 18%,transparent);
}

/* Optional WordPress custom header image. */

.fb-custom-header-media {
  background: var(--fb-surface);
  border-bottom: 1px solid var(--fb-border);
}

.fb-custom-header-media .fb-container {
  padding-block: 13px;
}

.fb-custom-header-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

/* WordPress.org review hardening: readable titles, keyboard focus, and mobile modal navigation. */

.fb-article-column,
.fb-content-column,
.fb-archive-layout,
.fb-archive-grid,
.fb-story-card,
.fb-story-body,
.fb-editor-card,
.fb-editor-card-body,
/* Wide and full block alignment support. */

.entry-content > .alignwide,
.entry-content > .alignfull {
  clear: both;
}

.fb-article-content > .alignwide {
  width: calc(100% + 40px);
  max-width: calc(100% + 40px);
  margin-inline: -20px;
}

.fb-article-content > .alignfull {
  width: calc(100% + 76px);
  max-width: calc(100% + 76px);
  margin-inline: -38px;
}

.fb-page-article > .entry-content > .alignwide {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
  margin-inline: auto;
}

.fb-page-article > .entry-content > .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
}

@media (max-width: 980px) {
  .fb-article-content > .alignwide,
  .fb-article-content > .alignfull {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-inline: -20px;
  }

  .fb-page-article > .entry-content > .alignwide {
    width: 100%;
  }
}

.fb-archive-card,
.fb-archive-card-body,
.fb-page-header,
.fb-article-header,
.fb-brand,
.fb-color-logo-text,
.entry-content {
  min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fb-article-title,
.fb-page-header h1,
.fb-story-body h3,
.fb-editor-card h3,
.fb-archive-card h2,
.fb-trending-list strong,
.fb-color-logo-text strong,
.fb-footer-posts a,
.entry-content,
.entry-content a {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.fb-icon-button:focus-visible,
.fb-menu-close:focus-visible,
.fb-menu-toggle:focus-visible {
  outline: 3px solid var(--fb-secondary);
  outline-offset: 3px;
  transform: none;
}

.fb-menu-close {
  display: none;
}

.fb-nav-backdrop[hidden] {
  display: none;
}

.fb-ticker-viewport:hover .fb-ticker-track.is-animated,
.fb-ticker-viewport:focus-within .fb-ticker-track.is-animated {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fb-ticker-track {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .fb-header-colormag .fb-primary-nav {
    padding-top: 76px;
  }

  .fb-menu-close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    display: inline-flex;
    z-index: 2;
  }

  .fb-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(17, 24, 39, 0.54);
  }

  .fb-header-colormag .fb-primary-nav {
    z-index: 100;
  }
}

.fb-header-colormag .fb-brandbar-inner.fb-brandbar-inner-no-banner {
  grid-template-columns: auto minmax(280px, 500px);
  justify-content: space-between;
}

.fb-home-page-header {
  margin-bottom: 24px;
}

/* Header widget area uses only standard WordPress widgets and blocks. */
.fb-header-widget-area .widget,
.fb-header-widget-area .wp-block-image,
.fb-header-widget-area figure {
  margin: 0;
}

.fb-header-widget-area .widget-title {
  margin: 0 0 8px;
  font-size: 14px;
}

.fb-header-widget-area img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Universal visible keyboard focus fallback for interactive elements. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 2px solid var(--fb-secondary);
  outline-offset: 3px;
}


/* Static front-page content is compact and flows into the magazine feed. */
.fb-front-page-intro {
  padding-top: 42px;
  padding-bottom: 18px;
}

.fb-front-page-intro .fb-page-header {
  padding-bottom: 18px;
}

.fb-front-page-intro .entry-content:empty {
  display: none;
}

.fb-static-front-page .fb-content-section {
  padding-top: 0;
}

@media (max-width: 700px) {
  .fb-front-page-intro {
    padding-top: 28px;
    padding-bottom: 8px;
  }
}

/* Keep the white background exactly as wide as the theme and leave 12px between it and the theme content. */
body {
  margin: 0;
  background: #ffffff;
}

.fb-site {
  width: min(calc(100% - 10px), var(--fb-container));
  max-width: var(--fb-container);
  min-height: calc(100vh - 10px);
  margin: 5px auto;
  background: #ffffff;
  border: 0;
  box-shadow: none;
  position: relative;
  isolation: isolate;
}

/* Every public section stays inside the same theme-width background with 12px side spacing. */
.fb-site .fb-container,
.fb-site-header .fb-container,
.fb-site-footer .fb-container,
.fb-content-section > .fb-container,
.fb-editor-section .fb-container {
  width: calc(100% - 24px) !important;
  max-width: calc(var(--fb-container) - 24px) !important;
  margin-inline: auto;
  padding-inline: 0;
}

.fb-site .fb-page-article {
  width: calc(100% - 24px) !important;
  max-width: calc(var(--fb-container) - 24px) !important;
  margin-inline: auto;
  padding-inline: 0;
}

.fb-site .fb-main,
.fb-site .fb-content-section,
.fb-site .fb-editor-section,
.fb-site .fb-page-main,
.fb-site .fb-archive-main,
.fb-site .fb-article-page {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
}

/* Full-width blocks stay inside the constrained theme canvas. */
.fb-site .fb-page-article > .entry-content > .alignfull {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

@media (max-width: 980px) {
  .fb-site .fb-container,
  .fb-site .fb-page-article {
    width: calc(100% - 24px) !important;
  }
}


/* Header: logo, managed advertisement, and compact search. */
.fb-header-colormag .fb-brandbar-inner.fb-brandbar-layout {
  min-height: 96px;
  grid-template-columns: minmax(180px, 240px) minmax(300px, 540px) minmax(260px, 330px);
  justify-content: space-between;
  gap: 18px;
  padding-block: 10px;
}

.fb-header-ad-slot {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-header-ad,
.fb-header-ad-placeholder,
.fb-header-ad-empty {
  width: min(100%, 540px);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-header-ad {
  overflow: hidden;
  background: #f7f8fb;
  border: 1px solid #e0e4ec;
}

.fb-header-ad a,
.fb-header-ad .widget,
.fb-header-ad .wp-block-image,
.fb-header-ad figure {
  display: block;
  width: 100%;
  margin: 0;
}

.fb-header-ad-image,
.fb-header-ad img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.fb-header-ad-placeholder {
  gap: 10px;
  padding: 8px 14px;
  border: 1px dashed #c8cfda;
  background: #fafbfc;
  color: #5f6b82;
  text-align: left;
}

.fb-header-ad-badge {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--fb-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.fb-header-ad-placeholder-copy {
  display: grid;
  gap: 2px;
}

.fb-header-ad-placeholder strong {
  color: #303a51;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fb-header-ad-placeholder small {
  color: #6f788d;
  font-size: 11px;
}

.fb-header-search {
  width: 100%;
  max-width: 340px;
  justify-self: end;
}

.fb-header-search .fb-search-form-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 3px 3px 3px 12px;
  background: #fff;
  border: 1px solid #d8dde7;
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(21, 22, 35, 0.06);
}

.fb-header-search .fb-search-form-header > label.screen-reader-text {
  position: absolute !important;
}

.fb-header-search .fb-search-form-header > .fb-icon {
  width: 17px;
  height: 17px;
  color: #9099ab;
}

.fb-header-search .fb-search-form-header input {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #28324b;
  font-size: 13px;
}

.fb-header-search .fb-search-form-header input::placeholder {
  color: #8d95a8;
}

.fb-header-search-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 27px;
  padding: 0 7px;
  border: 1px solid #dde2eb;
  border-radius: 8px;
  background: #f5f7fb;
  color: #7a8399;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.fb-header-search .fb-search-form-header button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #141414;
  color: #fff;
  box-shadow: none;
}

.fb-header-search .fb-search-form-header button .fb-icon {
  width: 16px;
  height: 16px;
}

.fb-header-search .fb-search-form-header button:hover,
.fb-header-search .fb-search-form-header button:focus-visible {
  background: #000;
}

/* Light footer theme. */
.fb-site-footer {
  background: #fff;
  color: #445068;
  border-top: 2px solid var(--fb-accent);
}

.fb-footer-logo,
.fb-footer-home-link,
.fb-footer-column h2,
.fb-site-footer .widget-title {
  color: #172033;
}

.fb-footer-brand p,
.fb-footer-list a,
.fb-site-footer li > a,
.fb-footer-posts a {
  color: #5f6b82;
}

.fb-footer-posts small,
.fb-footer-bottom {
  color: #7a859a;
}

.fb-footer-list li,
.fb-site-footer li,
.fb-footer-posts li {
  border-color: #e6e9ef;
}

.fb-footer-list a:hover,
.fb-site-footer a:hover,
.fb-footer-home-link:hover {
  color: var(--fb-accent);
}

.fb-footer-bottom {
  border-top-color: #e6e9ef;
}

@media (max-width: 1100px) {
  .fb-header-colormag .fb-brandbar-inner.fb-brandbar-layout {
    grid-template-columns: minmax(180px, 230px) minmax(300px, 1fr);
  }

  .fb-header-search {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .fb-header-colormag .fb-brandbar-inner.fb-brandbar-layout {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .fb-header-colormag .fb-brandbar-inner.fb-brandbar-layout .fb-menu-toggle {
    display: inline-flex;
  }

  .fb-header-ad-slot,
  .fb-header-search {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
  }

  .fb-header-ad,
  .fb-header-ad-placeholder,
  .fb-header-ad-empty {
    width: 100%;
  }

  .fb-header-search .fb-search-form-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .fb-header-search-shortcut {
    display: none;
  }
}

@media (max-width: 640px) {
  .fb-header-ad,
  .fb-header-ad-placeholder,
  .fb-header-ad-empty,
  .fb-header-ad-image,
  .fb-header-ad img {
    min-height: 54px;
    height: 54px;
  }
}


/* Homepage title block intentionally removed; retain only compact spacing above cards. */
.fb-home-main #latest.fb-content-section {
  padding-top: 18px;
}


/* Utility bar: exact 30px height and WordPress page-menu fallback. */
.fb-utilitybar {
  font-size: 11px;
}

.fb-utilitybar-inner {
  min-height: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  .fb-utilitybar-inner {
    min-height: 30px;
    height: 30px;
  }
}

.fb-utilitybar-left,
.fb-utilitybar-right {
  gap: 15px;
}

.fb-utility-menu-list {
  gap: 16px;
}

.fb-utility-menu-list a {
  font-size: 11px;
  line-height: 30px;
}

.fb-utility-date {
  gap: 6px;
  font-size: 11px;
  line-height: 30px;
}

.fb-utility-date .fb-icon {
  width: 13px;
  height: 13px;
}

.fb-utility-socials {
  gap: 5px;
}

.fb-utility-socials a {
  width: 22px;
  height: 22px;
  min-width: 22px;
}

.fb-utility-socials .fb-icon {
  width: 11px;
  height: 11px;
}

.fb-footer-powered a {
  color: inherit;
}

.fb-footer-powered a:hover,
.fb-footer-powered a:focus-visible {
  color: var(--fb-accent);
}


/* Standard footer credit: site copyright only; no mandatory platform link. */
.fb-footer-bottom {
  justify-content: flex-start;
}

.fb-footer-powered {
  display: none;
}


/* Utility navigation alignment fix: keep fallback and assigned menus horizontal. */
.fb-utilitybar {
  height: 30px;
  overflow: hidden;
}

.fb-utilitybar .fb-utilitybar-inner {
  height: 30px;
  min-height: 30px;
  flex-wrap: nowrap;
}

.fb-utilitybar .fb-utilitybar-left {
  height: 30px;
  min-width: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  overflow: hidden;
}

.fb-utilitybar .fb-utility-menu {
  min-width: 0;
  height: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.fb-utilitybar .fb-utility-menu::-webkit-scrollbar {
  display: none;
}

.fb-utilitybar .fb-utility-menu-list,
.fb-utilitybar .fb-utility-menu > ul {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  height: 30px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  white-space: nowrap;
}

.fb-utilitybar .fb-utility-menu-list > li,
.fb-utilitybar .fb-utility-menu > ul > li {
  display: block !important;
  flex: 0 0 auto;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.fb-utilitybar .fb-utility-menu-list > li::marker,
.fb-utilitybar .fb-utility-menu > ul > li::marker {
  content: "";
}

.fb-utilitybar .fb-utility-menu-list a,
.fb-utilitybar .fb-utility-menu > ul a {
  display: inline-flex !important;
  align-items: center;
  height: 30px;
  padding: 0 !important;
  line-height: 30px !important;
}

.fb-utilitybar .fb-utilitybar-right {
  height: 30px;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .fb-utilitybar .fb-utility-menu {
    display: block;
  }

  .fb-utilitybar .fb-utility-socials {
    display: none;
  }
}


/* Standard right sidebar on posts, pages, archives, search results and blog indexes. */
.fb-page-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 28px;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 80px;
}

.fb-page-content-column {
  min-width: 0;
}

.fb-page-layout .fb-page-article {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
}

.fb-default-sidebar-search .fb-search-form {
  background: var(--fb-page);
}

.fb-default-recent-list,
.fb-default-category-list {
  list-style: none;
  margin: 0;
  padding: 0 !important;
}

.fb-default-recent-list li,
.fb-default-category-list li {
  margin: 0 !important;
  border-top: 1px solid var(--fb-border);
}

.fb-default-recent-list li:first-child,
.fb-default-category-list li:first-child {
  border-top: 0;
}

.fb-default-recent-list a {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 0;
}

.fb-default-recent-list .no-post-thumbnail a {
  grid-template-columns: minmax(0,1fr);
}

.fb-default-recent-thumb {
  width: 58px;
  height: 58px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: var(--fb-page);
}

.fb-default-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fb-default-recent-copy {
  min-width: 0;
}

.fb-default-recent-copy strong {
  display: block;
  color: var(--fb-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.fb-default-recent-copy time {
  display: block;
  margin-top: 5px;
  color: var(--fb-muted);
  font-size: 11px;
}

.fb-default-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  color: var(--fb-ink);
  font-size: 14px;
}

.fb-default-category-list a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.fb-default-category-list small {
  min-width: 28px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--fb-page);
  color: var(--fb-muted);
  text-align: center;
  font-size: 11px;
}

@media (max-width:980px) {
  .fb-page-layout {
    grid-template-columns: 1fr;
  }

  .fb-page-layout > .fb-sidebar,
  .fb-archive-layout > .fb-sidebar,
  .fb-article-layout > .fb-sidebar {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width:720px) {
  .fb-page-layout {
    padding-top: 28px;
    padding-bottom: 55px;
  }

  .fb-page-layout > .fb-sidebar,
  .fb-archive-layout > .fb-sidebar,
  .fb-article-layout > .fb-sidebar {
    grid-template-columns: 1fr !important;
  }
}

/* Prevent transitional paint while the desktop menu is fitted into one row. */
.fb-nav-list.fb-nav-is-fitting,
.fb-nav-list.fb-nav-is-fitting * {
  transition: none !important;
}

/* FeedBuzz 1.0.42: editorial homepage showcase. */
.fb-home-magazine-section {
  padding-top: 15px;
}

.fb-home-showcase {
  display: grid;
  grid-template-columns: minmax(0,1.92fr) minmax(340px,1fr);
  gap: 15px;
  height: 490px;
  margin-bottom: 28px;
}

.fb-home-showcase--single {
  grid-template-columns: 1fr;
}

.fb-showcase-hero,
.fb-showcase-slides,
.fb-showcase-slide {
  min-width: 0;
  min-height: 0;
}

.fb-showcase-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23,32,51,.10);
  border-radius: 12px;
  background: #111827;
  box-shadow: 0 10px 28px rgba(23,32,51,.08);
}

.fb-showcase-slides {
  position: absolute;
  inset: 0;
}

.fb-showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .36s ease, visibility .36s ease;
}

.fb-showcase-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fb-showcase-slide .fb-card-link {
  z-index: 3;
}

.fb-showcase-media,
.fb-showcase-media img,
.fb-showcase-media .fb-image-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fb-showcase-media img {
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}

.fb-showcase-slide:hover .fb-showcase-media img {
  transform: scale(1.025);
}

.fb-showcase-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,rgba(7,12,20,.72) 0%,rgba(7,12,20,.54) 40%,rgba(7,12,20,.16) 72%,rgba(7,12,20,.05) 100%),
    linear-gradient(0deg,rgba(7,12,20,.55) 0%,transparent 58%);
}

.fb-showcase-copy {
  position: absolute;
  z-index: 4;
  left: 42px;
  right: 32%;
  bottom: 32px;
  color: #fff;
}

.fb-showcase-copy .fb-category-badge {
  padding: 7px 13px;
  border-radius: 999px;
  background: #f1dcc0;
  color: #523c28;
  font-size: 11px;
  letter-spacing: .025em;
  font-weight: 700 !important;
  box-shadow: 0 3px 12px rgba(0,0,0,.10);
}

.fb-showcase-title {
  max-width: 760px;
  margin: 13px 0 8px;
  color: #fff;
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(31px,3vw,50px);
  font-weight: 700 !important;
  line-height: .99;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0,0,0,.22);
}

.fb-showcase-excerpt {
  max-width: 700px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.94);
  font-size: 15px;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0,0,0,.30);
}

.fb-showcase-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.95);
  font-size: 12px;
}

.fb-showcase-meta > span:not(.fb-showcase-meta-divider) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fb-showcase-meta .fb-icon {
  width: 15px;
  height: 15px;
}

.fb-showcase-meta-divider {
  width: 1px;
  height: 15px;
  background: rgba(255,255,255,.55);
}

.fb-showcase-control {
  position: absolute;
  z-index: 7;
  top: 50%;
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(8,12,18,.62);
  color: #fff;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.fb-showcase-control:hover,
.fb-showcase-control:focus-visible {
  background: rgba(8,12,18,.82);
  border-color: rgba(255,255,255,.62);
}

.fb-showcase-control:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.fb-showcase-control--prev {
  left: 18px;
}

.fb-showcase-control--next {
  right: 18px;
}

.fb-showcase-control .fb-icon {
  width: 21px;
  height: 21px;
}

.fb-showcase-control .fb-icon-arrow-left {
  transform: rotate(180deg);
}

.fb-showcase-dots {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
}

.fb-showcase-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  transition: width .2s ease, background-color .2s ease;
}

.fb-showcase-dot.is-active {
  width: 22px;
  background: #fff;
}

.fb-showcase-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.fb-showcase-rail {
  display: grid;
  grid-template-rows: repeat(3,minmax(0,1fr));
  gap: 15px;
  min-width: 0;
  min-height: 0;
}

.fb-showcase-rail-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(128px,39%) minmax(0,1fr);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(23,32,51,.10);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(23,32,51,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.fb-showcase-rail-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23,32,51,.16);
  box-shadow: 0 12px 30px rgba(23,32,51,.09);
}

.fb-showcase-rail-card .fb-card-link {
  z-index: 3;
}

.fb-showcase-rail-media {
  height: 100%;
  min-height: 0;
  border-radius: 0 !important;
}

.fb-showcase-rail-media img,
.fb-showcase-rail-media .fb-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}

.fb-showcase-rail-card:hover .fb-showcase-rail-media img {
  transform: scale(1.04);
}

.fb-showcase-rail-body {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px 13px 10px;
  pointer-events: none;
}

.fb-showcase-rail-body .fb-category-badge {
  align-self: flex-start !important;
  width: auto !important;
  max-width: max-content !important;
  padding: 5px 9px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: #80664f;
  color: #fff;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .045em;
  font-weight: 700 !important;
  pointer-events: auto;
}

.fb-showcase-rail-card--2 .fb-category-badge {
  background: #527649;
}

.fb-showcase-rail-card--3 .fb-category-badge {
  background: #c45f42;
}

.fb-showcase-rail-body h3 {
  margin: 0 0 7px;
  color: #172033;
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(16px,1.2vw,20px);
  font-weight: 700 !important;
  line-height: 1.1;
  letter-spacing: -.025em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.fb-showcase-rail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.fb-showcase-rail-date {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  color: #68748a;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.fb-showcase-rail-date .fb-icon {
  width: 14px;
  height: 14px;
}

.fb-showcase-rail-arrow {
  width: 29px;
  height: 29px;
  display: inline-flex;
  flex: 0 0 29px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6c0a5;
  border-radius: 50%;
  color: #8c6743;
  background: #fff;
}

.fb-showcase-rail-arrow .fb-icon {
  width: 16px;
  height: 16px;
}

.fb-home-feed {
  margin-top: 0;
}

.fb-home-feed--no-sidebar {
  grid-template-columns: 1fr;
}

.fb-latest-grid--remaining {
  grid-template-columns: repeat(2,minmax(0,1fr));
}

@media (max-width:1180px) {
  .fb-home-showcase {
    grid-template-columns: minmax(0,1.65fr) minmax(330px,1fr);
    height: 455px;
  }

  .fb-showcase-copy {
    left: 34px;
    right: 24%;
    bottom: 28px;
  }

  .fb-showcase-title {
    font-size: clamp(29px,3.4vw,43px);
  }

  .fb-showcase-rail-card {
    grid-template-columns: minmax(118px,38%) minmax(0,1fr);
  }

  .fb-showcase-rail-body h3 {
    font-size: 16px;
  }
}

@media (max-width:980px) {
  .fb-home-showcase {
    grid-template-columns: 1fr;
    height: auto;
  }

  .fb-showcase-hero {
    height: 430px;
  }

  .fb-showcase-copy {
    right: 26%;
  }

  .fb-showcase-rail {
    grid-template-columns: repeat(3,minmax(0,1fr));
    grid-template-rows: none;
  }

  .fb-showcase-rail-card {
    display: block;
  }

  .fb-showcase-rail-media {
    height: 145px;
  }

  .fb-showcase-rail-body {
    min-height: 160px;
    padding: 13px;
  }

  .fb-showcase-rail-body h3 {
    font-size: 17px;
  }

  .fb-home-feed {
    grid-template-columns: 1fr;
  }
}

@media (max-width:720px) {
  .fb-home-magazine-section {
    padding-top: 12px;
  }

  .fb-home-showcase {
    margin-bottom: 22px;
  }

  .fb-showcase-hero {
    height: 390px;
  }

  .fb-showcase-copy {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  .fb-showcase-title {
    margin-top: 10px;
    font-size: clamp(28px,8.5vw,40px);
    line-height: 1.02;
  }

  .fb-showcase-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
  }

  .fb-showcase-control {
    top: 43%;
    width: 38px;
    height: 38px;
  }

  .fb-showcase-control--prev {
    left: 12px;
  }

  .fb-showcase-control--next {
    right: 12px;
  }

  .fb-showcase-rail {
    grid-template-columns: 1fr;
  }

  .fb-showcase-rail-card {
    display: grid;
    grid-template-columns: 37% minmax(0,1fr);
    min-height: 130px;
  }

  .fb-showcase-rail-media {
    height: 100%;
  }

  .fb-showcase-rail-body {
    min-height: 130px;
  }

  .fb-latest-grid--remaining {
    grid-template-columns: 1fr;
  }
}

@media (max-width:460px) {
  .fb-showcase-hero {
    height: 355px;
  }

  .fb-showcase-copy {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .fb-showcase-title {
    font-size: 28px;
  }

  .fb-showcase-excerpt {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .fb-showcase-meta {
    gap: 7px;
    font-size: 10px;
  }

  .fb-showcase-dots {
    bottom: 12px;
  }

  .fb-showcase-rail-card {
    grid-template-columns: 40% minmax(0,1fr);
  }

  .fb-showcase-rail-body h3 {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fb-showcase-slide,
  .fb-showcase-media img,
  .fb-showcase-rail-card {
    transition: none !important;
  }
}

.fb-showcase-rail--1 {
  grid-template-rows: minmax(0,1fr);
}

.fb-showcase-rail--2 {
  grid-template-rows: repeat(2,minmax(0,1fr));
}

.fb-showcase-rail--3 {
  grid-template-rows: repeat(3,minmax(0,1fr));
}

@media (max-width:980px) {
  .fb-showcase-rail--1,
  .fb-showcase-rail--2,
  .fb-showcase-rail--3 {
    grid-template-rows: none;
  }
}

.fb-showcase-copy {
  pointer-events: none;
}

.fb-showcase-copy .fb-category-badge {
  pointer-events: auto;
}

@media (max-width:980px) {
  .fb-showcase-rail--1 {
    grid-template-columns: 1fr;
  }

  .fb-showcase-rail--2 {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .fb-showcase-rail--3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media (max-width:720px) {
  .fb-showcase-rail--1,
  .fb-showcase-rail--2,
  .fb-showcase-rail--3 {
    grid-template-columns: 1fr;
  }
}

/* FeedBuzz 1.0.43: keep the homepage showcase beside the existing sidebar. */
.fb-home-feed > .fb-content-column {
  min-width: 0;
}

.fb-home-feed .fb-home-showcase {
  grid-template-columns: minmax(0,1.85fr) minmax(285px,.95fr);
  gap: 15px;
  width: 100%;
  height: 440px;
  margin: 0 0 28px;
}

.fb-home-feed .fb-home-showcase--single {
  grid-template-columns: 1fr;
}

.fb-home-feed .fb-showcase-copy {
  left: 30px;
  right: 28px;
  bottom: 28px;
  font-family: var(--fb-font);
}

.fb-home-feed .fb-showcase-copy .fb-category-badge,
.fb-home-feed .fb-showcase-rail-body .fb-category-badge {
  font-family: var(--fb-font);
  font-size: 10px;
  font-weight: 400 !important;
  letter-spacing: .08em;
}

.fb-home-feed .fb-showcase-copy .fb-category-badge {
  padding: 7px 10px;
}

.fb-home-feed .fb-showcase-title {
  max-width: 620px;
  margin: 12px 0 9px;
  font-family: var(--fb-font);
  font-size: clamp(25px,2.15vw,34px);
  font-weight: var(--fb-heading-weight) !important;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.fb-home-feed .fb-showcase-excerpt {
  max-width: 600px;
  margin-bottom: 13px;
  font-family: var(--fb-font);
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 1.55;
}

.fb-home-feed .fb-showcase-meta {
  font-family: var(--fb-font);
  font-size: 12px;
  font-weight: 400 !important;
}

.fb-home-feed .fb-showcase-rail-card {
  grid-template-columns: minmax(105px,38%) minmax(0,1fr);
}

.fb-home-feed .fb-showcase-rail-body {
  padding: 11px 12px 10px;
  font-family: var(--fb-font);
}

.fb-home-feed .fb-showcase-rail-body .fb-category-badge {
  padding: 6px 8px;
  margin-bottom: 7px;
}

.fb-home-feed .fb-showcase-rail-body h3 {
  margin: 0 0 7px;
  font-family: var(--fb-font);
  font-size: 15px;
  font-weight: var(--fb-heading-weight) !important;
  line-height: 1.22;
  letter-spacing: -.015em;
}

.fb-home-feed .fb-showcase-rail-date {
  font-family: var(--fb-font);
  font-size: 11px;
  font-weight: 400 !important;
}

@media (max-width:1180px) and (min-width:981px) {
  .fb-home-feed .fb-home-showcase {
    grid-template-columns: minmax(0,1.7fr) minmax(245px,1fr);
    height: 420px;
  }

  .fb-home-feed .fb-showcase-copy {
    left: 25px;
    right: 22px;
    bottom: 24px;
  }

  .fb-home-feed .fb-showcase-title {
    font-size: clamp(23px,2.35vw,30px);
  }

  .fb-home-feed .fb-showcase-excerpt {
    font-size: 13px;
  }

  .fb-home-feed .fb-showcase-rail-card {
    grid-template-columns: minmax(90px,37%) minmax(0,1fr);
  }

  .fb-home-feed .fb-showcase-rail-body h3 {
    font-size: 14px;
  }

  .fb-home-feed .fb-showcase-rail-date {
    font-size: 10px;
  }
}

@media (max-width:980px) {
  .fb-home-feed .fb-home-showcase {
    grid-template-columns: 1fr;
    height: auto;
  }

  .fb-home-feed .fb-showcase-hero {
    height: 430px;
  }

  .fb-home-feed .fb-showcase-rail {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-template-rows: none;
  }

  .fb-home-feed .fb-showcase-rail-card {
    display: block;
  }

  .fb-home-feed .fb-showcase-rail-media {
    height: 145px;
  }
}

@media (max-width:720px) {
  .fb-home-feed .fb-showcase-hero {
    height: 390px;
  }

  .fb-home-feed .fb-showcase-copy {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  .fb-home-feed .fb-showcase-title {
    font-size: clamp(24px,7.5vw,32px);
  }

  .fb-home-feed .fb-showcase-rail {
    grid-template-columns: 1fr;
  }

  .fb-home-feed .fb-showcase-rail-card {
    display: grid;
    grid-template-columns: 37% minmax(0,1fr);
    min-height: 130px;
  }

  .fb-home-feed .fb-showcase-rail-media {
    height: 100%;
  }
}


/* FeedBuzz 1.0.45: narrower homepage sidebar and two-story showcase rail. */
@media (min-width:981px) {
  .fb-home-feed:not(.fb-home-feed--no-sidebar) {
    grid-template-columns: minmax(0,1fr) 320px;
  }
}

/* FeedBuzz 1.0.46: rebalance the two-card homepage showcase rail. */
@media (min-width:1181px) {
  .fb-home-feed .fb-home-showcase:not(.fb-home-showcase--single) {
    /* 10px less hero width than 1.0.45; the recovered space goes to the rail. */
    grid-template-columns: calc(66.0714% - 20px) minmax(295px,1fr);
  }
}

@media (min-width:981px) and (max-width:1180px) {
  .fb-home-feed .fb-home-showcase:not(.fb-home-showcase--single) {
    /* Preserve the 1.0.45 breakpoint ratio while moving 10px from hero to rail. */
    grid-template-columns: calc(62.963% - 19.45px) minmax(255px,1fr);
  }
}

@media (min-width:981px) {
  .fb-home-feed .fb-showcase-rail--2 {
    gap: 14px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-card {
    grid-template-columns: minmax(135px,44%) minmax(0,1fr);
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-media {
    min-width: 0;
    overflow: hidden;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-media img {
    object-position: center center;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body {
    display: grid;
    grid-template-rows: auto minmax(0,1fr) auto;
    align-items: stretch;
    gap: 8px;
    padding: 14px 14px 12px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body .fb-category-badge {
    max-width: 100% !important;
    margin: 0;
    padding: 6px 9px;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body h3 {
    align-self: center;
    margin: 0;
    font-size: 14px;
    line-height: 1.28;
    letter-spacing: -.01em;
    overflow-wrap: break-word;
    -webkit-line-clamp: 4;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-footer {
    align-self: end;
    gap: 8px;
    margin: 0;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-date {
    gap: 5px;
    font-size: 10.5px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-arrow {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

@media (min-width:981px) and (max-width:1180px) {
  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-card {
    grid-template-columns: minmax(110px,42%) minmax(0,1fr);
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body {
    gap: 7px;
    padding: 12px 11px 10px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body .fb-category-badge {
    padding: 5px 7px;
    font-size: 8px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body h3 {
    font-size: 13px;
    line-height: 1.25;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-date {
    font-size: 9.5px;
  }
}


/* FeedBuzz 1.0.47: homepage showcase rebuilt to match the requested bold editorial slider design. */
@media (min-width:981px) {
  .fb-home-feed .fb-home-showcase:not(.fb-home-showcase--single) {
    grid-template-columns: minmax(0, 2.12fr) minmax(265px, .88fr);
    gap: 14px;
    height: 390px;
    align-items: stretch;
  }

  .fb-home-feed .fb-showcase-hero {
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(9, 18, 34, .08);
  }

  .fb-home-feed .fb-showcase-shade {
    background: linear-gradient(180deg, rgba(7, 12, 20, .05) 0%, rgba(7, 12, 20, .18) 32%, rgba(7, 12, 20, .82) 100%);
  }

  .fb-home-feed .fb-showcase-copy {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .fb-home-feed .fb-showcase-copy .fb-category-badge {
    padding: 8px 12px;
    border-radius: 9px;
    background: #ff2f61;
    color: #fff;
    font-size: 11px;
    font-weight: 700 !important;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
    box-shadow: none;
  }

  .fb-home-feed .fb-showcase-title {
    max-width: 88%;
    margin: 14px 0 10px;
    color: #fff;
    font-family: var(--fb-font);
    font-size: clamp(25px, 2.4vw, 31px);
    font-weight: 800 !important;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: pretty;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .32);
  }

  .fb-home-feed .fb-showcase-excerpt {
    max-width: 85%;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.45;
  }

  .fb-home-feed .fb-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: uppercase;
  }

  .fb-home-feed .fb-showcase-meta {
    display: none;
  }

  .fb-home-feed .fb-showcase-control {
    width: 40px;
    height: 40px;
    border: 0;
    background: rgba(4, 13, 30, .78);
    top: 46%;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
  }

  .fb-home-feed .fb-showcase-control--prev {
    left: 14px;
  }

  .fb-home-feed .fb-showcase-control--next {
    right: 14px;
  }

  .fb-home-feed .fb-showcase-dots {
    left: auto;
    right: 18px;
    bottom: 16px;
    transform: none;
    gap: 7px;
  }

  .fb-home-feed .fb-showcase-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.72);
  }

  .fb-home-feed .fb-showcase-dot.is-active {
    width: 20px;
    background: #ff2f61;
  }

  .fb-home-feed .fb-showcase-rail--2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-card {
    display: block;
    min-height: 0;
    border: 0;
    border-radius: 10px;
    background: #0e1626;
    box-shadow: 0 10px 24px rgba(9, 18, 34, .08);
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-media,
  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-media img,
  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-media .fb-image-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px !important;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-media img {
    object-fit: cover;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7,12,20,.02) 0%, rgba(7,12,20,.16) 38%, rgba(7,12,20,.85) 100%);
    pointer-events: none;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body {
    position: absolute;
    inset: auto 14px 12px 14px;
    z-index: 2;
    display: block;
    padding: 0;
    color: #fff;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body .fb-category-badge {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #6d41ff;
    color: #fff;
    font-size: 10px;
    font-weight: 700 !important;
    letter-spacing: .01em;
    text-transform: uppercase;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-card--2 .fb-category-badge {
    background: #12c97d;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body h3 {
    margin: 0;
    color: #fff;
    font-family: var(--fb-font);
    font-size: 13px;
    font-weight: 700 !important;
    line-height: 1.34;
    letter-spacing: -.02em;
    -webkit-line-clamp: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-footer {
    display: none;
  }
}

@media (min-width:981px) and (max-width:1180px) {
  .fb-home-feed .fb-home-showcase:not(.fb-home-showcase--single) {
    grid-template-columns: minmax(0, 1.96fr) minmax(230px, .84fr);
    height: 360px;
  }

  .fb-home-feed .fb-showcase-title {
    font-size: clamp(22px, 2.2vw, 27px);
  }

  .fb-home-feed .fb-showcase-excerpt {
    max-width: 92%;
    font-size: 12px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body {
    inset: auto 11px 11px 11px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body .fb-category-badge {
    margin-bottom: 8px;
    padding: 5px 8px;
    font-size: 9px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body h3 {
    font-size: 12px;
    line-height: 1.3;
  }
}

@media (max-width:980px) {
  .fb-home-feed .fb-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }
}


/* FeedBuzz 1.0.48: +30px right showcase rail and unified theme typography. */
@media (min-width:1181px) {
  .fb-home-feed .fb-home-showcase:not(.fb-home-showcase--single) {
    grid-template-columns: minmax(0, 1fr) calc(29.3333% + 26px);
  }
}

@media (min-width:981px) and (max-width:1180px) {
  .fb-home-feed .fb-home-showcase:not(.fb-home-showcase--single) {
    grid-template-columns: minmax(0, 1fr) calc(30% + 26px);
  }
}

@media (min-width:981px) {
  .fb-home-feed .fb-showcase-copy,
  .fb-home-feed .fb-showcase-rail-body,
  .fb-home-feed .fb-showcase-copy .fb-category-badge,
  .fb-home-feed .fb-showcase-rail-body .fb-category-badge,
  .fb-home-feed .fb-showcase-title,
  .fb-home-feed .fb-showcase-excerpt,
  .fb-home-feed .fb-showcase-cta,
  .fb-home-feed .fb-showcase-rail-body h3 {
    font-family: var(--fb-font) !important;
  }

  .fb-home-feed .fb-showcase-copy .fb-category-badge,
  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body .fb-category-badge {
    font-size: 10px;
    font-weight: 700 !important;
    line-height: 1;
    letter-spacing: .04em;
  }

  .fb-home-feed .fb-showcase-title {
    max-width: 88%;
    margin: 12px 0 8px;
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 500 !important;
    line-height: 1.22;
    letter-spacing: -.015em;
  }

  .fb-home-feed .fb-showcase-excerpt {
    max-width: 82%;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 400 !important;
    line-height: 1.5;
  }

  .fb-home-feed .fb-showcase-cta {
    font-size: 12px;
    font-weight: 500 !important;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body h3 {
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 1.25;
    letter-spacing: -.015em;
    -webkit-line-clamp: 3;
  }
}

@media (min-width:981px) and (max-width:1180px) {
  .fb-home-feed .fb-showcase-title {
    font-size: clamp(19px, 2vw, 23px);
  }

  .fb-home-feed .fb-showcase-excerpt {
    font-size: 13px;
  }

  .fb-home-feed .fb-showcase-rail--2 .fb-showcase-rail-body h3 {
    font-size: 15px;
  }
}


/* FeedBuzz 1.0.49: restore the full showcase width after the 1.0.48 rail-width experiment. */
@media (min-width:1181px) {
  .fb-home-feed .fb-home-showcase:not(.fb-home-showcase--single) {
    grid-template-columns: minmax(0, 2.12fr) minmax(265px, .88fr);
  }
}

@media (min-width:981px) and (max-width:1180px) {
  .fb-home-feed .fb-home-showcase:not(.fb-home-showcase--single) {
    grid-template-columns: minmax(0, 1.96fr) minmax(230px, .84fr);
  }
}

/* FeedBuzz 1.0.53: clean, ordered homepage ideas section inspired by the supplied references. */
.fb-home-ideas {
  margin-top: 12px;
}

.fb-home-ideas-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin: 0 0 24px;
}

.fb-home-ideas-intro {
  min-width: 0;
  max-width: 760px;
}

.fb-home-ideas-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--fb-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.fb-home-ideas-kicker::after {
  content: '';
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--fb-accent);
}

.fb-home-ideas-head h2 {
  margin: 0 0 7px;
  color: var(--fb-ink);
  font-family: var(--fb-font);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: var(--fb-heading-weight);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.fb-home-ideas-head p {
  margin: 0;
  color: var(--fb-muted);
  font-size: 13px;
  line-height: 1.55;
}

.fb-home-ideas-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--fb-border);
  border-radius: 999px;
  background: var(--fb-surface);
  color: var(--fb-ink);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.fb-home-ideas-link:hover,
.fb-home-ideas-link:focus-visible {
  border-color: color-mix(in srgb, var(--fb-accent) 42%, var(--fb-border));
  box-shadow: 0 8px 20px rgba(39,48,76,.07);
  transform: translateY(-1px);
}

.fb-home-ideas-link:focus-visible {
  outline: 2px solid var(--fb-secondary);
  outline-offset: 3px;
}

.fb-latest-grid--ideas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.fb-latest-grid--ideas .fb-story-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border: 1px solid var(--fb-border);
  border-radius: 14px;
  background: var(--fb-surface);
  box-shadow: 0 10px 28px rgba(39,48,76,.055);
  overflow: hidden;
  transform: none;
}

.fb-latest-grid--ideas .fb-story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(39,48,76,.09);
}

.fb-latest-grid--ideas .fb-story-card > .fb-post-media {
  height: 205px;
}

.fb-latest-grid--ideas .fb-story-card .fb-post-media img {
  transition: transform .4s ease;
}

.fb-latest-grid--ideas .fb-story-card:hover .fb-post-media img {
  transform: scale(1.025);
}

.fb-latest-grid--ideas .fb-story-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 17px 18px 16px;
}

/* Keep the established FeedBuzz typography intact. */
.fb-latest-grid--ideas .fb-story-body h3 {
  margin: 12px 0 9px;
}

.fb-latest-grid--ideas .fb-story-body p {
  margin: 0 0 12px;
  color: var(--fb-muted);
}

.fb-latest-grid--ideas .fb-post-meta {
  margin-top: auto;
}

.fb-latest-grid--ideas .fb-story-card--lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr);
  min-height: 330px;
}

.fb-latest-grid--ideas .fb-story-card--lead > .fb-post-media {
  height: 100%;
  min-height: 330px;
}

.fb-latest-grid--ideas .fb-story-card--lead .fb-story-body {
  justify-content: center;
  padding: 24px;
}

.fb-latest-grid--ideas .fb-story-card--lead .fb-story-body p {
  margin-bottom: 18px;
}

.fb-story-body-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.fb-story-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: var(--fb-accent);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .fb-home-ideas-head {
    align-items: flex-start;
  }

  .fb-latest-grid--ideas .fb-story-card--lead {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    min-height: 300px;
  }

  .fb-latest-grid--ideas .fb-story-card--lead > .fb-post-media {
    min-height: 300px;
  }

  .fb-latest-grid--ideas .fb-story-card > .fb-post-media {
    height: 185px;
  }
}

@media (max-width: 980px) {
  .fb-home-ideas-head {
    align-items: flex-start;
  }

  .fb-latest-grid--ideas .fb-story-card--lead {
    grid-template-columns: 1fr;
  }

  .fb-latest-grid--ideas .fb-story-card--lead > .fb-post-media {
    height: 280px;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .fb-home-ideas-head {
    flex-direction: column;
    gap: 14px;
  }

  .fb-home-ideas-link {
    align-self: flex-start;
  }

  .fb-latest-grid--ideas {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fb-latest-grid--ideas .fb-story-card--lead {
    grid-column: auto;
  }

  .fb-latest-grid--ideas .fb-story-card > .fb-post-media,
  .fb-latest-grid--ideas .fb-story-card--lead > .fb-post-media {
    height: 210px;
  }

  .fb-latest-grid--ideas .fb-story-body,
  .fb-latest-grid--ideas .fb-story-card--lead .fb-story-body {
    padding: 16px;
  }

  .fb-story-body-bottom {
    flex-wrap: wrap;
  }
}


/* FeedBuzz 1.0.54: exact 4-card / 3-card homepage ideas layout from the supplied reference. */
.fb-home-ideas {
  margin-top: 14px;
}

.fb-home-ideas-head {
  align-items: center;
  margin-bottom: 28px;
}

.fb-home-ideas-intro {
  max-width: 820px;
}

.fb-home-ideas-kicker {
  margin-bottom: 9px;
  font-size: 11px;
  letter-spacing: .20em;
}

.fb-home-ideas-head h2 {
  margin-bottom: 8px;
  font-size: clamp(29px, 2.45vw, 38px);
}

.fb-home-ideas-head p {
  font-size: 14px;
  line-height: 1.55;
}

.fb-home-ideas-link {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 13px;
}

.fb-latest-grid--ideas {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px 20px;
  align-items: stretch;
}

.fb-latest-grid--ideas .fb-story-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(23,32,51,.09);
  background: #fff;
  box-shadow: 0 8px 24px rgba(39,48,76,.055);
  overflow: hidden;
}

.fb-latest-grid--ideas .fb-story-card--quarter {
  grid-column: span 3;
}

.fb-latest-grid--ideas .fb-story-card--third {
  grid-column: span 4;
}

.fb-latest-grid--ideas .fb-story-card > .fb-post-media {
  width: 100%;
  height: 190px;
  flex: 0 0 190px;
}

.fb-latest-grid--ideas .fb-story-card--third > .fb-post-media {
  height: 220px;
  flex-basis: 220px;
}

.fb-latest-grid--ideas .fb-story-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 16px 17px 15px;
}

.fb-latest-grid--ideas .fb-story-body .fb-category-badge {
  margin: 0 0 11px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--fb-font);
  font-size: 11px;
  font-weight: 600 !important;
  line-height: 1.1;
  letter-spacing: 0;
}

.fb-latest-grid--ideas .fb-story-body h3 {
  margin: 0 0 9px;
  font-family: var(--fb-font);
  font-size: 16px;
  font-weight: 500 !important;
  line-height: 1.34;
  letter-spacing: -.015em;
}

.fb-latest-grid--ideas .fb-story-card--third .fb-story-body h3 {
  font-size: 17px;
}

.fb-latest-grid--ideas .fb-story-body p {
  display: -webkit-box;
  margin: 0 0 13px;
  overflow: hidden;
  color: var(--fb-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fb-latest-grid--ideas .fb-story-card--third .fb-story-body p {
  -webkit-line-clamp: 2;
}

.fb-latest-grid--ideas .fb-post-meta {
  margin-top: auto;
  color: #7b8499;
  font-size: 11px;
}

.fb-latest-grid--ideas .fb-post-meta .fb-icon {
  width: 14px;
  height: 14px;
}

.fb-latest-grid--ideas .fb-story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(39,48,76,.085);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .fb-latest-grid--ideas {
    gap: 18px 16px;
  }

  .fb-latest-grid--ideas .fb-story-card > .fb-post-media {
    height: 165px;
    flex-basis: 165px;
  }

  .fb-latest-grid--ideas .fb-story-card--third > .fb-post-media {
    height: 195px;
    flex-basis: 195px;
  }

  .fb-latest-grid--ideas .fb-story-body {
    padding: 14px 14px 13px;
  }

  .fb-latest-grid--ideas .fb-story-body h3 {
    font-size: 14px;
  }

  .fb-latest-grid--ideas .fb-story-card--third .fb-story-body h3 {
    font-size: 15px;
  }

  .fb-latest-grid--ideas .fb-story-body p {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .fb-home-ideas-head {
    align-items: flex-start;
  }

  .fb-latest-grid--ideas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .fb-latest-grid--ideas .fb-story-card--quarter,
  .fb-latest-grid--ideas .fb-story-card--third {
    grid-column: auto;
  }

  .fb-latest-grid--ideas .fb-story-card > .fb-post-media,
  .fb-latest-grid--ideas .fb-story-card--third > .fb-post-media {
    height: 200px;
    flex-basis: 200px;
  }
}

@media (max-width: 720px) {
  .fb-home-ideas-head {
    flex-direction: column;
    gap: 14px;
  }

  .fb-latest-grid--ideas {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fb-latest-grid--ideas .fb-story-card > .fb-post-media,
  .fb-latest-grid--ideas .fb-story-card--third > .fb-post-media {
    height: 210px;
    flex-basis: 210px;
  }
}


/* FeedBuzz 1.0.55: lock homepage idea-card text to consistent line counts. */
.fb-latest-grid--ideas .fb-story-body h3,
.fb-latest-grid--ideas .fb-story-card--third .fb-story-body h3 {
  display: -webkit-box;
  height: 2.68em;
  max-height: 2.68em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.fb-latest-grid--ideas .fb-story-body p,
.fb-latest-grid--ideas .fb-story-card--third .fb-story-body p {
  display: -webkit-box;
  height: 4.65em;
  max-height: 4.65em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


/* FeedBuzz 1.0.56: simplify the homepage ideas section to match the latest request. */
.fb-home-ideas-head {
  display: block;
  margin-bottom: 20px;
}

.fb-home-ideas-head h2 {
  margin: 0;
}

.fb-latest-grid--ideas .fb-story-body {
  gap: 0;
}

.fb-latest-grid--ideas .fb-story-body .fb-category-badge {
  margin-bottom: 12px;
}

.fb-latest-grid--ideas .fb-story-body h3,
.fb-latest-grid--ideas .fb-story-card--third .fb-story-body h3 {
  margin: 0 0 12px;
}

.fb-latest-grid--ideas .fb-post-meta {
  margin-top: auto;
}

@media (max-width: 720px) {
  .fb-home-ideas-head {
    margin-bottom: 16px;
  }
}


/* FeedBuzz 1.0.57: restore card descriptions and clamp the upper 4 cards to two lines. */
.fb-latest-grid--ideas .fb-story-body p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--fb-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-box-orient: vertical;
}

.fb-latest-grid--ideas .fb-story-card--quarter .fb-story-body p {
  height: 3.10em;
  max-height: 3.10em;
  -webkit-line-clamp: 2;
}

.fb-latest-grid--ideas .fb-story-card--third .fb-story-body p {
  height: 4.65em;
  max-height: 4.65em;
  -webkit-line-clamp: 3;
}


/* FeedBuzz 1.0.58: remove wrapper edge line and refine the homepage ideas heading. */
html,
body,
.fb-site {
  border: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.fb-site {
  overflow-x: clip;
}

.fb-home-ideas {
  margin-top: 18px;
}

.fb-home-ideas-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.fb-home-ideas-intro {
  max-width: 820px;
}

.fb-home-ideas-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #6f7790;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.fb-home-ideas-kicker::after {
  content: '';
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--fb-accent);
}

.fb-home-ideas-head h2 {
  margin: 0 0 8px;
  color: var(--fb-ink);
  font-family: var(--fb-font);
  font-size: clamp(30px, 2.55vw, 40px);
  font-weight: var(--fb-heading-weight);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.fb-home-ideas-head p {
  margin: 0;
  color: var(--fb-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .fb-home-ideas-head {
    margin-bottom: 18px;
  }

  .fb-home-ideas-head h2 {
    font-size: 30px;
  }

  .fb-home-ideas-head p {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .fb-home-ideas {
    margin-top: 14px;
  }

  .fb-home-ideas-kicker {
    font-size: 11px;
    letter-spacing: .14em;
  }

  .fb-home-ideas-head h2 {
    font-size: 26px;
  }
}


/* FeedBuzz 1.0.59: keep only the main homepage ideas heading. */
.fb-home-ideas-head {
  display: block;
  margin-bottom: 20px;
}

.fb-home-ideas-head h2 {
  margin: 0;
}


/* FeedBuzz 1.0.60: Reading-setting card count and colorful category badges. */
.fb-latest-grid--ideas .fb-category-badge.fb-category-color-1 {
  background: #d81b60;
  color: #fff;
}

.fb-latest-grid--ideas .fb-category-badge.fb-category-color-2 {
  background: #6c5ce7;
  color: #fff;
}

.fb-latest-grid--ideas .fb-category-badge.fb-category-color-3 {
  background: #008f83;
  color: #fff;
}

.fb-latest-grid--ideas .fb-category-badge.fb-category-color-4 {
  background: #d97706;
  color: #fff;
}

.fb-latest-grid--ideas .fb-category-badge.fb-category-color-5 {
  background: #2563eb;
  color: #fff;
}

.fb-latest-grid--ideas .fb-category-badge.fb-category-color-6 {
  background: #5b7f3a;
  color: #fff;
}


/* FeedBuzz 1.0.62: stronger visual pagination. */


.fb-home-pagination--visual {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(23,32,51,.08);
  border-radius: 16px;
  background: linear-gradient(180deg,#fff,#fbfbfd);
  box-shadow: 0 10px 30px rgba(39,48,76,.05);
}

.fb-home-pagination-side {
  display: flex;
  justify-content: flex-start;
}

.fb-home-pagination-side--next {
  justify-content: flex-end;
}

.fb-home-page-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  min-height: 58px;
  padding: 8px 14px;
  border: 1px solid rgba(23,32,51,.10);
  border-radius: 13px;
  background: #fff;
  color: var(--fb-ink);
  box-shadow: 0 6px 20px rgba(39,48,76,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.fb-home-page-button:hover,
.fb-home-page-button:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb,var(--fb-accent) 35%,rgba(23,32,51,.10));
  box-shadow: 0 10px 24px rgba(39,48,76,.08);
}

.fb-home-page-button small,
.fb-home-page-button strong {
  display: block;
}

.fb-home-page-button small {
  margin-bottom: 2px;
  color: var(--fb-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.fb-home-page-button strong {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

.fb-home-page-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb,var(--fb-accent) 10%,#fff);
  color: var(--fb-accent);
  font-size: 18px;
}

.fb-home-page-button--disabled {
  opacity: .38;
  pointer-events: none;
}

.fb-home-page-current {
  min-width: 82px;
  text-align: center;
}

.fb-home-page-current span {
  color: var(--fb-ink);
  font-size: 25px;
  font-weight: 750;
  line-height: 1;
}

.fb-home-page-current small {
  margin-left: 3px;
  color: var(--fb-muted);
  font-size: 12px;
}


@media (max-width: 720px) {
  .fb-home-pagination--visual {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px;
  }

  .fb-home-page-current {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 2px;
  }

  .fb-home-pagination-side,
  .fb-home-pagination-side--next {
    justify-content: stretch;
  }

  .fb-home-page-button {
    width: 100%;
    min-width: 0;
  }
}


/* FeedBuzz 1.0.63: keep Reading count on the ideas grid only and modernize pagination. */


.fb-home-pagination--modern {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(23,32,51,.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,248,252,.96) 100%);
  box-shadow: 0 16px 34px rgba(39,48,76,.06);
}

.fb-home-pagination-panel {
  display: flex;
}

.fb-home-pagination-panel--next {
  justify-content: flex-end;
}

.fb-home-page-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 212px;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(23,32,51,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  color: var(--fb-ink);
  box-shadow: 0 8px 20px rgba(39,48,76,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.fb-home-page-button:hover,
.fb-home-page-button:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--fb-accent) 32%, rgba(23,32,51,.08));
  background: #fff;
  box-shadow: 0 14px 28px rgba(39,48,76,.08);
}

.fb-home-page-copy {
  display: block;
}

.fb-home-page-copy small,
.fb-home-page-copy strong {
  display: block;
}

.fb-home-page-copy small {
  margin-bottom: 2px;
  color: var(--fb-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fb-home-page-copy strong {
  color: var(--fb-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
}

.fb-home-page-icon {
  display: inline-flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fb-accent) 12%, #fff);
  color: var(--fb-accent);
  font-size: 18px;
}

.fb-home-page-button--disabled {
  opacity: .42;
  pointer-events: none;
  box-shadow: none;
}

.fb-home-pagination-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
}

.fb-home-page-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fb-accent) 12%, #fff);
  color: var(--fb-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fb-home-page-current {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  min-width: 86px;
  padding: 0;
  text-align: center;
}

.fb-home-page-current span {
  color: var(--fb-ink);
  font-size: 28px;
  font-weight: 750;
  line-height: 1;
}

.fb-home-page-current small {
  color: var(--fb-muted);
  font-size: 12px;
  font-weight: 600;
}

.fb-home-page-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.fb-home-page-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(23,32,51,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--fb-ink);
  font-size: 13px;
  font-weight: 650;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fb-home-page-pill:hover,
.fb-home-page-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(23,32,51,.18);
  box-shadow: 0 8px 18px rgba(39,48,76,.06);
}

.fb-home-page-pill.is-current {
  border-color: transparent;
  background: var(--fb-accent);
  color: #fff;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--fb-accent) 25%, transparent);
}

@media (max-width: 1100px) {
  .fb-home-pagination--modern {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fb-home-pagination-panel,
  .fb-home-pagination-panel--next {
    justify-content: center;
  }

  .fb-home-pagination-center {
    order: -1;
  }
}


@media (max-width: 640px) {
  .fb-home-pagination--modern {
    padding: 14px;
  }

  .fb-home-page-button {
    width: 100%;
    min-width: 0;
  }

  .fb-home-page-current span {
    font-size: 24px;
  }
}


/* FeedBuzz 1.0.65: remove the visible outer page line and keep the ideas grid count independent. */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

#page::before,
#page::after,
.fb-site::before,
.fb-site::after,
body::before,
body::after {
  display: none !important;
  content: none !important;
}

#page,
#page.fb-site,
.fb-site {
  width: min(100%, var(--fb-container)) !important;
  max-width: var(--fb-container) !important;
  min-height: 100vh !important;
  margin: 0 auto !important;
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  overflow-x: clip !important;
}

.fb-site .fb-main,
.fb-site .fb-content-section,
.fb-site .fb-editor-section,
.fb-site .fb-page-main,
.fb-site .fb-archive-main,
.fb-site .fb-article-page,
.fb-site-header,
.fb-site-footer {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}


/* FeedBuzz 1.0.66: restore clean page edges without the old black frame. */
html,
body {
  background: #ffffff !important;
}

#page,
#page.fb-site,
.fb-site {
  width: min(calc(100% - 12px), var(--fb-container)) !important;
  max-width: var(--fb-container) !important;
  min-height: calc(100vh - 12px) !important;
  margin: 6px auto !important;
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: 0 0 0 1px rgba(23,32,51,.055), 0 8px 26px rgba(39,48,76,.055) !important;
  overflow-x: clip !important;
}

@media (max-width: 720px) {
  #page,
  #page.fb-site,
  .fb-site {
    width: 100% !important;
    min-height: 100vh !important;
    margin: 0 !important;
    box-shadow: none !important;
  }
}


/* FeedBuzz 1.0.72: 2px image gap for homepage ideas cards only. */
.fb-latest-grid--ideas .fb-story-card > .fb-post-media,
.fb-latest-grid--ideas .fb-story-card--third > .fb-post-media {
  box-sizing: border-box;
  padding: 2px 2px 0;
  background: #ffffff;
}

.fb-latest-grid--ideas .fb-story-card > .fb-post-media img,
.fb-latest-grid--ideas .fb-story-card > .fb-post-media .fb-image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}


/* FeedBuzz 1.0.73: tighten all visible spacing to 10px and increase homepage ideas image gap to 3px. */
:root {
  --fb-global-gap: 10px;
}

/* Homepage ideas images: increase the visible inset/gap from 2px to 3px. */
.fb-latest-grid--ideas .fb-story-card > .fb-post-media,
.fb-latest-grid--ideas .fb-story-card--third > .fb-post-media {
  padding: 3px 3px 0 !important;
}

/* Normalize layout gaps between sections, menus, cards, widgets and pagination. */
.fb-content-layout,
.fb-article-layout,
.fb-page-layout,
.fb-archive-layout,
.fb-sidebar-column,
.fb-sidebar,
.fb-widget-stack,
.fb-latest-grid,
.fb-latest-grid--ideas,
.fb-editor-grid,
.fb-archive-grid,
.fb-home-showcase,
.fb-home-pagination--visual,
.fb-home-pagination--modern,
.fb-primary-nav .fb-nav-list,
.post-navigation .nav-links,
.fb-comments-area .comment-list {
  gap: var(--fb-global-gap) !important;
  row-gap: var(--fb-global-gap) !important;
  column-gap: var(--fb-global-gap) !important;
}

/* Visible spacing between stacked homepage/site sections. */
.fb-home-magazine-section > * + *,
.fb-main > .fb-content-section + .fb-content-section,
.fb-content-column > section + section,
.fb-content-column > div + section,
.fb-content-column > section + div,
.fb-sidebar-column > .fb-widget + .fb-widget,
.fb-sidebar > .widget + .widget,
.fb-sidebar > .fb-widget + .fb-widget,
.fb-widget-stack > .widget + .widget,
.fb-widget-stack > .fb-widget + .fb-widget {
  margin-top: 10px !important;
}

/* Keep showcase/list/pagination spacing visually aligned to 10px. */
.fb-home-showcase,
.fb-home-ideas,
.fb-home-pagination--visual,
.fb-home-pagination--modern {
  margin-bottom: 10px !important;
}

/* Keep primary visual containers consistently separated without changing internal typography. */
.fb-site-header .fb-container > * + *,
.fb-header-colormag .fb-container > * + *,
.fb-home-pagination-center > * + * {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .fb-content-layout,
  .fb-article-layout,
  .fb-page-layout,
  .fb-archive-layout,
  .fb-sidebar-column,
  .fb-sidebar,
  .fb-widget-stack,
  .fb-latest-grid,
  .fb-latest-grid--ideas,
  .fb-editor-grid,
  .fb-archive-grid,
  .fb-home-showcase,
  .fb-home-pagination--visual,
  .fb-home-pagination--modern,
  .fb-primary-nav .fb-nav-list,
  .post-navigation .nav-links,
  .fb-comments-area .comment-list {
    gap: 10px !important;
    row-gap: 10px !important;
    column-gap: 10px !important;
  }
}


/* FeedBuzz 1.0.75: reduce the unified structural corner radius from 14px to 7px. */
:root {
  --fb-radius: 7px !important;
}

.fb-story-card,
.fb-editor-card,
.fb-archive-card,
.fb-widget,
.fb-trending-card,
.fb-sidebar .widget,
.fb-widget-stack .widget,
.fb-home-showcase,
.fb-showcase-hero,
.fb-showcase-rail-card,
.fb-home-pagination--visual,
.fb-home-pagination--modern,
.fb-page-article,
.fb-article-card,
.fb-search-form,
.fb-header-search .fb-search-form {
  border-radius: 7px !important;
}

.fb-story-card > .fb-post-media,
.fb-editor-card .fb-post-media,
.fb-archive-card > .fb-post-media,
.fb-showcase-media,
.fb-showcase-rail-media,
.fb-page-featured {
  border-radius: 7px !important;
  overflow: hidden;
}

.fb-story-card > .fb-post-media img,
.fb-editor-card .fb-post-media img,
.fb-archive-card > .fb-post-media img,
.fb-showcase-media img,
.fb-showcase-rail-media img,
.fb-page-featured img,
.fb-latest-grid--ideas .fb-story-card > .fb-post-media img,
.fb-latest-grid--ideas .fb-story-card > .fb-post-media .fb-image-fallback {
  border-radius: 7px !important;
}


/* FeedBuzz 1.0.76: set the shared structural corner radius to 4px. */
:root {
  --fb-radius: 7px !important;
}

.fb-story-card,
.fb-editor-card,
.fb-archive-card,
.fb-widget,
.fb-trending-card,
.fb-sidebar .widget,
.fb-widget-stack .widget,
.fb-home-showcase,
.fb-showcase-hero,
.fb-showcase-rail-card,
.fb-home-pagination--visual,
.fb-home-pagination--modern,
.fb-page-article,
.fb-article-card,
.fb-search-form,
.fb-header-search .fb-search-form {
  border-radius: 7px !important;
}

.fb-story-card > .fb-post-media,
.fb-editor-card .fb-post-media,
.fb-archive-card > .fb-post-media,
.fb-showcase-media,
.fb-showcase-rail-media,
.fb-page-featured {
  border-radius: 7px !important;
  overflow: hidden;
}

.fb-story-card > .fb-post-media img,
.fb-editor-card .fb-post-media img,
.fb-archive-card > .fb-post-media img,
.fb-showcase-media img,
.fb-showcase-rail-media img,
.fb-page-featured img,
.fb-latest-grid--ideas .fb-story-card > .fb-post-media img,
.fb-latest-grid--ideas .fb-story-card > .fb-post-media .fb-image-fallback {
  border-radius: 7px !important;
}
