:root {
  --spc-bg: #f8f7f4;
  --spc-panel: #ffffff;
  --spc-panel-strong: #ffffff;
  --spc-text: #17181c;
  --spc-text-soft: #6a655f;
  --spc-border: #e6e1da;
  --spc-accent: #e60023;
  --spc-accent-deep: #ad081b;
  --spc-accent-soft: #fde8ec;
  --spc-shadow: 0 8px 24px rgba(34, 34, 34, 0.06);
  --spc-shadow-lg: 0 22px 60px rgba(17, 22, 35, 0.18);
  --spc-radius: 18px;
  --spc-radius-sm: 12px;
  --spc-content: 1720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Rubik', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--spc-text);
  background: var(--spc-bg);
}

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

img,
video {
  max-width: 100%;
  display: block;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.spc-main,
.spc-topbar__inner,
.spc-footer__inner {
  width: min(calc(100% - 32px), var(--spc-content));
  margin: 0 auto;
}

.spc-app-shell {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 100vh;
}

.spc-shell {
  min-width: 0;
}

.spc-rail {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #0053E2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.spc-rail__brand,
.spc-rail__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.spc-rail__brand-logo {
  width: 32px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.spc-rail__nav,
.spc-rail__bottom {
  display: grid;
  gap: 18px;
}

.spc-rail__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.spc-rail__icon.is-active,
.spc-rail__icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.spc-rail__icon--button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.spc-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 247, 244, 0.94);
  border-bottom: 1px solid rgba(230, 225, 218, 0.9);
}

.spc-topbar__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 88px;
}

.spc-brand {
  display: none; /* Hide topbar logo on desktop */
  align-items: center;
  gap: 10px;
}

.spc-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.spc-brand__logo {
  display: block;
  width: 154px;
  max-width: 100%;
  height: auto;
}

.spc-filter-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(221, 225, 232, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--spc-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.spc-filter-toggle:hover {
  background: rgba(255, 255, 255, 1);
}

.spc-filter-toggle svg,
.spc-filter-drawer__close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.spc-topbar__search {
  position: relative;
  width: 100%;
}

.spc-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--spc-text-soft);
  display: inline-flex;
}

.spc-search-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.spc-topbar__search input {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 18px 14px 48px;
  font: inherit;
  font-size: 1.15rem;
  background: #e8e4de;
  color: var(--spc-text);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.spc-topbar__search input::placeholder {
  color: var(--spc-text-soft);
}

.spc-topbar__search input:hover,
.spc-topbar__search input:focus {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  outline: none;
}

.spc-topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.spc-topbar__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--spc-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.spc-topbar__icon:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--spc-text);
}

.spc-topbar__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.spc-user-pill {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f6d7a8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.spc-main {
  padding-block: 18px 48px;
}

.spc-hero,
.spc-profile,
.spc-page,
.spc-section,
.spc-single-layout {
  margin-top: 18px;
}

.spc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 20px;
}

.spc-hero__copy,
.spc-hero__meta,
.spc-profile,
.spc-page,
.spc-sticky-panel,
.spc-comments,
.spc-single-layout__main {
  background: #fff;
  border: 1px solid var(--spc-border);
  box-shadow: var(--spc-shadow);
}

.spc-hero__copy,
.spc-hero__meta,
.spc-profile,
.spc-page,
.spc-comments,
.spc-single-layout__main,
.spc-sticky-panel {
  border-radius: 24px;
}

.spc-hero__copy {
  padding: 32px;
}

.spc-eyebrow {
  margin: 0 0 12px;
  color: var(--spc-accent-deep);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spc-hero h1,
.spc-section__header h1,
.spc-section__header h2,
.spc-profile h1,
.spc-single-header h1 {
  margin: 0;
  line-height: 1.04;
}

.spc-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 12ch;
}

.spc-hero p:last-child,
.spc-section__header p,
.spc-profile__body p,
.spc-card__excerpt,
.spc-single-content,
.spc-comment-preview-body,
.spc-generic-card p {
  color: var(--spc-text-soft);
  line-height: 1.6;
}

.spc-hero__meta {
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.spc-hero__meta div {
  padding: 16px 18px;
  border-radius: var(--spc-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(244,245,247,0.98));
  border: 1px solid var(--spc-border);
}

.spc-hero__meta strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.spc-section,
.spc-page {
  padding: 0;
}

.spc-feed-section {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.spc-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.spc-section__header p {
  margin: 0;
  max-width: 58ch;
}

.spc-collections {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.spc-collections::-webkit-scrollbar {
  height: 6px;
}
.spc-collections::-webkit-scrollbar-track {
  background: transparent;
}
.spc-collections::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.spc-collection-card {
  flex-shrink: 0;
  width: 180px;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--spc-border);
  scroll-snap-align: start;
  text-align: center;
}

.spc-collection-card__label {
  color: var(--spc-accent-deep);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.spc-collection-card strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--spc-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spc-collection-card > span {
  font-size: 0.72rem;
  color: var(--spc-text-soft);
}

.spc-filterbar {
  margin-bottom: 22px;
}

.spc-filterbar--drawer {
  margin-bottom: 0;
}

.spc-filterbar__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(220px, 1.4fr) auto;
  gap: 12px;
  align-items: end;
  padding: 0 0 2px;
}

.spc-filter {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--spc-text-soft);
}

.spc-filter span {
  display: none; /* Hide filter labels */
}

.spc-filter select,
.spc-filter input {
  width: 100%;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid var(--spc-border);
  background: #fff;
  padding: 0 12px;
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--spc-text);
}

.spc-filterbar__actions {
  display: inline-flex;
  gap: 10px;
}

.spc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--spc-border);
  background: #fff;
  font-size: 0.82rem;
  color: var(--spc-text);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.spc-button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--spc-accent), #ff7b52);
  color: #fff;
}

.spc-masonry-grid {
  columns: 6 220px;
  column-gap: 16px;
  width: 100%;
}

.spc-card {
  break-inside: avoid;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: none;
  border: 0;
}

.spc-card--compact {
  margin-bottom: 12px;
}

.spc-card__media {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  aspect-ratio: 5 / 7;
  background: #ece8e1;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
}

.spc-card__media img,
.spc-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spc-card__badge,
.spc-card__play,
.spc-card__placeholder {
  position: absolute;
}

.spc-card__badge {
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(60, 57, 54, 0.82);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.spc-card__play {
  right: 14px;
  bottom: 14px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 20px rgba(17,22,35,0.14);
}

.spc-card__play svg,
.spc-modal__close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.spc-card__placeholder {
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--spc-text-soft);
  font-weight: 800;
}

.spc-card__body {
  padding: 8px 2px 0;
}

.spc-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
}

.spc-profile__avatar {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  font-size: 1.5rem;
}

.spc-card__title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.spc-single-meta,
.spc-profile__stats,
.spc-card__stats,
.spc-comment-preview-meta,
.spc-footer__inner p {
  color: var(--spc-text-soft);
  font-size: 0.9rem;
}

.spc-card__excerpt {
  margin: 14px 0;
  font-size: 0.94rem;
}

.spc-card__stats,
.spc-single-meta,
.spc-profile__stats,
.spc-single-stats,
.spc-modal__comments-head,
.spc-comment-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.spc-profile__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4d7a6;
  color: #533b1f;
  font-weight: 800;
}

.spc-card__footer {
  display: grid;
  gap: 6px;
}

.spc-card__stats {
  gap: 8px;
}

.spc-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--spc-text-soft);
}

.spc-card__stat svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex: 0 0 auto;
}

.spc-card__stat em {
  font-style: normal;
}

.spc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
}

.spc-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f4efea;
  color: #6a655f;
  font-size: 10px;
  font-weight: 700;
}

.spc-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.spc-single-layout__main {
  padding: 24px;
}

.spc-single-layout__side {
  position: relative;
}

.spc-sticky-panel {
  position: sticky;
  top: 98px;
  padding: 18px;
  border-radius: 24px;
}

.spc-player-shell {
  border-radius: 22px;
  overflow: hidden;
  background: #101215;
  margin-bottom: 20px;
}

.spc-single-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.spc-player-empty,
.spc-modal-loading,
.spc-modal-error,
.spc-empty-state,
.spc-empty,
.spc-comment-empty {
  border-radius: 18px;
  padding: 24px;
  color: var(--spc-text-soft);
  background: rgba(244, 245, 247, 0.92);
  border: 1px dashed var(--spc-border);
}

.spc-single-content {
  font-size: 1rem;
}

.spc-single-content > *:first-child {
  margin-top: 0;
}

.spc-term-groups {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.spc-term-group h2,
.spc-term-group h3,
.spc-sticky-panel h2,
.spc-comments__header h2 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.spc-comments {
  margin-top: 24px;
  padding: 24px;
}

.spc-comment-list,
.spc-comment-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.spc-comment-list li,
.spc-comment-preview {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(244, 245, 247, 0.9);
  border: 1px solid var(--spc-border);
}

.spc-comment-form textarea,
.spc-comment-form input[type="text"],
.spc-comment-form input[type="email"],
.spc-comment-form input[type="url"] {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--spc-border);
  padding: 12px 14px;
  font: inherit;
}

.spc-modal-root {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.spc-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 180;
}

.spc-filter-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 35, 0.48);
  backdrop-filter: blur(6px);
}

.spc-filter-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(88vw, 360px);
  height: 100%;
  overflow: auto;
  background: rgba(251, 251, 252, 0.98);
  border-right: 1px solid rgba(221, 225, 232, 0.9);
  box-shadow: var(--spc-shadow-lg);
  padding: 18px 16px 24px;
}

.spc-filter-drawer__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.spc-filter-drawer__head h2 {
  margin: 0;
  font-size: 1.35rem;
}

.spc-filter-drawer__close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--spc-border);
  border-radius: 12px;
  background: #fff;
  color: var(--spc-text);
  cursor: pointer;
}

.spc-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.spc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 35, 0.62);
  backdrop-filter: blur(8px);
}

.spc-modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: rgba(255,255,255,0.98);
  border-radius: 28px;
  box-shadow: var(--spc-shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
}

.spc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 22, 35, 0.78);
  color: #fff;
  cursor: pointer;
}

.spc-modal__content {
  padding: 28px;
}

.spc-modal__comments {
  margin-top: 24px;
}

.spc-related-list,
.spc-generic-list {
  display: grid;
  gap: 14px;
}

.spc-generic-card {
  border-radius: 18px;
  padding: 18px;
}

.spc-generic-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.spc-footer {
  padding-bottom: 36px;
}

.spc-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(230, 225, 218, 0.8);
  padding-top: 18px;
}

.spc-pagination {
  margin-top: 18px;
}

.spc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  margin-right: 8px;
  border-radius: 12px;
  border: 1px solid var(--spc-border);
  background: rgba(255,255,255,0.92);
}

.spc-pagination .current {
  background: linear-gradient(135deg, var(--spc-accent), #ff7b52);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 1120px) {
  .spc-app-shell {
    grid-template-columns: 1fr;
  }

  .spc-rail {
    display: none;
  }

  .spc-topbar__inner,
  .spc-hero,
  .spc-single-layout,
  .spc-modal__panel {
    grid-template-columns: 1fr;
  }

  .spc-topbar__inner {
    padding-block: 14px;
  }

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


  .spc-sticky-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .spc-main,
  .spc-topbar__inner,
  .spc-footer__inner {
    width: min(calc(100% - 20px), var(--spc-content));
  }

  .spc-topbar__inner {
    gap: 12px;
    grid-template-columns: auto 1fr;
  }

  .spc-brand {
    display: inline-flex !important;
    gap: 8px;
  }

  .spc-brand__logo {
    width: 100px;
  }

  .spc-topbar__search {
    /* Placed in the single row */
  }

  .spc-topbar__search input {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px 10px 42px;
    font-size: 0.92rem;
  }

  .spc-topbar__actions {
    display: none;
  }

  .spc-hero__copy,
  .spc-hero__meta,
  .spc-section,
  .spc-page,
  .spc-profile,
  .spc-comments,
  .spc-single-layout__main,
  .spc-sticky-panel {
    padding: 18px;
  }

  .spc-filterbar__row {
    grid-template-columns: 1fr;
  }

  .spc-filter-toggle {
    display: inline-flex;
  }

  .spc-filterbar:not(.spc-filterbar--drawer) {
    display: none;
  }

  .spc-masonry-grid {
    columns: 2 156px;
    column-gap: 10px;
  }

  .spc-filterbar {
    margin-bottom: 14px;
  }

  .spc-filterbar__row {
    gap: 8px;
  }

  .spc-filterbar--drawer .spc-filterbar__row {
    grid-template-columns: 1fr;
  }

  .spc-filter {
    gap: 6px;
    font-size: 0.76rem;
  }

  .spc-filter select,
  .spc-filter input {
    min-height: 38px;
    border-radius: 12px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .spc-filterbar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .spc-button {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 0.82rem;
  }

  .spc-modal {
    padding: 10px;
  }

  .spc-modal__content {
    padding: 18px;
  }

  .spc-footer__inner {
    flex-direction: column;
  }

  .spc-card {
    margin-bottom: 10px;
    border-radius: 16px;
  }

  .spc-card__badge {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .spc-card__play {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }

  .spc-card__body {
    padding: 8px 2px 0;
  }

  .spc-card__title {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .spc-card__stats {
    font-size: 0.78rem;
  }

  .spc-card__stat {
    font-size: 10px;
    gap: 4px;
  }

  .spc-card__stat svg {
    width: 12px;
    height: 12px;
  }

  .spc-card__excerpt {
    margin: 10px 0;
    font-size: 0.82rem;
  }

  .spc-chip-row {
    gap: 5px;
    margin-top: 0;
  }

  .spc-chip {
    padding: 4px 7px;
    font-size: 9px;
  }
}

/* Card body */
.spc-masonry-grid .spc-card .spc-card__body {
  padding-left: 10px !important;
  padding-right: 10px !important;
  padding-top: 10px !important;
  padding-bottom: 15px !important;
}

/* Modal Media & Compact Details for Portrait Videos */
.spc-modal__media {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65vh; /* Standardized height for vertical video showcase */
  overflow: hidden;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.spc-modal__media video {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  aspect-ratio: auto !important;
  object-fit: contain;
}

.spc-modal__content {
  padding: 20px 24px !important;
}

.spc-modal__content .spc-eyebrow {
  font-size: 0.72rem !important;
  margin-bottom: 4px !important;
}

.spc-modal__content h2 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
}

.spc-modal__content .spc-single-meta {
  font-size: 0.76rem !important;
  color: var(--spc-text-soft) !important;
  margin-bottom: 12px !important;
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
}

.spc-modal__content .spc-single-content {
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  margin-bottom: 16px !important;
}

.spc-modal__content .spc-term-groups {
  margin-top: 14px !important;
  gap: 12px !important;
}

.spc-modal__content .spc-term-group h3 {
  font-size: 0.78rem !important;
  margin-bottom: 6px !important;
}

.spc-modal__content .spc-chip {
  padding: 4px 10px !important;
  font-size: 0.72rem !important;
}

.spc-modal__comments {
  margin-top: 18px !important;
}

.spc-modal__comments-head {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 12px !important;
}

.spc-modal__comments-head h3 {
  font-size: 0.88rem !important;
  margin: 0 !important;
}

.spc-modal__comments-head .spc-button {
  min-height: 32px !important;
  padding: 0 12px !important;
  font-size: 0.76rem !important;
  border-radius: 999px !important;
}

.spc-modal__content .spc-comment-preview {
  padding: 8px 12px !important;
  border-radius: 10px !important;
}

.spc-modal__content .spc-comment-preview-meta {
  font-size: 0.74rem !important;
  margin-bottom: 4px !important;
}

.spc-modal__content .spc-comment-preview-body p {
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.spc-modal__content .spc-comment-empty {
  padding: 12px 14px !important;
  font-size: 0.76rem !important;
  border-radius: 10px !important;
}
