.mini-card-grid {
  --mini-card-grid-columns: 3;
  --mini-card-grid-gap: 18px;
  display: block;
  position: relative;
  width: 100%;
  min-height: 0;
}

.mini-card-grid > .mini-card,
.mini-card-grid > .deck-card,
.mini-card-grid > .take-stack-card,
.mini-card-grid > .take-surface-card,
.mini-card-grid > .community-profile-card {
  display: block;
  width: 100%;
  margin: 0;
  break-inside: avoid;
  page-break-inside: avoid;
}

.mini-card-grid > * {
  position: absolute;
  top: 0;
  left: 0;
}

.mini-card-grid.is-masonry-layouting:not(.is-masonry-ready) > *,
.mini-card-grid.is-feed-resetting > *,
.mini-card-grid > .is-card-pending-layout {
  opacity: 0.01;
}

.mini-card-grid.is-feed-initializing {
  opacity: 0.01;
}

.mini-card-grid.is-masonry-ready > * {
  transition: opacity 120ms ease, transform 160ms ease;
}

@media (max-width: 767px) {
  .mini-card-grid {
    --mini-card-grid-columns: 1;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .mini-card-grid {
    --mini-card-grid-columns: 2;
  }
}

.feed-grid-loader {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(480px, 100%);
  margin: 0 auto 4px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #f0d4ca;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
}

.feed-grid-loader[hidden] {
  display: none !important;
}

.feed-grid-loader__track {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #f4ded6;
}

.feed-grid-loader__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, #da4a28 0%, #f47a50 100%);
  box-shadow: 0 0 14px rgba(218, 74, 40, 0.32);
  animation: feed-grid-loader-slide 1.05s ease-in-out infinite;
}

.feed-grid-loader__message {
  color: #8f3f27;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.feed-grid-loader.is-finishing .feed-grid-loader__bar {
  width: 100%;
  animation: none;
}

@keyframes feed-grid-loader-slide {
  0% {
    transform: translateX(-110%);
  }

  50% {
    transform: translateX(72%);
  }

  100% {
    transform: translateX(250%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feed-grid-loader__bar {
    animation: none;
    width: 100%;
  }
}

.deck-display {
  display: grid;
  gap: 18px;
  width: 100%;
}

.deck-display__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.deck-display__header h2 {
  margin: 4px 0 0;
}

.deck-display__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.deck-display__count,
.deck-display__immersive,
.deck-display-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #e5d6ce;
  border-radius: 999px;
  background: #fff;
  color: #171210;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.deck-display__immersive {
  background: #171210;
  color: #fff;
}

.deck-display-card {
  position: relative;
  display: block;
  width: min(72vw, 420px);
  aspect-ratio: 16 / 10;
  border: 1px solid #eadbd4;
  border-radius: 18px;
  overflow: hidden;
  background: #171210;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 22px 46px rgba(23, 18, 16, 0.16);
}

.deck-display-card__bg,
.deck-display-card__bg img,
.deck-display-card__bg video,
.deck-display-card__bg iframe,
.deck-display-card__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-display-card__bg video,
.deck-display-card__bg iframe {
  border: 0;
  pointer-events: none;
}

.deck-display-card__bg video {
  background: #171210;
}

.deck-display-card--qt .deck-display-card__bg::before,
.deck-display-card--take .deck-display-card__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.deck-display-card--qt .deck-display-card__bg::before {
  background: var(--qt-bg);
  opacity: 0.78;
  transition: opacity 0.18s ease;
}

.deck-display-card--qt.deck-display-card--qt-media.is-revealed .deck-display-card__bg::before {
  opacity: 0;
}

.deck-display-card--take .deck-display-card__bg::before {
  background: var(--take-bg, #da4a28);
  opacity: 0.72;
}

.deck-display-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.deck-display-card__fallback {
  display: grid;
  place-items: center;
  background: #e24a28;
  color: #fff;
  font-size: 44px;
  font-weight: 1000;
}

.deck-display-card--qt .deck-display-card__bg {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48)),
    var(--qt-bg);
  color: var(--qt-color);
}

.deck-display-card__qt-text {
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: center;
  max-width: 88%;
  color: var(--qt-color);
  font-family: var(--qt-font, inherit);
  font-size: clamp(28px, 6.8vw, 58px);
  font-weight: 1000;
  line-height: 0.98;
  text-align: center;
  overflow-wrap: break-word;
  word-break: normal;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
  transition: opacity 0.18s ease;
  text-decoration: none;
}

.deck-display-card__qt-text:hover {
  text-decoration: none;
}

.deck-display-card--qt.deck-display-card--qt-media.is-revealed .deck-display-card__qt-text {
  opacity: 0;
  pointer-events: none;
}

.deck-display-card__meta-pills {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  gap: 6px;
  max-width: calc(100% - 126px);
}

.deck-display-card__meta-pills span {
  min-width: 0;
  max-width: 116px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(226, 74, 40, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(10px);
}

.deck-display-card__poll-shell {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 56px;
  z-index: 4;
  display: grid;
  gap: 8px;
  max-height: calc(100% - 128px);
  padding: 14px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 248, 244, 0.95);
  color: #151515;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.deck-display-card__poll-kicker {
  color: #e24a28;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.deck-display-card__poll-question {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #151515;
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 1000;
  line-height: 0.98;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.deck-display-card__poll-list {
  display: grid;
  gap: 7px;
}

.deck-display-card__poll-option {
  display: block;
  min-width: 0;
  padding: 9px 11px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.05);
  color: #1c1c1c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deck-display-card__copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 4px;
}

.deck-display-card__vote {
  position: absolute;
  left: 12px;
  top: 12px;
  right: auto;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: max-content;
  margin: 0;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transform: none;
}

.deck-display-card__vote.mini-card__battle-vote {
  width: auto;
  margin-top: 0;
}

.deck-display-card__vote .mini-card__battle-btn,
.deck-display-card__vote-btn {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 18px;
  line-height: 1;
}

.deck-display-card__vote .mini-card__battle-btn.is-active {
  border-color: #e24a28;
  background: #e24a28;
  color: #fff;
}

.deck-display-card__vote-total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 0 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
}

.deck-display-card__vote .mini-card__battle-meter-wrap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.deck-display-card--poll .deck-display-card__copy {
  max-width: calc(100% - 36px);
}

.deck-display-card__copy strong,
.deck-display-card__copy small {
  display: block;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deck-display-card__copy strong {
  font-size: 18px;
  line-height: 1.08;
}

.deck-display-card__copy small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.deck-display-carousel {
  position: relative;
  min-height: clamp(230px, 42vw, 340px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.deck-display-carousel__cards {
  position: relative;
  width: 100%;
  height: clamp(210px, 38vw, 310px);
  display: grid;
  place-items: center;
  perspective: 900px;
}

.deck-display-carousel .deck-display-card {
  position: absolute;
  transform: var(--deck-carousel-transform, translateX(0) scale(1) rotateY(0));
  z-index: calc(20 - var(--deck-carousel-distance, 0));
  opacity: var(--deck-carousel-opacity, 1);
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.deck-display-carousel .deck-display-card.is-active {
  pointer-events: auto;
}

.deck-display-carousel__nav,
.deck-display-slideshow__nav {
  position: absolute;
  top: 50%;
  z-index: 30;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font: inherit;
  font-size: 24px;
  font-weight: 1000;
  cursor: pointer;
  transform: translateY(-50%);
}

.deck-display-carousel__nav--prev,
.deck-display-slideshow__nav--prev {
  left: 8px;
}

.deck-display-carousel__nav--next,
.deck-display-slideshow__nav--next {
  right: 8px;
}

.deck-display-carousel__count {
  justify-self: center;
  min-width: 62px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff8f5;
  color: #8a6556;
  font-size: 12px;
  font-weight: 1000;
}

.deck-display-folder {
  display: grid;
  gap: 12px;
}

.deck-display-folder-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid #eadbd4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 18, 16, 0.06);
}

.deck-display-folder-row__thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #f4ebe6;
  color: #8a6556;
  font-weight: 1000;
  text-decoration: none;
}

.deck-display-folder-row__thumb img,
.deck-display-folder-row__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-display-folder-row__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.deck-display-folder-row__copy span,
.deck-display-folder-row__meta {
  color: #8a6556;
  font-size: 12px;
  font-weight: 900;
}

.deck-display-folder-row__copy h3,
.deck-display-folder-row__copy p {
  margin: 0;
}

.deck-display-folder-row__copy h3 a {
  color: #171210;
  text-decoration: none;
}

.deck-display-folder-row__copy p {
  color: #5f524c;
  line-height: 1.35;
}

.deck-display-folder-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deck-display-folder-row__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #171210;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.deck-display-playlist {
  display: grid;
  gap: 14px;
}

.deck-display-playlist__main {
  display: grid;
  place-items: center;
}

.deck-display-playlist__main .deck-display-card {
  width: min(100%, 760px);
}

.deck-display-playlist__rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
}

.deck-display-playlist__thumb {
  flex: 0 0 92px;
  display: grid;
  gap: 4px;
  padding: 4px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff8f5;
  color: #171210;
  cursor: pointer;
  scroll-snap-align: start;
}

.deck-display-playlist__thumb.is-active {
  border-color: #e24a28;
}

.deck-display-playlist__thumb img,
.deck-display-playlist__thumb > span {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: 8px;
  object-fit: cover;
  background: #eadbd4;
  font-weight: 1000;
}

.deck-display-playlist__thumb small {
  color: #8a6556;
  font-size: 10px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deck-display-slideshow {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(290px, 52vw, 560px);
  overflow: hidden;
  border-radius: 18px;
  background: #171210;
}

.deck-display-slideshow__stage {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 50vw, 540px);
}

.deck-display-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.deck-display-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.deck-display-slide .deck-display-card {
  width: min(88vw, 860px);
  aspect-ratio: 16 / 9;
}

.deck-display-slide.is-active .deck-display-card__copy {
  animation: deck-display-title-rise 420ms ease both;
}

.deck-display-slide.is-active .deck-display-card__bg img,
.deck-display-slide.is-active .deck-display-card__fallback {
  animation: deck-display-image-in 520ms ease both;
}

.deck-display-slideshow__progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.deck-display-slideshow__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #e24a28;
  transition: width 220ms ease;
}

.deck-display-stack-inline {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 24px 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.deck-display-stack-inline .deck-display-card {
  flex: 0 0 auto;
  margin-left: -150px;
  scroll-snap-align: center;
  transform: rotate(var(--stack-inline-rotate, -3deg));
}

.deck-display-stack-inline .deck-display-card:first-child {
  margin-left: 0;
}

.deck-display-stack-inline .deck-display-card:nth-child(2) { --stack-inline-rotate: 2deg; }
.deck-display-stack-inline .deck-display-card:nth-child(3) { --stack-inline-rotate: -1deg; }
.deck-display-stack-inline .deck-display-card:nth-child(4) { --stack-inline-rotate: 3deg; }
.deck-display-stack-inline .deck-display-card:nth-child(5) { --stack-inline-rotate: -2deg; }
.deck-display-stack-inline .deck-display-card:nth-child(6n + 1) { --stack-inline-rotate: -3deg; }
.deck-display-stack-inline .deck-display-card:nth-child(6n + 2) { --stack-inline-rotate: 2deg; }
.deck-display-stack-inline .deck-display-card:nth-child(6n + 3) { --stack-inline-rotate: -1deg; }
.deck-display-stack-inline .deck-display-card:nth-child(6n + 4) { --stack-inline-rotate: 3deg; }
.deck-display-stack-inline .deck-display-card:nth-child(6n + 5) { --stack-inline-rotate: -2deg; }
.deck-display-stack-inline .deck-display-card:nth-child(6n) { --stack-inline-rotate: 1deg; }

.deck-display-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  background: #000;
}

.deck-display-modal[hidden] {
  display: none;
}

.deck-display-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #000;
}

.deck-display-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.deck-display-modal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.deck-display-modal__body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.deck-display--fullscreen {
  width: 100vw;
  min-height: 100vh;
  gap: 0;
  padding: 0;
  background: #000;
  color: #fff;
}

.deck-display--fullscreen .deck-display__header {
  position: fixed;
  left: 20px;
  top: 18px;
  z-index: 2;
  max-width: min(520px, calc(100vw - 160px));
  color: #fff;
  pointer-events: none;
}

.deck-display--fullscreen .deck-display__header h2,
.deck-display--fullscreen .full-card-page-section-note {
  color: #fff;
}

.deck-display--fullscreen .deck-display__actions {
  position: fixed;
  right: 18px;
  top: 62px;
  z-index: 2;
  pointer-events: auto;
}

.deck-display--fullscreen .deck-display__actions:empty {
  display: none;
}

.deck-display--fullscreen .deck-display__count {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
}

.deck-display--fullscreen .deck-display-carousel,
.deck-display--fullscreen .deck-display-slideshow,
.deck-display--fullscreen .deck-display-playlist {
  width: 100vw;
  min-height: 100vh;
  border-radius: 0;
  background: #000;
}

.deck-display--fullscreen .deck-display-carousel__cards {
  height: 100vh;
}

.deck-display--fullscreen .deck-display-carousel .deck-display-card {
  width: min(78vw, 1180px);
  aspect-ratio: 16 / 9;
}

.deck-display--fullscreen .deck-display-carousel__nav--prev,
.deck-display--fullscreen .deck-display-slideshow__nav--prev {
  left: 22px;
}

.deck-display--fullscreen .deck-display-carousel__nav--next,
.deck-display--fullscreen .deck-display-slideshow__nav--next {
  right: 22px;
}

.deck-display--fullscreen .deck-display-carousel__count {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
}

.deck-display--fullscreen .deck-display-playlist {
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 92px 0 22px;
}

.deck-display--fullscreen .deck-display-playlist__main {
  min-height: 0;
}

.deck-display--fullscreen .deck-display-playlist__main .deck-display-card {
  width: min(88vw, 1240px);
  max-height: calc(100vh - 190px);
  aspect-ratio: 16 / 9;
}

.deck-display--fullscreen .deck-display-playlist__rail {
  padding: 8px 24px 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.deck-display--fullscreen .deck-display-playlist__thumb {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.deck-display--fullscreen .deck-display-playlist__thumb small {
  color: rgba(255, 255, 255, 0.82);
}

.deck-display--fullscreen .deck-display-slideshow__stage {
  min-height: 100vh;
}

.deck-display--fullscreen .deck-display-slide .deck-display-card {
  width: min(88vw, 1280px);
  max-height: calc(100vh - 90px);
  aspect-ratio: 16 / 9;
}

.deck-display--fullscreen .deck-display-slideshow__progress {
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.deck-display--fullscreen .deck-display-folder {
  height: 100vh;
  min-height: 0;
  padding: 112px 24px 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-content: start;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  background: #000;
}

.deck-display--fullscreen .deck-display-folder-row {
  grid-template-columns: 1fr;
  align-items: stretch;
  position: relative;
  gap: 0;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: #101010;
  color: #fff;
  box-shadow: none;
}

.deck-display--fullscreen .deck-display-folder-row__thumb {
  aspect-ratio: 16 / 12;
  min-height: 240px;
  border-radius: 0;
  background: #171210;
  color: rgba(255, 255, 255, 0.78);
}

.deck-display--fullscreen .deck-display-folder-row__thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}

.deck-display--fullscreen .deck-display-folder-row__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  gap: 6px;
  padding: 18px 18px 62px;
  color: #fff;
}

.deck-display--fullscreen .deck-display-folder-row__copy span,
.deck-display--fullscreen .deck-display-folder-row__meta {
  color: rgba(255, 255, 255, 0.72);
}

.deck-display--fullscreen .deck-display-folder-row__copy h3 a {
  color: #fff;
}

.deck-display--fullscreen .deck-display-folder-row__copy h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.08;
}

.deck-display--fullscreen .deck-display-folder-row__copy p {
  display: -webkit-box;
  color: rgba(255, 255, 255, 0.82);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deck-display--fullscreen .deck-display-folder-row__actions {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
}

.deck-display--fullscreen .deck-display-folder-row__actions a {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
}

.deck-display-folder-preview {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: grid;
}

.deck-display-folder-preview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 18, 16, 0.86);
}

.deck-display-folder-preview__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(900px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  margin: auto;
  padding: 16px;
  overflow: auto;
  border-radius: 18px;
  background: #fffaf7;
}

.deck-display-folder-preview__close {
  justify-self: end;
  min-height: 36px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: #171210;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.deck-display-folder-preview__body {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.deck-display-folder-preview__body .deck-display-card {
  width: min(100%, 780px);
  aspect-ratio: 16 / 9;
}

.deck-display-folder-preview__details {
  display: grid;
  gap: 8px;
  width: min(100%, 780px);
}

.deck-display-folder-preview__details h3,
.deck-display-folder-preview__details p {
  margin: 0;
}

.deck-display-folder-preview__details a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #171210;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

body.deck-display-modal-open {
  overflow: hidden;
}

.outbound-link-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.outbound-link-modal.is-hidden {
  display: none;
}

.outbound-link-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.54);
  cursor: pointer;
}

.outbound-link-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  color: #171210;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.outbound-link-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #5b5b5b;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.outbound-link-modal__head {
  padding: 24px 24px 14px;
  border-bottom: 1px solid #f0ded7;
  background: #fff8f5;
}

.outbound-link-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #da4a28;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.outbound-link-modal__head h3 {
  margin: 0;
  color: #171210;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 950;
}

.outbound-link-modal__head p,
.outbound-link-modal__body p {
  margin: 8px 0 0;
  color: #514843;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.outbound-link-modal__body {
  display: grid;
  gap: 12px;
  padding: 18px 24px;
}

.outbound-link-modal__merchant {
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #171210;
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.outbound-link-modal__coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  background: #fff1ec;
  border: 1px solid #f0c6b8;
}

.outbound-link-modal__coupon[hidden],
.outbound-link-modal__amazon-note[hidden],
.outbound-link-modal__eventbrite-note[hidden],
.outbound-link-modal__affiliate-note[hidden],
.outbound-link-modal__fineprint[hidden] {
  display: none;
}

.outbound-link-modal__amazon-note {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 18px;
  color: #514843;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.outbound-link-modal__eventbrite-note {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #b9e4dd;
  background: #effcf9;
}

.outbound-link-modal__eventbrite-note p {
  margin: 0;
  color: #17423e !important;
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1.4;
}

.outbound-link-modal__claim {
  justify-self: start;
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.outbound-link-modal__coupon span {
  color: #8b321a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.outbound-link-modal__coupon strong {
  display: block;
  color: #171210;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.outbound-link-modal__copy {
  min-height: 34px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: #171210;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.outbound-link-modal__copy[hidden] {
  display: none;
}

.outbound-link-modal__fineprint {
  font-size: 11px !important;
  color: #6f6a66 !important;
}

.outbound-link-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 24px 22px;
}

.outbound-link-modal__secondary,
.outbound-link-modal__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.outbound-link-modal__secondary {
  border: 1px solid #e3d7d2;
  background: #fff;
  color: #171210;
}

.outbound-link-modal__primary {
  border: 1px solid #da4a28;
  background: #da4a28;
  color: #fff;
}

.outbound-link-modal__primary[hidden] {
  display: none;
}

body.outbound-link-modal-open {
  overflow: hidden;
}

@keyframes deck-display-title-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes deck-display-image-in {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 760px) {
  .deck-display__header,
  .deck-display__actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .deck-display__header {
    display: grid;
  }

  .deck-display-card {
    width: min(82vw, 360px);
  }

  .deck-display-folder-row {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .deck-display-folder-row__actions {
    grid-column: 1 / -1;
  }

  .deck-display--fullscreen .deck-display-folder {
    grid-template-columns: 1fr;
    padding-left: 14px;
    padding-right: 14px;
  }

  .deck-display--fullscreen .deck-display-folder-row {
    min-height: 330px;
  }

  .deck-display--fullscreen .deck-display-folder-row__actions {
    grid-column: auto;
  }

  .deck-display-stack-inline {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .deck-display-stack-inline .deck-display-card {
    margin-left: -120px;
  }
}

.take-card-grid {
  display: grid;
  gap: 18px;
}

.take-stack-card {
  display: grid;
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.take-stack-card__content {
  gap: 12px;
}

.take-stack-card__content > .mini-card__creator-row {
  margin-bottom: 6px;
}

.take-stack-card__media {
  margin: 0 -20px 16px;
  border-radius: 0;
  overflow: hidden;
  background: #f2f2f2;
  position: relative;
}

.take-stack-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.take-stack-card__media video,
.take-stack-card__media iframe {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 0;
  background: #000;
}

.take-stack-card__original {
  padding-top: 8px;
}

.take-layer-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8f4 0%, #fff 100%);
  border: 1px solid #efd8cf;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.08);
}

.take-layer-card__toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.take-layer-card__labels,
.take-layer-card__take-labels {
  display: grid;
  gap: 6px;
}

.take-layer-card__labels small,
.take-layer-card__take-labels small {
  color: #8a7068;
  line-height: 1.5;
}

.take-layer-card__pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #efc7b7;
  background: #fff4ef;
  color: #bf583a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.take-layer-card__pill--solid {
  background: #da4a28;
  border-color: #da4a28;
  color: #fff;
}

.take-layer-card__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e7c5b8;
  background: #fff;
  color: #aa4f31;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.06);
}

.take-layer-card__stack {
  display: grid;
  gap: 12px;
}

.take-layer-card__base {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-height: 180px;
  border-radius: 20px;
  border: 1px solid #efd8cf;
  background: #fff;
  transition: max-height 0.22s ease;
}

.take-layer-card__base-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.take-layer-card__base-label span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.take-layer-card__take-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #efcfc2;
  box-shadow: 0 22px 34px rgba(17, 17, 17, 0.1);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    max-height 0.22s ease,
    margin 0.22s ease,
    padding 0.22s ease,
    border-width 0.22s ease;
}

.take-layer-card__take-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.take-layer-card.is-original-visible .take-layer-card__take-panel {
  display: none;
}

.take-layer-card.is-original-visible .take-layer-card__base {
  max-height: none;
}

.take-layer-card .take-stack-card__media {
  margin-left: -18px;
  margin-right: -18px;
  margin-bottom: 14px;
}

.take-layer-card__base::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 90%);
  pointer-events: none;
}

.take-layer-card.is-original-visible .take-layer-card__base::after {
  display: none;
}

.take-layer-card__base .mini-card--embedded {
  border: 0;
  border-radius: 0;
}

.take-layer-card .take-stack-card__content {
  display: grid;
  gap: 12px;
}

.take-layer-card .take-stack-card__content > .mini-card__creator-row {
  margin-bottom: 2px;
}

.take-surface-card {
  display: grid;
  gap: 0;
  padding: 0;
  margin-bottom: 18px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.take-surface-card__rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.take-surface-card__rail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid #ebcec1;
  background: #fff;
  color: #8a6457;
  cursor: pointer;
  text-align: center;
}

.take-surface-card__rail-btn.is-active {
  background: #da4a28;
  border-color: #da4a28;
  color: #fff;
  box-shadow: none;
}

.take-surface-card__rail-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.take-surface-card__rail-bridge {
  color: #9f7c70;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.take-surface-card__surfaces {
  display: grid;
}

.take-surface-card__surface {
  display: none;
}

.take-surface-card__surface.is-active {
  display: grid;
}

.take-surface-card__surface {
  gap: 14px;
  padding: 18px 18px 0;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #efcfc2;
  box-shadow: 0 22px 34px rgba(17, 17, 17, 0.1);
}

.take-surface-card__surface[data-take-surface="original"] {
  background: #fff;
  border-color: #efd8cf;
}

.take-surface-card .take-stack-card__content {
  display: grid;
  gap: 12px;
}

.take-surface-card .mini-card__footer {
  gap: 8px;
}

.take-surface-card .mini-card__bottom-bar {
  padding-top: 6px;
  padding-bottom: 0;
}

.take-surface-card .mini-card__message:empty {
  display: none;
}

.take-surface-card .take-stack-card__content > .mini-card__creator-row {
  margin-bottom: 2px;
}

.take-surface-card .take-stack-card__media {
  margin-left: -18px;
  margin-right: -18px;
  margin-bottom: 14px;
}

.take-surface-card .take-stack-card__take-qt {
  border-radius: 18px;
  margin: 0;
}

.take-surface-card .take-stack-card__take-qt .feed-qt-text-wrap {
  min-height: 0;
}

.take-surface-card .take-stack-card__take-qt.feed-qt-text-card {
  min-height: 300px;
}

.take-surface-card .mini-card--embedded {
  border: 0;
  box-shadow: none;
  padding: 0;
}

@media (max-width: 640px) {
  .take-surface-card__rail {
    grid-template-columns: 1fr;
  }

  .take-surface-card__rail-bridge {
    justify-self: center;
  }
}

.mini-card--embedded {
  box-shadow: none;
  border-radius: 14px;
  padding-bottom: 12px;
}

.mini-card--embedded .mini-card__media {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.deck-page-shell,
.deck-manage-shell {
  display: grid;
  gap: 18px;
}

.deck-hero,
.deck-manage-hero {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.deck-hero__media img,
.deck-hero__fallback {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.deck-hero__fallback {
  background: linear-gradient(135deg, #111827 0%, #da4a28 58%, #1ea9b7 100%);
}

.deck-hero__topbar .business-hero__floating-label,
.deck-hero__topbar .business-hero__floating-label--panel {
  min-height: 32px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1;
}

.deck-hero__content,
.deck-manage-hero {
  padding: 24px;
}

.deck-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 18px;
}

.deck-hero__copy,
.deck-manage-hero__copy {
  display: grid;
  gap: 8px;
}

.deck-hero__identity {
  display: flex;
  align-items: center;
}

.deck-hero__avatar {
  display: inline-flex;
  width: 88px;
  height: 88px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #efddd7;
  background: #fff5f1;
  box-shadow: none;
}

.deck-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.deck-hero__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff2ee;
  color: #da4a28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-hero__copy h1,
.deck-manage-hero__copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.deck-hero__hashtag {
  margin: 0;
  color: #da4a28;
  font-size: 18px;
  font-weight: 800;
}

.deck-hero__description,
.deck-manage-hero__copy p {
  margin: 0;
  max-width: 60ch;
  color: #424242;
  font-size: 16px;
  line-height: 1.7;
}

.deck-hero__meta,
.deck-manage-hero__meta {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border-radius: 20px;
  background: #fff8f5;
  border: 1px solid #efddd7;
}

.deck-hero__meta-row {
  display: grid;
  gap: 4px;
}

.deck-hero__meta-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b46149;
}

.deck-card {
  --deck-card-bg: linear-gradient(180deg, #eb6c3d 0%, #da4a28 16%, #cd3d1a 100%);
  --deck-card-top-bg: #eb6c3d;
  --deck-card-tab-bg: linear-gradient(180deg, #f18861 0%, #eb6c3d 100%);
  display: grid;
  gap: 8px;
  position: relative;
  border-radius: 10px 18px 18px 18px;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.16);
  overflow: visible;
  isolation: isolate;
}

.deck-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -1px;
  width: min(132px, calc(100% - 90px));
  height: 34px;
  border-radius: 14px 14px 0 0;
  background: var(--deck-card-tab-bg);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.14);
  z-index: 0;
}

.deck-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 28px;
  border-radius: 10px 18px 0 0;
  background: var(--deck-card-top-bg);
  z-index: 1;
  pointer-events: none;
}

.deck-card__surface-link {
  display: grid;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 2;
  padding: 8px 16px 14px;
  border-radius: 10px 18px 18px 18px;
  background: var(--deck-card-bg);
}

.deck-card__tab {
  position: absolute;
  top: -14px;
  left: -6px;
  min-width: 126px;
  max-width: calc(100% - 90px);
  height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 14px 14px 0 0;
  background: transparent;
  border: 0;
  color: #fff2ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 3;
}

.deck-card__topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 0;
  margin-top: -8px;
  min-height: 22px;
  position: relative;
  z-index: 3;
}

.deck-card__type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff6f1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: auto;
}

.deck-card__identity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 8px;
}

.deck-card__visibility {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  color: #fff4ed;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.deck-card__visibility--premium {
  gap: 8px;
  background: linear-gradient(180deg, #ffd47f 0%, #f2ae38 100%);
  color: #754500;
}

.deck-card__tag {
  color: #fff2ea;
  font-size: 13px;
  font-weight: 900;
  opacity: 0.94;
}

.deck-card__content {
  display: grid;
  gap: 8px;
}

.deck-card__preview-shell {
  display: grid;
  gap: 0;
  margin-top: -8px;
}

.deck-card__preview {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 104px;
  padding: 8px 22px 12px;
  border-radius: 8px 8px 14px 14px;
  background: transparent;
  border: 0;
  overflow: hidden;
  position: relative;
}

.deck-card__preview::before {
  display: none;
}

.deck-card__preview-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 94px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f2 100%);
  border: 0;
  box-shadow: 0 10px 18px rgba(17, 17, 17, 0.15);
  color: #d86a48;
  font-size: 17px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.deck-card__preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-card__preview-card + .deck-card__preview-card {
  margin-left: -14px;
}

.deck-card__preview-card:nth-child(1) {
  transform: rotate(-3deg) translateY(12px);
  z-index: 1;
}

.deck-card__preview-card:nth-child(2) {
  transform: translateY(4px);
  z-index: 2;
}

.deck-card__preview-card:nth-child(3) {
  transform: rotate(3deg) translateY(14px);
  z-index: 1;
}

.deck-card:hover .deck-card__preview-card:nth-child(1),
.deck-card:focus-visible .deck-card__preview-card:nth-child(1) {
  transform: rotate(-4deg) translateY(8px);
}

.deck-card:hover .deck-card__preview-card:nth-child(2),
.deck-card:focus-visible .deck-card__preview-card:nth-child(2) {
  transform: translateY(-2px);
}

.deck-card:hover .deck-card__preview-card:nth-child(3),
.deck-card:focus-visible .deck-card__preview-card:nth-child(3) {
  transform: rotate(4deg) translateY(10px);
}

.deck-card:hover .deck-card__preview-card,
.deck-card:focus-visible .deck-card__preview-card {
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.2);
}

.deck-card__preview-caption {
  padding: 10px 4px 0;
  color: rgba(255, 243, 235, 0.8);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deck-card--premium {
  --deck-card-bg: linear-gradient(180deg, #f1b74b 0%, #dc9221 16%, #c67b00 100%);
  --deck-card-top-bg: #f1b74b;
  --deck-card-tab-bg: linear-gradient(180deg, #f7ce74 0%, #efb140 100%);
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.18);
}

.deck-card--premium .deck-card__tab {
  color: #754500;
}

.deck-card--premium .deck-card__preview {
  background: transparent;
}

.deck-card--premium .deck-card__preview::before {
  background: linear-gradient(180deg, rgba(255, 232, 166, 0.16) 0%, rgba(255, 208, 94, 0.08) 100%);
}

.deck-card__premium-lock {
  position: absolute;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(201, 128, 21, 0.95) 0%, rgba(146, 86, 0, 0.94) 100%);
  color: #fffef8;
  font-size: 19px;
  box-shadow: 0 10px 16px rgba(17, 17, 17, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.deck-card__premium-lock--centered {
  left: 50%;
  top: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  font-size: 24px;
  box-shadow: 0 14px 22px rgba(17, 17, 17, 0.24);
  z-index: 4;
}

.deck-card__preview:hover .deck-card__premium-lock--centered,
.deck-card__premium-lock--centered:hover,
.deck-card__preview:focus-within .deck-card__premium-lock--centered {
  transform: translate(-50%, -50%) scale(1.32);
  box-shadow: 0 20px 30px rgba(17, 17, 17, 0.3);
}

.deck-card__premium-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff4eb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-card__title {
  margin: 0;
  color: #fff7f3;
  font-size: 16px;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-card__body {
  margin: 0;
  color: rgba(255, 243, 235, 0.82);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.deck-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.deck-card__actions {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 12px 16px 14px;
  border-radius: 0 0 18px 18px;
  background: #ffffff;
  position: relative;
  z-index: 3;
}

.deck-card__battle-vote {
  margin-bottom: 0;
}

.deck-card__bottom-bar {
  margin: 0;
  padding: 10px 0 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
}

.deck-card__collect-action {
  min-height: 32px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b7280;
  font-weight: 900;
}

.deck-card__collect-action:hover,
.deck-card__collect-action.is-active {
  background: transparent;
  color: #da4a28;
}

.deck-card__collect-action .mini-card__icon-action-count {
  min-width: auto;
}

.deck-card__bottom-bar .mini-card__icon-action,
.deck-card__bottom-bar .mini-card__icon-action:visited,
.deck-card__bottom-bar .mini-card__icon-action.is-static,
.deck-card__bottom-bar .mini-card__link {
  color: #6b7280;
}

.deck-card__bottom-bar .mini-card__icon-action:hover,
.deck-card__bottom-bar .mini-card__icon-action.is-active,
.deck-card__bottom-bar .mini-card__link:hover,
.deck-card__bottom-bar .mini-card__link:focus-visible {
  color: #a93418;
}

.deck-card__meta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  color: #fff4ed;
  font-size: 12px;
  font-weight: 800;
}

.deck-card__meta--premium {
  gap: 8px;
  background: rgba(255, 249, 229, 0.82);
  color: #7a4900;
}

.deck-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff7f3;
  color: #d94a28;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(17, 17, 17, 0.14);
}

@media (max-width: 767px) {
  .deck-card__tab {
    max-width: calc(100% - 54px);
  }

  .deck-card__preview-card {
    width: 88px;
    height: 74px;
  }

  .deck-card__footer {
    align-items: stretch;
  }

  .deck-card__link {
    margin-left: 0;
  }
}

.deck-manage-card .full-card__action-row {
  margin-bottom: 0;
}

.deck-manage-hero--v2 {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr) minmax(220px, 0.6fr);
  gap: 18px;
  padding: 24px;
  align-items: start;
}

.deck-manage-hero--v2 .deck-manage-hero__copy,
.deck-manage-hero--v2 .deck-manage-hero__media,
.deck-manage-hero--v2 .deck-manage-hero__meta {
  min-width: 0;
}

.deck-manage-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.deck-manage-hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff2ee;
  color: #b75a42;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-manage-hero__media img,
.deck-manage-hero__media-fallback {
  display: block;
  width: 100%;
  min-height: 220px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
}

.deck-manage-hero__media-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f18861 0%, #da4a28 62%, #c13d1b 100%);
  color: #fff7f3;
  font-size: 48px;
}

.deck-manage-stat {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}

.deck-manage-stat strong {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.deck-manage-hero__links {
  display: grid;
  gap: 12px;
}

.deck-manager-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.deck-manager-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #ead8d0;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.deck-manager-nav__item {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #774333;
  font-weight: 800;
  text-decoration: none;
}

.deck-manager-nav__item:hover,
.deck-manager-nav__item:focus-visible {
  background: #fff1eb;
  color: #da4a28;
}

.deck-manager-nav__item--premium {
  background: #d4af37;
  color: #16110a;
}

.deck-manager-nav__item--premium:hover,
.deck-manager-nav__item--premium:focus-visible {
  background: #c9a52f;
  color: #16110a;
}

.deck-manager-content {
  display: grid;
  gap: 18px;
}

.deck-manager-section {
  scroll-margin-top: 110px;
}

.deck-manager-section__header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.deck-manager-section__actions {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 16px;
}

.deck-manager-section__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #da4a28;
  border-radius: 999px;
  background: #da4a28;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(218, 74, 40, 0.2);
  white-space: nowrap;
}

.deck-manager-section__action:hover,
.deck-manager-section__action:focus-visible {
  background: #c94021;
  border-color: #c94021;
  color: #fff;
}

.deck-card-picker {
  display: grid;
  gap: 14px;
}

.deck-card-picker__toolbar {
  display: flex;
}

.deck-card-picker__list {
  display: grid;
  gap: 12px;
}

.deck-card-picker__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff9f6;
  border: 1px solid #efd8cf;
}

.deck-card-picker__item[hidden] {
  display: none;
}

.deck-card-picker__item.is-in-deck {
  opacity: 0.75;
}

.deck-arrange-workspace {
  display: grid;
  gap: 18px;
  width: min(1480px, calc(100vw - 32px));
  margin: 0 auto;
}

.deck-arrange-hero,
.deck-arrange-toolbar,
.deck-arrange-row {
  border: 1px solid #efd8cf;
  background: #fff;
  box-shadow: 0 22px 50px rgba(24, 27, 32, 0.08);
}

.deck-arrange-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
}

.deck-arrange-hero h1 {
  margin: 8px 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

.deck-arrange-hero p {
  max-width: 760px;
  margin: 0;
  color: #5f5450;
  font-size: 18px;
  line-height: 1.55;
}

.deck-arrange-hero__actions,
.deck-arrange-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.deck-arrange-toolbar {
  position: sticky;
  top: 86px;
  z-index: 5;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 20px;
}

.deck-arrange-toolbar__copy {
  display: grid;
  gap: 4px;
  color: #6d615b;
  font-weight: 800;
}

.deck-arrange-toolbar__copy strong {
  color: #17181c;
  font-size: 20px;
}

.deck-arrange-toolbar__copy span[data-state="changed"] {
  color: #da4a28;
}

.deck-arrange-search {
  display: grid;
  gap: 6px;
  min-width: min(420px, 100%);
  font-weight: 900;
}

.deck-arrange-list {
  display: grid;
  gap: 10px;
}

.deck-arrange-row {
  display: grid;
  grid-template-columns: 44px 72px 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
}

.deck-arrange-row.is-dragging {
  opacity: 0.55;
}

.deck-arrange-row.is-search-hidden {
  display: none;
}

.deck-arrange-row__handle,
.deck-arrange-row__actions button,
.deck-arrange-row__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.deck-arrange-row__handle {
  width: 40px;
  border: 1px solid #efd8cf;
  background: #fff8f5;
  color: #b65338;
  cursor: grab;
}

.deck-arrange-row__position {
  display: grid;
  gap: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #746862;
}

.deck-arrange-row__position input {
  width: 64px;
  min-height: 40px;
  border: 1px solid #e7d1c8;
  border-radius: 12px;
  padding: 0 8px;
  font: inherit;
  font-size: 16px;
  text-align: center;
  color: #17181c;
}

.deck-arrange-row__thumb {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 14px;
  background: #181b20;
}

.deck-arrange-row__thumb img,
.deck-arrange-row__thumb span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  color: #fff;
}

.deck-arrange-row__main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.deck-arrange-row__main strong {
  color: #17181c;
  font-size: 18px;
}

.deck-arrange-row__main span,
.deck-arrange-row__main p,
.deck-arrange-row__main small {
  margin: 0;
  color: #645852;
  font-weight: 800;
  line-height: 1.35;
}

.deck-arrange-row__main p {
  font-weight: 700;
}

.deck-arrange-row__main small {
  color: #2d8f44;
}

.deck-arrange-row__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 320px;
}

.deck-arrange-row__actions button,
.deck-arrange-row__actions a {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #efd8cf;
  background: #fff8f5;
  color: #b65338;
  cursor: pointer;
}

.deck-arrange-row__actions button:hover,
.deck-arrange-row__actions a:hover {
  border-color: #da4a28;
  color: #da4a28;
}

@media (max-width: 900px) {
  .deck-arrange-hero,
  .deck-arrange-toolbar {
    display: grid;
  }

  .deck-arrange-row {
    grid-template-columns: 42px 66px minmax(0, 1fr);
    align-items: start;
  }

  .deck-arrange-row__thumb {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .deck-arrange-row__main {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .deck-arrange-row__actions {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: flex-start;
    max-width: none;
  }
}

.deck-card-picker__thumb {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
  color: #da4a28;
}

.deck-card-picker__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-card-picker__copy {
  display: grid;
  gap: 4px;
}

.deck-card-picker__copy strong {
  font-size: 18px;
  line-height: 1.1;
}

.deck-card-picker__copy span {
  color: #7f655d;
}

.deck-card-picker__status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f2e0d8;
  color: #9a5e4f;
  font-weight: 800;
}

.settings-toggle-row--field {
  min-height: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #ead8d0;
}

.full-card-page-shell {
  display: grid;
  gap: 20px;
}

.full-card-share-return {
  display: flex;
  justify-content: flex-start;
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px) + 72px);
  z-index: 5;
  padding-top: 4px;
  padding-bottom: 4px;
}

.full-card-share-return__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff4ef;
  border: 1px solid #f0d4cb;
  color: #bf583a;
  font-weight: 800;
  text-decoration: none;
}

.full-card__poll-box {
  scroll-margin-top: calc(env(safe-area-inset-top, 0px) + 132px);
}

.mini-card {
  display: grid;
  gap: 0;
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 20px 20px 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.community-profile-card--mini-event {
  --profile-card-accent: #da4a28;
  --profile-card-accent-soft: rgba(218, 74, 40, 0.2);
  --event-panel-height: clamp(19rem, 58%, 24rem);
  aspect-ratio: 1 / 1.29;
  border-radius: 28px;
  background: #111;
  height: auto;
}

.community-profile-card--mini-event.community-profile-card--flyer-landscape {
  --event-panel-height: clamp(16rem, 46%, 19rem);
}

.community-profile-card--mini-event .community-profile-card__surface {
  position: relative;
  display: block;
  height: 100%;
}

.community-profile-card--mini-event .community-profile-card__media {
  height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(135deg, #111827 0%, #da4a28 62%, #f2b88c 100%);
  isolation: isolate;
}

.community-profile-card--mini-event .community-profile-card__media::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.18)),
    var(--event-flyer-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(1.05);
  opacity: 0.6;
  transform: scale(1.08);
}

.community-profile-card--mini-event .community-profile-card__media-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.community-profile-card--mini-event video.community-profile-card__media-image {
  object-fit: cover;
  background: #050505;
}

.community-profile-card--mini-event .community-profile-card__media-image--fallback {
  padding: 0;
  background: transparent;
}

.community-profile-card--mini-event .community-profile-card__media-overlay,
.community-profile-card--mini-event .community-profile-card__media-copy,
.community-profile-card--mini-event .community-profile-card__event-badges {
  z-index: 2;
}

.community-profile-card--mini-event .community-profile-card__media-overlay {
  height: 38%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.7) 100%);
  transition: opacity 0.28s ease;
}

.community-profile-card--mini-event .community-profile-card__media-copy {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.community-profile-card--mini-event .community-profile-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  gap: 10px;
  min-height: var(--event-panel-height);
  opacity: 0;
  transform: translateY(100%);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  color: #fff;
}

.community-profile-card--mini-event .community-profile-card__avatar {
  border-radius: 18px;
  background: #2a2a2a;
}

.community-profile-card--mini-event .community-profile-card__copy strong {
  color: #fff;
}

.community-profile-card--mini-event .community-profile-card__copy span:last-child,
.community-profile-card--mini-event .community-profile-card__summary,
.community-profile-card--mini-event .community-profile-card__count {
  color: rgba(255, 255, 255, 0.72);
}

.community-profile-card--mini-event .community-profile-card__summary {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.community-profile-card--mini-event .community-profile-card__tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.community-profile-card--mini-event .community-profile-card__tag--primary {
  background: #fff;
  color: #171210;
}

.community-profile-card--mini-event a.community-profile-card__tag:hover,
.community-profile-card--mini-event a.community-profile-card__tag:focus-visible {
  background: #fff;
  color: #171210;
}

.community-profile-card--mini-event .community-profile-card__event-info {
  display: grid;
  gap: 5px;
}

.community-profile-card--mini-event .community-profile-card__event-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.community-profile-card--mini-event .community-profile-card__event-info i {
  width: 15px;
  color: #f2b88c;
  text-align: center;
}

.community-profile-card--mini-event .community-profile-card__event-actions {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}

.community-profile-card--mini-event .mini-card__battle-vote {
  gap: 8px;
}

.community-profile-card--mini-event .mini-card__battle-btn {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.community-profile-card--mini-event .mini-card__battle-btn:hover,
.community-profile-card--mini-event .mini-card__battle-btn.is-active {
  border-color: #da4a28;
  background: #da4a28;
  color: #fff;
}

.community-profile-card--mini-event .mini-card__battle-meter {
  height: 10px;
  background: rgba(255, 255, 255, 0.14);
}

.community-profile-card--mini-event .mini-card__battle-stats,
.community-profile-card--mini-event .mini-card__battle-stats strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.community-profile-card--mini-event .mini-card__bottom-bar {
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.community-profile-card--mini-event .mini-card__icon-actions {
  gap: 9px;
}

.community-profile-card--mini-event .mini-card__icon-action,
.community-profile-card--mini-event .mini-card__link--icon {
  color: rgba(255, 255, 255, 0.74);
}

.community-profile-card--mini-event .mini-card__icon-action:hover,
.community-profile-card--mini-event .mini-card__icon-action.is-active,
.community-profile-card--mini-event .mini-card__link--icon:hover,
.community-profile-card--mini-event .mini-card__link--icon:focus-visible {
  background: rgba(218, 74, 40, 0.18);
  color: #fff;
}

.community-profile-card--mini-event .community-profile-card__meta {
  gap: 6px;
}

.community-profile-card--mini-event .community-profile-card__tag {
  min-height: 24px;
  padding: 5px 9px;
  font-size: 11px;
}

.community-profile-card--mini-event .community-profile-card__footer {
  margin-top: 0;
}

.community-profile-card--mini-event .community-profile-card__link {
  min-height: 36px;
  padding: 8px 14px;
}

@media (hover: hover) and (pointer: fine) {
  .community-profile-card--mini-event.community-profile-card--flyer-landscape:hover .community-profile-card__media-image,
  .community-profile-card--mini-event.community-profile-card--flyer-landscape:focus-within .community-profile-card__media-image {
    object-fit: contain;
    object-position: top center;
    background: #050505;
  }

  .community-profile-card--mini-event:hover .community-profile-card__media-overlay,
  .community-profile-card--mini-event:focus-within .community-profile-card__media-overlay,
  .community-profile-card--mini-event:hover .community-profile-card__media-copy,
  .community-profile-card--mini-event:focus-within .community-profile-card__media-copy {
    opacity: 0;
    transform: translateY(12px);
  }
}

.community-profile-card__event-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.community-profile-card__event-badges .mini-card__media-badge--price {
  margin-left: auto;
}

.mini-card--quicktext {
  background: #fff;
  color: var(--mini-card-qt-text, #ffffff);
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.profile-header-shell {
  margin-bottom: 20px;
}

.profile-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.profile-page-shell {
  display: grid;
  gap: 18px;
}

.profile-shell--hero {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.profile-hero-banner img,
.profile-hero-banner__fallback {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.profile-hero-banner__fallback {
  background: linear-gradient(135deg, #111827 0%, #da4a28 55%, #1ea9b7 100%);
}

.profile-hero-body {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.profile-header-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.profile-avatar {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
}

.profile-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #da4a28, #1ea9b7);
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}

.profile-identity {
  display: grid;
  gap: 6px;
}

.profile-identity__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff2ee;
  color: #da4a28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-identity h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.profile-identity__handle {
  margin: 0;
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 700;
}

.profile-identity__bio {
  margin: 0;
  max-width: 60ch;
  color: #424242;
  font-size: 16px;
  line-height: 1.7;
}

.profile-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-card__type,
.full-card__type {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #da4a28;
  margin-bottom: 10px;
}

.mini-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.mini-card__type {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff2ee;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 11px;
}

.mini-card--quicktext .mini-card__type {
  background: #ffe5dd;
  color: #da4a28;
}

.mini-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffdad1;
  font-size: 12px;
  font-weight: 800;
  color: #da4a28;
}

.mini-card--quicktext .mini-card__tag {
  color: #da4a28;
}

.mini-card__title,
.full-card__title {
  margin: 0 0 12px;
}

.mini-card__body,
.full-card__body {
  line-height: 1.6;
}

.mini-card__content {
  display: grid;
  gap: 12px;
}

.mini-card__qt-hero {
  margin-bottom: 14px;
}

.mini-card--quicktext .mini-card__content {
  gap: 14px;
  order: 3;
}

.mini-card--quicktext .mini-card__creator-row,
.mini-card--quicktext .mini-card__footer {
  padding-left: 20px;
  padding-right: 20px;
}

.mini-card--quicktext > .description_box {
  order: 1;
}

.mini-card--quicktext > .mini-card__event-action-row {
  order: 2;
  align-self: stretch;
  margin-bottom: 0;
}

.mini-card--quicktext .mini-card__creator-row {
  order: 3;
}

.mini-card--quicktext .mini-card__footer {
  order: 5;
}

.mini-card__creator-row {
  order: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: visible;
}

.mini-card__creator {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  margin-bottom: 0;
  min-width: 0;
  flex: 1 1 auto;
  overflow: visible;
}

.mini-card__creator img,
.mini-card__creator-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
}

.mini-card__avatar-fallback {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #da4a28, #1ea9b7);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.mini-card__creator-avatar--business,
.mini-card__avatar-fallback--business {
  border-radius: 14px;
}

.mini-card__creator-avatar--user,
.mini-card__avatar-fallback--user {
  border-radius: 999px;
}

.mini-card__creator-heading {
  margin: 0;
  font-size: 15px;
  line-height: 15px;
  color: #111111;
  font-weight: 800;
}

.mini-card__creator-heading span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  color: #343434;
  font-size: 12px;
  font-weight: 700;
}

.mini-card__creator-heading span .dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #343434;
}

.mini-card__event-action-row {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin: 0 0 14px;
  padding-inline: 14px;
}

.mini-card__event-action-row--overlap {
  margin-top: -34px;
}

.mini-card__event-context-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #da4a28;
  border: 2px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(218, 74, 40, 0.26);
}

.mini-card__event-context-link:hover,
.mini-card__event-context-link:focus-visible {
  background: #c93f22;
  border-color: #c93f22;
  color: #fff;
}

.mini-card__event-context-link strong {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card__menu-btn {
  border: 0;
  background: transparent;
  color: #a0a7b2;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
}

.mini-card__menu-btn:hover {
  background: #f3f4f6;
  color: #6b7280;
}

.mini-card__menu {
  position: relative;
  flex: 0 0 auto;
}

.mini-card__menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 12;
  min-width: 160px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
  border: 1px solid #ececec;
}

.mini-card__menu-panel[hidden] {
  display: none;
}

.mini-card__menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.mini-card__menu-item:hover,
.mini-card__menu-item.is-active {
  background: #f6f7fb;
  color: #111827;
}

.mini-card__menu-item--danger {
  color: #d43c2f;
}

.mini-card__menu-item--danger:hover {
  background: #fff1ef;
  color: #c53030;
}

.mini-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
  color: #000000;
  font-weight: 900;
}

.mini-card__commerce-summary {
  display: grid;
  gap: 9px;
  padding-top: 2px;
  padding-bottom: 4px;
}

.mini-card__commerce-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #171210;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.mini-card__commerce-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.mini-card__commerce-price strong {
  color: #16a34a;
  font-size: 23px;
  line-height: 1;
  font-weight: 950;
}

.mini-card__commerce-price span {
  color: #d83a22;
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

.mini-card--commerce-product .mini-card__commerce-price strong {
  color: #171210;
}

.mini-card__commerce-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mini-card__commerce-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #2c2c2c;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.mini-card--commerce-promotion .mini-card__commerce-facts span:first-child {
  background: #fff1ec;
  color: #b73519;
}

.mini-card__commerce-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.mini-card--amazon-affiliate .mini-card__commerce-description {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.mini-card__commerce-deal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-card__commerce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.mini-card__amazon-affiliate-note {
  color: #687382;
  font-size: 0.62rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card__commerce-actions--coupon {
  justify-content: flex-end;
}

.mini-card__commerce-button,
.full-card__outbound-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: #da4a28;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(218, 74, 40, 0.22);
}

.mini-card__commerce-button:hover,
.mini-card__commerce-button:focus-visible,
.full-card__outbound-button:hover,
.full-card__outbound-button:focus-visible {
  background: #c53f20;
  color: #fff;
}

.mini-card__commerce-button--secondary {
  background: #171210;
  box-shadow: 0 10px 20px rgba(23, 18, 16, 0.16);
}

.mini-card__body {
  margin: 0;
  font-size: 14px;
  color: #2b2b2b;
  line-height: 1.6;
  font-weight: 650;
}

.mini-card__poll-box {
  margin: 0 -20px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fff8f5, #ffffff);
  border-top: 1px solid #f4e3dc;
  border-bottom: 1px solid #f4e3dc;
}

.mini-card__poll-list {
  display: grid;
  gap: 10px;
}

.mini-card__poll-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #da4a28;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-card__poll-heading strong {
  color: #6c5a52;
  font-size: 11px;
  text-transform: none;
}

.mini-card__poll-question {
  margin: 0 0 12px;
  color: #171210;
  font-size: 19px;
  line-height: 1.15;
}

.mini-card__poll-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  width: 100%;
  padding: 12px 14px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #edd8d0;
  color: #5d4b45;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.mini-card__poll-pill:hover,
.mini-card__poll-pill:focus-visible,
.mini-card__poll-pill.is-selected {
  border-color: #da4a28;
  color: #171210;
}

.mini-card__poll-fill {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 0;
  background: rgba(218, 74, 40, 0.12);
  pointer-events: none;
  transition: width 0.2s ease;
}

.mini-card__poll-text,
.mini-card__poll-count {
  position: relative;
  z-index: 1;
}

.mini-card__poll-count {
  flex: 0 0 auto;
  min-width: 24px;
  color: #da4a28;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.mini-card__status-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
}

.mini-card__status-banner--expired {
  background: #ffd9da;
  color: #d94a3b;
}

.mini-card__inline-tag-text {
  color: #da4a28;
  font-weight: 700;
  text-decoration: none;
}

.mini-card__inline-tag-text:hover {
  text-decoration: underline;
}

.post_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffded6;
  color: #da4a28;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.post_tag--inline {
  margin-left: 8px;
  vertical-align: middle;
}

.mini-card--quicktext .mini-card__body,
.mini-card--quicktext .mini-card__title {
  color: #ffffff;
}

.mini-card--quicktext .mini-card__inline-tag-text {
  color: inherit;
}

.mini-card--quicktext .mini-card__inline-tag-text:hover,
.mini-card--quicktext .mini-card__inline-tag-text:focus-visible {
  color: inherit;
}

.mini-card--quicktext .post_tag--qt,
.feed-qt-text-wrap a {
  background: transparent;
  color: inherit;
}

.mini-card__qt-tag-row {
  order: 4;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #111111;
}

.mini-card__qt-tag-link {
  color: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.mini-card__qt-tag-link:hover,
.mini-card__qt-tag-link:focus-visible {
  color: #da4a28;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mini-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-radius: 0;
  background: transparent;
  color: #da4a28;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
}

.mini-card__link--icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #2b2b2b;
  font-size: 16px;
  box-shadow: none;
}

.mini-card__link--icon:hover,
.mini-card__link--icon:focus-visible {
  background: #fff1ec;
  color: #da4a28;
}

.mini-card__media {
  margin: -20px -20px 16px;
  border-radius: 0;
  overflow: hidden;
  background: #f2f2f2;
  position: relative;
}

.media-expand-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.media-expand-btn:hover {
  background: rgba(17, 17, 17, 0.92);
}

.community-profile-card--mini-event .media-expand-btn--event {
  top: 64px;
  right: 16px;
  bottom: auto;
  z-index: 9;
}

.mini-card__media-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.mini-card__media-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.mini-card__media-badge--date {
  background: #1576d1;
}

.mini-card__media-badge--price {
  margin-left: auto;
  background: #24c441;
}

.mini-card__media-badge--pinned {
  background: #da4a28;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px rgba(218, 74, 40, 0.28);
}

.mini-card__media-badge--urgency {
  margin-left: auto;
  background: #171210;
}

.mini-card__media-badges--commerce {
  justify-content: flex-end;
  left: 50%;
}

.mini-card__commerce-notch {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 72%;
  min-height: 38px;
  padding: 9px 18px 9px 16px;
  border-bottom-right-radius: 18px;
  background: #fff;
  color: #171210;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card--commerce-promotion .mini-card__commerce-notch {
  background: #eaf8ef;
  color: #12843a;
}

.mini-card__commerce-notch i {
  font-size: 11px;
  line-height: 1;
}

.mini-card__commerce-notch::before,
.mini-card__commerce-notch::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: inherit;
}

.mini-card__commerce-notch::before {
  left: 100%;
  top: 0;
  border-top-left-radius: 18px;
}

.mini-card__commerce-notch::after {
  left: 0;
  top: 100%;
  border-top-left-radius: 18px;
}

.mini-card__best-profile-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 0 0 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff7d6;
  color: #6f4b00;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.mini-card__pinned-row {
  display: flex;
  justify-content: flex-start;
  padding: 12px 14px 0;
}

.mini-card__qt-pin-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #da4a28;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(218, 74, 40, 0.28);
}

.mini-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.mini-card--commerce .mini-card__media {
  background: #f5f5f5;
  isolation: isolate;
}

.mini-card--commerce .mini-card__media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(245, 245, 245, 0.3)),
    var(--commerce-media-bg, none);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.08);
  opacity: 0.72;
  transform: scale(1.06);
}

.mini-card--commerce .mini-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.mini-card--commerce .mini-card__media img {
  position: relative;
  z-index: 2;
  height: clamp(230px, 52vw, 320px);
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.mini-card--commerce .mini-card__carousel-track,
.mini-card--commerce .mini-card__carousel-slide {
  position: relative;
  z-index: 2;
  min-height: clamp(230px, 52vw, 320px);
}

.mini-card__media video,
.mini-card__media iframe {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 0;
  background: #000;
}

.mini-card__carousel {
  position: relative;
  overflow: hidden;
}

.mini-card__carousel-track {
  position: relative;
  min-height: inherit;
}

.mini-card__carousel-slide {
  display: none;
}

.mini-card__carousel-slide.is-active {
  display: block;
}

.mini-card__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #3b3b3b;
  font-size: 22px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mini-card__carousel:hover .mini-card__carousel-arrow,
.mini-card__carousel:focus-within .mini-card__carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}

.mini-card__carousel-arrow--prev {
  left: 12px;
}

.mini-card__carousel-arrow--next {
  right: 12px;
}

.mini-card__carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 4;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mini-card__carousel-dot {
  width: 18px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.mini-card__carousel-dot.is-active {
  background: #da4a28;
}

.mini-card__media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: #121212;
  color: #fff;
  font-weight: 700;
}

.mini-card__counts,
.full-card__counts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #2f2f2f;
  font-size: 12px;
  margin-top: 0;
  font-weight: 800;
}

.mini-card--quicktext .mini-card__counts {
  color: #f6ddd7;
}

.mini-card__footer {
  display: grid;
  gap: 12px;
}

.mini-card__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #ececec;
}

.mini-card__icon-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-wrap: wrap;
}

.mini-card__icon-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.mini-card__icon-action:hover,
.mini-card__icon-action.is-active {
  color: #da4a28;
}

.mini-card__icon-action.is-static {
  cursor: default;
}

.mini-card__icon-action-icon {
  font-size: 16px;
}

.mini-card__icon-action-count {
  min-width: 1ch;
}

.mini-card__counts {
  margin-top: 0;
}

.mini-card__actions,
.full-card__context-row,
.full-card__creator-row,
.full-card__meta-boxes,
.full-card__action-row,
.take-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 16px;
}

.mini-card__actions {
  margin-top: 0;
  margin-bottom: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.mini-card__footer {
  order: 90;
}

.mini-card__actions button,
.full-card__action-row button,
.take-form__actions button,
.comment-reply-form button,
.comment-form button {
  border: 0;
  border-radius: 999px;
  padding: 10px 12px;
  background: #da4a28;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.mini-card__action-pill {
  border: 1px solid #ead1c9;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff7f4;
  color: #7b3f2d;
  font-weight: 800;
  cursor: pointer;
}

.mini-card__action-pill.is-active {
  background: #da4a28;
  color: #fff;
}

.mini-card--quicktext .mini-card__action-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.mini-card__actions button.is-active,
.full-card__action-row button.is-active {
  background: #171717;
}

.mini-card__actions select,
.full-card__action-row select {
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  padding: 10px 12px;
  background: #fff;
  font-size: 14px;
}

.mini-card__battle-vote {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
}

.mini-card__battle-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  flex: 0 0 40px;
}

.mini-card__battle-btn:hover {
  border-color: #da4a28;
  color: #da4a28;
}

.mini-card__battle-btn.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.mini-card__battle-meter-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  width: 100%;
}

.mini-card__battle-meter {
  position: relative;
  width: 100%;
  height: 14px;
  background: #eceef1;
  border-radius: 999px;
  overflow: hidden;
}

.mini-card__battle-fill {
  position: absolute;
  top: 0;
  bottom: 0;
}

.mini-card__battle-fill--positive {
  left: 0;
  background: #da4a28;
}

.mini-card__battle-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #111;
  font-size: 11px;
  font-weight: 800;
}

.mini-card__battle-stats strong {
  color: #111;
}

.mini-card__total {
  margin: 1rem -1.25rem 0;
  border-top: 1px solid #efefef;
}

.mini-card__total .total-inner {
  padding: 0.5rem 1.25rem 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.totle_vote {
  margin: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: #6c6c6c;
}

.mini-card__message,
.full-card__message,
.reply-message,
#takeMessage,
#commentMessage {
  margin: 0;
  color: #b42318;
  font-weight: 700;
  font-size: 13px;
}

.mini-card__icon-action--best {
  color: #7a4d00;
  cursor: default;
}

.mini-card__icon-action--best.is-active {
  background: #fff1bf;
  border-color: #e2ae22;
  color: #6f4b00;
}

.full-card__action-row .full-card__action-pill--static {
  cursor: default;
  pointer-events: none;
}

.full-card__action-row .full-card__action-pill--best {
  color: #7a4d00;
  background: #fff7d6;
  border-color: #e2ae22;
}

.full-card__action-row .full-card__action-pill--best.is-active {
  background: #fff1bf;
  border-color: #e2ae22;
  color: #6f4b00;
}

.feed-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  border: 1px solid rgba(111, 75, 0, 0.24);
  border-radius: 8px;
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.24);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .16s ease, transform .16s ease;
}

.feed-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.full-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 22px;
  padding: 20px 20px 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
}

.full-card--quicktext {
  background: #fff;
}

.full-card__context-row {
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 20px;
}

.full-card__context-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.full-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #f7f1ee;
  border: 1px solid #f1d2c9;
  font-size: 12px;
  font-weight: 800;
  color: #7a3f2d;
  text-decoration: none;
}

.full-card__date-link {
  font-size: 13px;
  font-weight: 700;
  color: #767676;
}

.js-full-card-choice-toggle {
  cursor: pointer;
}

.full-card__context-choices {
  display: grid;
  gap: 10px;
  margin: -6px 0 18px;
}

.full-card__context-choices:not(.is-open) {
  margin-bottom: 6px;
}

.full-card__context-choice-tray {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff8f4;
  border: 1px solid #f1ddd4;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.05);
}

.full-card__context-choice-tray[hidden] {
  display: none;
}

.full-card__context-choice-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #edd8cf;
  color: #614f48;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.full-card__context-choice-link:hover {
  color: #da4a28;
  border-color: #e6b8aa;
}

.full-card__creator-row {
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
  padding-bottom: 4px;
}

.full-card__event-action-row {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin: 0 0 18px;
  padding-inline: 18px;
}

.full-card__event-action-row--overlap {
  margin-top: -38px;
}

.full-card__event-context-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  min-height: 36px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #da4a28;
  border: 2px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(218, 74, 40, 0.28);
}

.full-card__event-context-link:hover,
.full-card__event-context-link:focus-visible {
  background: #c93f22;
  border-color: #c93f22;
  color: #fff;
}

.full-card__event-context-link strong {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full-card__creator-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.full-card__creator-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.full-card__creator-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.full-card__creator-avatar--business {
  border-radius: 14px;
}

.full-card__creator-avatar--user {
  border-radius: 999px;
}

.full-card__creator-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #da4a28, #1ea9b7);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.full-card__creator-main {
  display: grid;
  gap: 4px;
}

.full-card__creator-name {
  font-size: 16px;
  line-height: 1.1;
}

.full-card__creator-username {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 500;
}

.full-card__creator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.full-card__soft-action,
.full-card__action-pill {
  border: 1px solid #ead1c9;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff7f4;
  color: #773c2b;
  font-weight: 800;
  cursor: pointer;
}

.team-access-end-shift-form {
  display: contents;
}

.team-access-end-shift-form button.full-card__action-pill {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.full-card__soft-action.is-active,
.full-card__action-pill.is-active {
  background: #da4a28;
  border-color: #da4a28;
  color: #fff;
}

.full-card__gallery {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -20px;
}

.full-card__gallery--single {
  grid-template-columns: 1fr;
}

.full-card__gallery--grid {
  grid-template-columns: 1.3fr 1fr;
}

.full-card__gallery-item {
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: #141414;
  min-height: 260px;
}

.full-card__gallery-item.is-primary {
  min-height: 360px;
}

.full-card__gallery-item--youtube,
.full-card__gallery-item--youtube.is-primary {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.full-card__gallery img,
.full-card__gallery video,
.full-card__gallery iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 0;
  display: block;
  background: #111;
}

.full-card__gallery-item.is-primary img,
.full-card__gallery-item.is-primary video,
.full-card__gallery-item.is-primary iframe {
  min-height: 360px;
}

.full-card__gallery-item--youtube iframe,
.full-card__gallery-item--youtube.is-primary iframe {
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.full-card__carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -20px;
  background: #111;
}

.full-card__carousel-track {
  position: relative;
}

.full-card__carousel-slide {
  display: none;
}

.full-card__carousel-slide.is-active {
  display: block;
}

.full-card__carousel-slide img {
  display: block;
  width: 100%;
  min-height: 360px;
  max-height: 620px;
  object-fit: cover;
  background: #111;
}

.full-card[data-card-type="event"] .full-card__gallery-item,
.full-card[data-card-type="event"] .full-card__gallery-item.is-primary {
  min-height: clamp(240px, 34vw, 400px);
}

.full-card[data-card-type="event"] .full-card__gallery img,
.full-card[data-card-type="event"] .full-card__gallery video,
.full-card[data-card-type="event"] .full-card__gallery iframe,
.full-card[data-card-type="event"] .full-card__gallery-item.is-primary img,
.full-card[data-card-type="event"] .full-card__gallery-item.is-primary video,
.full-card[data-card-type="event"] .full-card__gallery-item.is-primary iframe,
.full-card[data-card-type="event"] .full-card__carousel-slide img {
  min-height: 0;
  height: clamp(240px, 34vw, 400px);
  max-height: 400px;
}

.full-card[data-card-type="event"] .full-card__gallery-item--youtube,
.full-card[data-card-type="event"] .full-card__gallery-item--youtube.is-primary {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.full-card[data-card-type="event"] .full-card__gallery-item--youtube iframe,
.full-card[data-card-type="event"] .full-card__gallery-item--youtube.is-primary iframe {
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 0;
  max-height: none;
}

.full-card__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #2f2f2f;
  font-size: 24px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.full-card__carousel:hover .full-card__carousel-arrow,
.full-card__carousel:focus-within .full-card__carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}

.full-card__carousel-arrow--prev {
  left: 16px;
}

.full-card__carousel-arrow--next {
  right: 16px;
}

.full-card__carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 4;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.full-card__carousel-dot {
  width: 18px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.full-card__carousel-dot.is-active {
  background: #da4a28;
}

.full-card__battle-row {
  margin: 2px 0 20px;
  display: flex;
  justify-content: center;
}

.full-card__battle-vote {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 540px;
}

.full-card__battle-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  flex: 0 0 42px;
}

.full-card__battle-btn:hover {
  border-color: #da4a28;
  color: #da4a28;
}

.full-card__battle-btn.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.full-card__battle-meter-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
  width: 100%;
}

.full-card__battle-meter {
  position: relative;
  width: 100%;
  height: 14px;
  background: #eceef1;
  border-radius: 999px;
  overflow: hidden;
}

.full-card__battle-fill {
  position: absolute;
  top: 0;
  bottom: 0;
}

.full-card__battle-fill--positive {
  left: 0;
  background: #da4a28;
}

.full-card__battle-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.full-card__battle-total strong {
  color: #111;
}

.full-card__battle-side {
  min-width: 18px;
  text-align: center;
}

.full-card__content-main {
  display: grid;
  gap: 18px;
}

.full-card__body-shell {
  display: block;
}

.full-card__body-shell--take {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.full-card__take-original {
  align-self: start;
}

.full-card__take-original .mini-card--embedded {
  height: auto;
}

.card-context-bar {
  margin-bottom: 18px;
}

.card-creator-row {
  margin-bottom: 22px;
}

.card-creator-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.full-card__poll-box {
  display: grid;
  gap: 0;
  padding: 20px;
  border: 1px solid #f4e3dc;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8f5, #ffffff);
  scroll-margin-top: calc(env(safe-area-inset-top, 0px) + 132px);
}

.full-card__poll-heading {
  margin-bottom: 10px;
}

.full-card__poll-question {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

.full-card__poll-list {
  gap: 12px;
}

.full-card__poll-pill {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 15px;
}

.full-card__poll-fill {
  background: rgba(218, 74, 40, 0.14);
}

.full-card__poll-count {
  font-size: 13px;
}

.full-card__section-kicker,
.full-card-page-section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  color: #cf5b3c;
}

.full-card__poll-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.full-card__poll-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f0ddd6;
  color: #5d4b45;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.quick_text_desc {
  text-align: center;
}

.quick_text_desc p {
  font-size: 20px;
  line-height: 35px;
  font-weight: 700;
}

.feed-qt-card {
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  min-height: 0;
  aspect-ratio: var(--qt-media-aspect, 4 / 5);
  border-radius: 0;
  margin: 0 0 10px;
}

.feed-qt-text-card {
  min-height: 320px;
  aspect-ratio: auto;
}

.mini-card__carousel--qt,
.mini-card__carousel--qt .mini-card__carousel-track,
.mini-card__carousel--qt .mini-card__carousel-slide {
  position: absolute;
  inset: 0;
}

.mini-card__carousel--qt .mini-card__carousel-slide {
  background-size: cover;
  background-position: center;
}

.mini-card__carousel--qt .mini-card__carousel-dots {
  bottom: 18px;
}

.feed-qt-bg-image,
.feed-qt-bg-video {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.feed-qt-bg-video video,
.feed-qt-bg-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.feed-qt-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.qt-feed-reveal-card.is-revealed .feed-qt-overlay {
  opacity: 0 !important;
  pointer-events: none;
}

.feed-qt-text-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  min-height: 0;
  height: 100%;
  padding: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
  transition: opacity 0.18s ease;
}

.feed-qt-text-wrap p {
  margin: 0;
  width: 100%;
  color: inherit;
  font-family: var(--qt-font, inherit);
  font-size: clamp(18px, 5vw, 52px);
  font-size: clamp(18px, 11cqw, 52px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: break-word;
  word-break: normal;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.feed-qt-card--short .feed-qt-text-wrap p {
  font-size: clamp(38px, 16vw, 68px);
  font-size: clamp(38px, 18cqw, 68px);
  line-height: 0.92;
}

.feed-qt-card--medium .feed-qt-text-wrap p {
  font-size: clamp(30px, 12vw, 56px);
  font-size: clamp(30px, 14cqw, 56px);
}

.take-surface-card .feed-qt-text-wrap p {
  font-size: clamp(18px, 4.6vw, 42px);
  font-size: clamp(18px, 10cqw, 42px);
  line-height: 0.95;
}

.take-surface-card .feed-qt-card--short .feed-qt-text-wrap p {
  font-size: clamp(38px, 14vw, 58px);
  font-size: clamp(38px, 16cqw, 58px);
  line-height: 0.92;
}

.take-surface-card .feed-qt-card--medium .feed-qt-text-wrap p {
  font-size: clamp(30px, 11vw, 50px);
  font-size: clamp(30px, 13cqw, 50px);
}

.feed-qt-text-wrap .post_tag--qt {
  font-size: 0.68em;
  line-height: 1;
  padding: 0;
  border-radius: 0;
  vertical-align: middle;
}

.feed-qt-text-wrap > .post_tag--qt {
  font-size: clamp(34px, 12vw, 58px);
  font-size: clamp(34px, 16cqw, 58px);
  font-weight: 1000;
}

.qt-feed-reveal-card:active .feed-qt-overlay,
.qt-feed-reveal-card:active .feed-qt-text-wrap,
.qt-feed-reveal-card:active .feed-qt-text-wrap p {
  opacity: 0 !important;
  pointer-events: none;
}

.card-hero-qt {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 36px;
  margin-bottom: 18px;
}

.qt-bg-image,
.qt-bg-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  z-index: 1;
}

.qt-bg-image {
  background-size: cover;
  background-position: center;
}

.qt-bg-video video,
.qt-bg-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.qt-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.card-hero-qt--has-media.is-revealed .qt-overlay {
  opacity: 0 !important;
  pointer-events: none;
}

.qt-text {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  min-height: 0;
  height: 100%;
  display: grid;
  gap: 18px;
  place-items: center;
  place-content: center;
  text-align: center;
  transition: opacity 0.18s ease;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-qt-message {
  width: 100%;
  margin: 0 auto;
  align-self: center;
  justify-self: center;
  font-family: var(--qt-font, inherit);
  font-size: clamp(44px, 6.25vw, 92px);
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: break-word;
  word-break: normal;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

.card-qt-message .full-card__inline-tag,
.card-qt-message .full-card__inline-user {
  color: inherit;
}

.full-card__quicktext-tag {
  display: inline-flex;
  width: fit-content;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: inherit;
  text-decoration: none;
}

.full-card__title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #2b2b2b;
}

.full-card__body {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.full-card__inline-tag {
  color: #da4a28;
  font-weight: 800;
}

.full-card__inline-user {
  color: #1f7f8d;
  font-weight: 800;
}

.full-card__meta-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.full-card__meta-box {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #efdfd8;
  background: #fff9f6;
  min-height: 92px;
}

.full-card__meta-label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  color: #b9664f;
}

.full-card__meta-value {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  color: #1f1f1f;
}

.full-card__meta-value a {
  color: #da4a28;
}

.full-card__merchant-domain {
  display: block;
  margin-bottom: 8px;
  color: #171210;
}

.full-card__meta-value--coupon {
  letter-spacing: 0.06em;
}

.full-card__deal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.full-card__deal-price-original {
  color: #8a8a8a;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.full-card__deal-price strong {
  color: #1f9d55;
  font-size: 22px;
  line-height: 1;
}

.full-card__deal-modifier {
  display: block;
  margin-top: 4px;
  color: #da4a28;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.full-card__stats-inline {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 13px;
  align-items: center;
}

.full-card__deck-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.full-card__premium-inline {
  display: grid;
  gap: 8px;
  min-width: min(100%, 320px);
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #eed6ce;
  background: linear-gradient(180deg, #fffaf8, #fff4ef);
}

.full-card__premium-label {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  color: #b46149;
}

.full-card__premium-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.full-card__premium-controls select {
  flex: 1 1 220px;
}

.full-card__premium-note {
  margin: 0;
  color: #7a665f;
  font-size: 13px;
  line-height: 1.5;
}

.full-card__action-row {
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 6px;
  padding-top: 4px;
  padding-bottom: 2px;
}

.full-card__action-row .full-card__action-pill,
.full-card__action-row .full-card__soft-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f6f6f8;
  color: #222;
  border: 1px solid #ededee;
  text-decoration: none;
  min-height: 42px;
  min-width: 136px;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.full-card__action-row .full-card__action-pill:hover,
.full-card__action-row .full-card__soft-action:hover {
  background: #ececef;
  color: #111;
}

.full-card__creator-actions .full-card__soft-action {
  background: #fff;
  color: #333;
  border-color: #ececec;
}

.full-card__creator-actions .full-card__soft-action:hover {
  background: #f7f7f7;
}

.full-card__creator-actions .full-card__soft-action.is-active,
.full-card__action-row .full-card__action-pill.is-active {
  background: #da4a28;
  border-color: #da4a28;
  color: #fff;
}

.full-card__action-row .full-card__action-pill--premium-upgrade,
.full-card__action-row .full-card__action-pill--premium-upgrade.is-active {
  border-color: #9d7617;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.14) 22%, transparent 34%),
    linear-gradient(145deg, #f9e27b 0%, #d4af37 28%, #a97914 52%, #f4d76a 76%, #8f6812 100%);
  color: #16110a;
  box-shadow: 0 14px 26px rgba(139, 101, 18, 0.22);
}

.full-card__action-row .full-card__action-pill--premium-upgrade:hover,
.full-card__action-row .full-card__action-pill--premium-upgrade:focus-visible {
  border-color: #815d0d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 22%, transparent 34%),
    linear-gradient(145deg, #fff0a0 0%, #ddb843 28%, #b58519 52%, #f8de75 76%, #9b7216 100%);
  color: #16110a;
}

.full-card__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  margin-right: 0;
  font-size: 13px;
  line-height: 1;
  opacity: 1;
  color: inherit;
}

.full-card__action-icon .fa {
  font-size: 13px;
  line-height: 1;
  color: inherit;
}

.full-card__action-row .full-card__action-pill span:last-child,
.full-card__action-row .full-card__soft-action span:last-child {
  font-size: 14px;
  font-weight: 700;
}

.full-card__chip {
  background: #f4f4f4;
  border-color: #ececec;
  color: #666;
}

.full-card__chip--tag,
.full-card__chip--type {
  color: #7f50d4;
  background: #f4effd;
  border-color: #ebe2fd;
}

.full-card__chip--metro {
  color: #da4a28;
  background: #fbf2ec;
  border-color: #f2e0d5;
}

.full-card__chip--date {
  color: #666;
  background: #f4f4f4;
  border-color: #ececec;
}

.full-card__chip--pinned {
  color: #fff;
  background: #da4a28;
  border-color: #da4a28;
}


.full-card__date-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f4f4f4;
  border: 1px solid #ececec;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.card-hero-qt {
  padding: 0;
  min-height: 690px;
  align-items: center;
  justify-content: center;
}

.qt-text {
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 32px;
}

.card-kicker {
  display: none;
}

.full-card__quicktext-tag {
  margin-top: 6px;
  font-size: 18px;
  color: inherit;
}

.qt-video-clickable,
.qt-reveal-card,
.qt-feed-reveal-card {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

.qt-reveal-card.is-revealed .qt-overlay,
.qt-reveal-card.is-revealed .qt-text,
.qt-feed-reveal-card.is-revealed .feed-qt-overlay,
.qt-feed-reveal-card.is-revealed .feed-qt-text-wrap,
.qt-feed-reveal-card.is-revealed .feed-qt-text-wrap p {
  opacity: 0 !important;
  pointer-events: none;
}

.full-card-comments-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.full-card-discovery-shell {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.full-card-hot-takes-shell {
  overflow: hidden;
}

.full-card-page-section-header {
  margin-bottom: 14px;
}

.full-card-page-section-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.full-card-hot-takes-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.full-card-hot-takes-stack-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.full-card-hot-takes-stack-action:hover,
.full-card-hot-takes-stack-action:focus {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.22);
}

.full-card-page-section-note {
  margin: 8px 0 0;
  color: #6e6e6e;
  font-size: 15px;
  line-height: 1.5;
}

.full-card-login-note {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.take-form,
.comment-form,
.comment-reply-form {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.full-card-inline-form {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff7f4, #ffffff);
  border: 1px solid #f1d7cf;
}

.full-card-inline-form--reply {
  margin-top: 12px;
  padding: 14px;
  background: #ffffff;
  border-style: dashed;
}

.full-card-inline-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.full-card-inline-form__label {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  color: #da4a28;
  border: 1px solid #f0d4cb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.take-form input,
.take-form textarea,
.comment-form textarea,
.comment-reply-form textarea {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
}

.card-studio-media-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-studio-media-preview img,
.card-studio-media-preview video,
.card-studio-media-preview iframe {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 0;
  display: block;
  background: #111;
}

.comment-form .card-studio-media-preview,
.comment-reply-form .card-studio-media-preview,
.take-form .card-studio-media-preview {
  padding-top: 4px;
}

.comment-form .card-studio-media-preview img,
.comment-form .card-studio-media-preview video,
.comment-form .card-studio-media-preview iframe,
.comment-reply-form .card-studio-media-preview img,
.comment-reply-form .card-studio-media-preview video,
.comment-reply-form .card-studio-media-preview iframe {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.hot-takes-rail {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 14px;
  margin-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
  .full-card-hot-takes-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .full-card-hot-takes-stack-action {
    width: 100%;
  }
}

.hot-take-card {
  flex: 0 0 420px;
  min-width: 420px;
  max-width: 420px;
  scroll-snap-align: start;
}

.hot-take-card__shell {
  position: relative;
  display: flex;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(218, 74, 40, 0.88), rgba(110, 34, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 36px rgba(95, 26, 11, 0.22);
}

.hot-take-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 24px;
}

.hot-take-card__shell.has-media {
  background-image: var(--hot-take-bg);
  background-size: cover;
  background-position: center;
}

.hot-take-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(218, 74, 40, 0.78);
}

.hot-take-card__shell.is-text-only .hot-take-card__overlay {
  background: rgba(218, 74, 40, 0.9);
}

.hot-take-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 280px;
  padding: 20px 22px;
  pointer-events: none;
}

.hot-take-card__body {
  align-self: stretch;
  font-size: 22px;
  line-height: 1.4;
  color: #fff7f3;
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hot-take-card__authorbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  justify-self: start;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}

.hot-take-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 44px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hot-take-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-take-card__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.hot-take-card__author {
  display: grid;
  gap: 2px;
  min-width: 0;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.hot-take-card__author strong {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
}

.hot-take-card__author span {
  font-size: 12px;
  color: rgba(255, 244, 238, 0.84);
  font-weight: 700;
}

.hot-take-card__body a,
.hot-take-card__inline-tag,
.hot-take-card__inline-user,
.hot-take-card__author a,
.hot-take-card__author strong,
.hot-take-card__author span {
  color: inherit;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  text-decoration: none;
  pointer-events: auto;
}

.hot-take-card__body a,
.hot-take-card__inline-tag,
.hot-take-card__inline-user {
  position: relative;
  z-index: 4;
}

.hot-take-card__media-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.hot-take-card__media-badge .mini-card__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 84px;
  background: rgba(14, 10, 8, 0.82);
  font-size: 12px;
}

.comment-thread-list {
  display: grid;
  gap: 16px;
}

.comment-thread-item {
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #fafafa, #ffffff);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.comment-thread-item.is-reply {
  margin-left: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
}

.comment-thread-item__author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.comment-thread-item__avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #da4a28, #1ea9b7);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.comment-thread-item__author-meta {
  display: grid;
  gap: 3px;
}

.comment-thread-item__author-meta strong {
  font-size: 15px;
  line-height: 1.1;
}

.comment-thread-item__author-meta span {
  color: #7a7a7a;
  font-size: 13px;
  line-height: 1.1;
}

.comment-thread-item__timestamp {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #8a8a8a;
}

.comment-thread-item__body {
  color: #313131;
  line-height: 1.7;
  font-size: 15px;
}

.comment-thread-item__media {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.comment-thread-item__media img,
.comment-thread-item__media video,
.comment-thread-item__media iframe {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  border: 0;
  display: block;
  background: #111;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.comment-thread-item .take-form__actions {
  margin-bottom: 0;
}

.comment-thread-item .take-form__actions button,
.comment-form .take-form__actions button,
.take-form .take-form__actions button {
  font-size: 13px;
  font-weight: 800;
}

.comment-thread-item .js-open-reply-media,
.comment-thread-item .js-remove-reply-media,
#openCommentMediaBtn,
#removeCommentMediaBtn,
#openTakeMediaBtn,
#removeTakeMediaBtn {
  background: #f3e3dd;
  color: #7a3f2d;
}

#removeTakeMediaBtn.is-hidden,
#removeTakeMediaBtn[hidden] {
  display: none !important;
}

#removeCommentMediaBtn.is-hidden,
#removeCommentMediaBtn[hidden],
.reply-remove-media-btn.is-hidden,
.reply-remove-media-btn[hidden] {
  display: none !important;
}

.comment-thread-item .js-open-reply-media:hover,
.comment-thread-item .js-remove-reply-media:hover,
#openCommentMediaBtn:hover,
#removeCommentMediaBtn:hover,
#openTakeMediaBtn:hover,
#removeTakeMediaBtn:hover {
  background: #ebd2ca;
}

@media (max-width: 767px) {
  .full-card {
    padding: 18px 18px 10px;
    border-radius: 20px;
  }

  .full-card__context-row,
  .full-card__creator-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .full-card__context-choice-tray {
    width: 100%;
  }

  .full-card__gallery--grid,
  .full-card__body-shell {
    grid-template-columns: 1fr;
  }

  .full-card__body-shell--take {
    grid-template-columns: 1fr;
  }

  .full-card__take-original {
    margin-top: 6px;
  }

  .mini-card {
    padding: 16px;
  }

  .deck-hero__content {
    grid-template-columns: 1fr;
  }

  .deck-hero__content,
  .deck-manage-hero {
    padding: 18px;
  }

  .deck-hero__avatar {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .deck-hero__media img,
  .deck-hero__fallback {
    height: 200px;
  }

  .profile-hero-body {
    padding: 18px;
  }

  .profile-hero-banner img,
  .profile-hero-banner__fallback {
    height: 180px;
  }

  .full-card__battle-vote {
    max-width: 100%;
    min-width: 0;
  }

  .full-card__battle-meter-wrap {
    min-width: 0;
  }

  .full-card-inline-form {
    padding: 14px;
  }

  .take-stack-card__take {
    margin-left: 10px;
    padding: 16px;
  }

  .take-stack-card__original {
    margin-right: 10px;
    padding: 20px 16px 16px;
  }

  .full-card__gallery-item,
  .full-card__gallery img,
  .full-card__gallery video,
  .full-card__gallery iframe,
  .full-card__gallery-item.is-primary img,
  .full-card__gallery-item.is-primary video,
  .full-card__gallery-item.is-primary iframe {
    min-height: 220px;
  }

  .full-card__carousel {
    margin-left: -18px;
    margin-right: -18px;
    margin-top: -18px;
  }

  .full-card__carousel-slide img {
    min-height: 220px;
  }

  .full-card[data-card-type="event"] .full-card__gallery-item,
  .full-card[data-card-type="event"] .full-card__gallery-item.is-primary {
    min-height: clamp(220px, 56vw, 300px);
  }

  .full-card[data-card-type="event"] .full-card__gallery img,
  .full-card[data-card-type="event"] .full-card__gallery video,
  .full-card[data-card-type="event"] .full-card__gallery iframe,
  .full-card[data-card-type="event"] .full-card__gallery-item.is-primary img,
  .full-card[data-card-type="event"] .full-card__gallery-item.is-primary video,
  .full-card[data-card-type="event"] .full-card__gallery-item.is-primary iframe,
  .full-card[data-card-type="event"] .full-card__carousel-slide img {
    height: clamp(220px, 56vw, 300px);
    max-height: 300px;
  }

  .full-card[data-card-type="event"] .full-card__gallery-item--youtube,
  .full-card[data-card-type="event"] .full-card__gallery-item--youtube.is-primary {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .full-card[data-card-type="event"] .full-card__gallery-item--youtube iframe,
  .full-card[data-card-type="event"] .full-card__gallery-item--youtube.is-primary iframe {
    aspect-ratio: 16 / 9;
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .full-card__carousel-arrow {
    opacity: 1;
    pointer-events: auto;
    width: 42px;
    height: 42px;
  }

  .mini-card__media {
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -16px;
  }

  .mini-card__media-badges {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .feed-qt-text-card {
    min-height: 300px;
  }

  .feed-qt-card {
    margin-left: 0;
    margin-right: 0;
  }

  .feed-qt-text-wrap {
    min-height: 0;
    height: 100%;
    padding: 18px;
  }

  .feed-qt-text-wrap p {
    font-size: clamp(24px, 9vw, 42px);
  }

  .feed-qt-card--short .feed-qt-text-wrap p {
    font-size: clamp(42px, 15vw, 62px) !important;
    line-height: 0.9;
  }

  .feed-qt-card--medium .feed-qt-text-wrap p {
    font-size: clamp(34px, 12vw, 54px) !important;
    line-height: 0.94;
  }

  .take-surface-card .feed-qt-card--short .feed-qt-text-wrap p {
    font-size: clamp(42px, 15vw, 62px) !important;
    line-height: 0.9;
  }

  .take-surface-card .feed-qt-card--medium .feed-qt-text-wrap p {
    font-size: clamp(34px, 12vw, 54px) !important;
    line-height: 0.94;
  }

  .feed-qt-text-wrap > .post_tag--qt {
    font-size: clamp(38px, 13vw, 56px) !important;
  }

  .feed-qt-card--short .feed-qt-text-wrap .post_tag--qt,
  .feed-qt-card--medium .feed-qt-text-wrap .post_tag--qt {
    font-size: 0.72em !important;
  }

  .card-hero-qt {
    min-height: 360px;
  }

  .card-qt-message {
    font-size: clamp(28px, 6vw, 48px);
  }

  .full-card-page-shell {
    padding: 12px;
    border-radius: 18px;
  }

  .full-card__action-row .full-card__action-pill,
  .full-card__action-row .full-card__soft-action {
    min-width: 0;
    flex: 1 1 calc(50% - 6px);
    padding: 8px 14px;
  }

  .hot-take-card {
    flex-basis: min(84vw, 360px);
    max-width: min(84vw, 360px);
  }

  .hot-take-card__content,
  .hot-take-card__shell {
    min-height: 250px;
  }

  .hot-take-card__body {
    font-size: 18px;
    -webkit-line-clamp: 6;
  }

  .hot-take-card__authorbar {
    gap: 10px;
  }

.comment-thread-item.is-reply {
    margin-left: 12px;
  }
}

.comment-panel {
  margin-top: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.comment-panel-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.comment-panel-head .full-card-page-section-kicker {
  margin-bottom: 0;
}

.comment-panel-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}

.comment-panel-head p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #727272;
}

.comment-composer-card {
  margin-bottom: 22px;
  border: 1px solid #e8ded7;
  border-radius: 22px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.card-comment-editor {
  background: #fff;
  border: 1px solid #efe5de;
  border-radius: 24px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.card-comment-editor textarea {
  width: 100%;
  min-height: 110px;
  border: 0;
  resize: vertical;
  padding: 4px 0;
  background: transparent;
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  outline: none;
}

.comment-tag-row,
.reply-form-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.comment-tag-icon,
.reply-tag-icon {
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  color: #151515;
}

.comment-tag-row input,
.reply-form-meta input {
  width: 140px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 7px 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  outline: none;
}

.comment-tag-row input:focus,
.reply-form-meta input:focus {
  border-bottom-color: #da4a28;
}

.comment-media-preview,
.reply-media-preview {
  display: none;
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f5;
}

.comment-media-preview:not(:empty),
.reply-media-preview:not(:empty) {
  display: block;
}

.comment-media-preview img,
.comment-media-preview video,
.comment-media-preview iframe,
.reply-media-preview img,
.reply-media-preview video,
.reply-media-preview iframe {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border: 0;
  background: #000;
}

.comment-actions,
.reply-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.comment-media-btn,
.comment-media-remove-btn,
.reply-upload-btn,
.reply-remove-media-btn {
  border: 0;
  background: transparent;
  color: #da4a28;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.comment-submit,
.reply-submit-btn {
  border: 0;
  border-radius: 999px;
  background: #da4a28;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.comment-thread-shell {
  margin-top: 20px;
  border: 1px solid #e8ded7;
  border-radius: 22px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.comment-thread-head {
  margin-bottom: 16px;
}

.comment-thread-head p {
  margin: 0;
  color: #111;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.comment-thread-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  border: 1px solid #ececec;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: 0 14px 32px rgba(30, 20, 15, 0.08);
}

.comment-card.has-media {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
}

.comment-card.has-rank {
  grid-template-columns: minmax(0, 1fr) auto;
}

.comment-card.has-media.has-rank {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) auto;
}

.comment-card-side {
  min-width: 0;
}

.comment-card-rank-col {
  display: flex;
  align-items: flex-start;
  grid-column: -1;
  justify-content: flex-end;
}

.comment-rank-pill {
  width: 72px;
  min-height: 108px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 8px;
}

.comment-rank-number {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
}

.comment-rank-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.comment-card-media-col {
  display: flex;
  align-items: flex-start;
  grid-column: 1;
  width: 100%;
}

.comment-card-media {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #f4f4f4;
}

.comment-card-media img,
.comment-card-media video,
.comment-card-media iframe {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 0;
  background: #000;
}

.comment-card-content-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  width: 100%;
}

.comment-card.has-media .comment-card-content-col {
  grid-column: 2;
}

.comment-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.comment-author-avatar,
.subcomment-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #da4a28, #5fcad4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;
}

.comment-author-meta,
.subcomment-author-meta {
  min-width: 0;
}

.comment-author-name,
.subcomment-author-name {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.comment-author-username,
.subcomment-author-username {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: #7f7f7f;
}

.comment-author-date,
.subcomment-date {
  margin-left: auto;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: #82766f;
}

.comment-card-body,
.subcomment-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(100% - 64px);
  margin-left: 64px;
  min-width: 0;
}

.comment-card-text {
  font-size: 18px;
  line-height: 1.7;
  color: #202020;
}

.subcomment-text {
  font-size: 15px;
  line-height: 1.65;
  color: #222;
}

.comment-card-meta,
.subcomment-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.comment-tag-chip,
.subcomment-tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(218, 74, 40, 0.12);
  color: #da4a28;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.comment-card-actions-col,
.subcomment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.comment-action-link,
.subcomment-action-link {
  color: #da4a28;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.reply_form {
  display: none;
}

.reply_form.is-open {
  display: block;
  width: 100%;
}

.comment-card-reply-form,
.subcomment-reply-form {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
  width: 100%;
  min-width: 0;
  align-self: stretch;
}

.reply-form-shell,
.reply-form-shell-sub {
  background: #fff;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.reply-form-shell textarea,
.reply-form-shell-sub textarea {
  min-height: 110px;
}

.comment-card-reply-form .card-comment-editor,
.subcomment-reply-form .card-comment-editor {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.comment-card-reply-form .reply-form-actions,
.subcomment-reply-form .reply-form-actions {
  justify-content: space-between;
}

.onthers_reply {
  margin-top: 12px;
  margin-left: 34px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #f0f0f0;
  background: #fcfcfc;
}

.subcomment-card {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #e7e7e7;
  background: #f6f6f7;
}

.onthers_reply {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f4f4f4;
  margin-left: 68px;
}

.subcomment-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin-bottom: 12px;
}

.subcomment-media-wrap {
  max-width: 420px;
}

.media-viewer-modal.is-hidden {
  display: none;
}

.media-viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 10080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.media-viewer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.media-viewer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  height: min(88vh, 780px);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-viewer-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.84);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.media-viewer-modal__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-viewer-modal__content img,
.media-viewer-modal__content video,
.media-viewer-modal__content iframe {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  background: #000;
}

.media-viewer-modal__content iframe {
  width: 100%;
  height: 100%;
}

body.media-viewer-open {
  overflow: hidden;
}

.comment-login-box {
  border: 1px solid #efe2d8;
  background: #fffaf7;
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 22px;
}

.comment-login-box p {
  margin: 0 0 14px;
  font-size: 15px;
  color: #5e544f;
}

.comment-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.share-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
}

.share-menu-overlay__backdrop {
  position: absolute;
  inset: 0;
}

.share-menu-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 28px));
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  z-index: 9999;
  overflow: hidden;
}

.share-menu-overlay.is-hidden,
.share-menu-dialog.is-hidden {
  display: none;
}

.share-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid #ececec;
}

.share-menu-head h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

.share-menu-close {
  border: 0;
  background: transparent;
  color: #6a6a6a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.share-menu-body {
  padding: 18px 20px 20px;
}

.share-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.share-menu-btn {
  border: 0;
  background: #f6f6f6;
  border-radius: 14px;
  padding: 14px 12px;
  color: #161616;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.share-menu-btn:hover {
  background: #ececec;
}

.share-menu-url {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid #ededed;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-all;
}

.collect-menu-form {
  display: grid;
  gap: 16px;
  padding: 18px 20px 20px;
}

.collect-menu-form__best-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: start;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #e2ae22;
  border-radius: 8px;
  background: #fff7d6;
  color: #6f4b00;
  font-weight: 800;
  cursor: pointer;
}

.collect-menu-form__best-btn.is-active {
  background: #6f4b00;
  border-color: #6f4b00;
  color: #fff;
}

.collect-menu-form__deck-tools {
  display: grid;
  gap: 12px;
}

.collect-menu-form__reveal-btn {
  justify-self: start;
}

.collect-menu-form__deck-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #fff7f3;
  border: 1px solid #ecd8cf;
}

.collect-menu-form__deck-panel.is-hidden {
  display: none;
}

.collect-menu-form__selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collect-menu-form__selected-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 0;
  background: #da4a28;
  color: #fff;
  font-weight: 800;
}

.collect-menu-form__deck-results {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.collect-menu-form__deck-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #efd8cf;
  background: #fff;
  color: #5f3023;
  text-align: left;
}

.collect-menu-form__deck-result span {
  color: #9a5e4f;
  font-size: 13px;
  font-weight: 700;
}

.collect-menu-form__actions {
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .comment-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .comment-card-media-col {
    order: 1;
    width: 100%;
  }

  .comment-card-content-col {
    order: 3;
  }

  .comment-card-body,
  .subcomment-body {
    width: calc(100% - 64px);
    margin-left: 64px;
  }

  .comment-card-rank-col {
    align-self: flex-end;
    order: 2;
  }

  .comment-card-media img,
  .comment-card-media video,
  .comment-card-media iframe {
    height: 220px;
  }

  .comment-rank-pill {
    width: auto;
    min-height: 0;
    padding: 10px 14px;
    flex-direction: row;
    gap: 8px;
  }

  .comment-rank-number {
    margin-bottom: 0;
    font-size: 18px;
  }

  .comment-author-date,
  .subcomment-date {
    white-space: normal;
    text-align: right;
  }

  .onthers_reply {
    margin-left: 0;
  }

  .share-menu-grid {
    grid-template-columns: 1fr;
  }

  .deck-manage-hero--v2,
  .deck-manager-layout,
  .deck-card-picker__item {
    grid-template-columns: 1fr;
  }

  .deck-manager-nav {
    position: static;
  }
}

.take-composer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.take-composer-modal.is-hidden {
  display: none;
}

.take-composer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}

.take-composer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.take-composer-modal__close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: transparent;
  color: #7d7d7d;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.take-composer-modal__head {
  padding: 18px 22px 12px;
  border-bottom: 1px solid #efe8e3;
}

.take-composer-modal__head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #171717;
}

.take-composer-modal__head p {
  margin: 8px 0 0;
  font-size: 15px;
  color: #7a726d;
}

.take-composer-form {
  padding: 20px 18px 10px;
}

.take-composer-form__shell {
  border: 1px solid #ece5df;
  border-radius: 24px;
  padding: 18px;
}

.take-composer-form textarea {
  width: 100%;
  min-height: 170px;
  border: 0;
  background: transparent;
  resize: vertical;
  font-size: 22px;
  line-height: 1.45;
  color: #222;
  outline: none;
}

.take-composer-tag-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f5f5f7;
}

.take-composer-tag-icon {
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  color: #da4a28;
}

.take-composer-tag-row input {
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  color: #6f7984;
  outline: none;
  min-width: 140px;
}

.take-composer-media-preview,
.take-composer-media-preview:empty {
  display: none;
}

.take-composer-media-preview:not(:empty) {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  overflow-x: auto;
  margin-top: 16px;
}

.take-composer-media-tile {
  flex: 0 0 148px;
  width: 148px;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f5;
}

.take-composer-media-preview img,
.take-composer-media-preview video,
.take-composer-media-preview iframe {
  display: block;
  width: 148px;
  height: 148px;
  object-fit: cover;
  border: 0;
  background: #000;
}

.take-composer-actions {
  margin-top: 16px;
}

.take-composer-actions--submit {
  justify-content: flex-start;
  margin-top: 8px;
  margin-bottom: 0;
}

.take-composer-actions--submit #deleteTakeBtn {
  background: #171717;
  border-color: #171717;
  color: #fff;
}

.take-composer-preview {
  padding: 0 18px 22px;
}

.take-composer-preview__original {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.take-composer-preview__original .description_view,
.take-composer-preview__original .view_wrapper,
.take-composer-preview__original .mini-card {
  opacity: 0.96;
}

body.take-composer-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .take-composer-modal {
    padding: 8px;
  }

  .take-composer-modal__dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 22px;
  }

  .take-composer-form textarea {
    min-height: 140px;
    font-size: 18px;
  }

}
.mini-card__commerce-price small {
  display: block;
  margin-top: 3px;
  color: #66727f;
  font-size: 0.72rem;
  line-height: 1.25;
}

.outbound-link-modal__affiliate-note {
  margin: 10px 0 0;
  font-weight: 700;
  color: #26323f;
}

.amazon-mini-card {
  overflow: hidden;
  border: 1px solid #d8e0e8;
  border-radius: 8px;
  background: #fff;
}

.amazon-mini-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 18px;
  background: #f7f8fa;
}

.amazon-mini-card__media img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.amazon-mini-card__image-fallback {
  color: #687382;
  font-weight: 900;
}

.amazon-mini-card__deal-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 3px;
  padding: 6px 9px;
  background: #cc0c39;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.amazon-mini-card__body {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.amazon-mini-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #657180;
  font-size: 0.78rem;
  font-weight: 800;
}

.amazon-mini-card__topline a {
  color: #2368a2;
  text-decoration: none;
}

.amazon-mini-card h5 {
  margin: 0;
  color: #151d27;
  font-size: 1rem;
  line-height: 1.25;
}

.amazon-mini-card p {
  margin: 0;
  color: #46515d;
  font-size: 1rem;
  line-height: 1.5;
}

.amazon-mini-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.amazon-mini-card__percent {
  color: #cc0c39;
  font-size: 1.2rem;
  font-weight: 500;
}

.amazon-mini-card__price {
  color: #171717;
  font-size: 1.4rem;
  line-height: 1;
}

.amazon-mini-card__list-price,
.amazon-mini-card__asof {
  color: #687382;
  font-size: 0.78rem;
}

.amazon-mini-card__list-price span {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-weight: 400;
}

.amazon-mini-card__button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  margin-left: auto;
  padding: 0 14px;
  background: #ffce12;
  color: #111820;
  font-weight: 900;
  cursor: pointer;
}

.amazon-mini-card__affiliate-note {
  color: #687382;
  font-size: 0.62rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
