/*
 * Shared editorial article styles — TVP reference.
 * Mirrored byte-for-byte in sport_v2/public/assets/css/article.css.
 * When this file changes, update its TVS mirror in the same commit.
 */

.article-css {
}

@media (width <= 400px) {
  .article-css-h1 {
    font-size: 1.5rem;
  }

  .article-css-h2 {
    font-size: 1.2rem;
  }
}

@media (400px <= width <= 500px) {
  .article-css-h1 {
    font-size: 1.6rem;
  }

  .article-css-h2 {
    font-size: 1.3rem;
  }
}

@media (500px <= width <= 800px) {
  .article-css-h1 {
    font-size: 1.7rem;
  }

  .article-css-h2 {
    font-size: 1.4rem;
  }
}

@media (width >= 800px) {
  .article-css-h1 {
    font-size: 1.8rem;
  }

  .article-css-h2 {
    font-size: 1.7rem;
  }
}

.article-css h2 {
  font-size: 1.5rem;
  font-weight: 700;
  padding-top: 30px;
}

.article-css h3 {
  font-size: 1.3rem;
  font-weight: 500;
  padding-top: 20px;
}

.article-css a:not(.btn) {
  text-decoration: underline;
  color: #00679e;
}

.article-css blockquote {
  border-left: 5px solid var(--tvp-accent, #75a0b2);
  margin: 18px;
  padding: 10px;
  font-style: italic;
  font-size: 1.5rem;
}

.chapeau-css {
}

.tvp-sondage {
  --tvp-sondage-bg: #ffffff;
  --tvp-sondage-muted-bg: #f6f8fb;
  --tvp-sondage-border: #d9e2ec;
  --tvp-sondage-border-strong: #b9c8d8;
  --tvp-sondage-text: #1f2937;
  --tvp-sondage-muted: #5c6b7a;
  --tvp-sondage-accent: #c61f2f;
  --tvp-sondage-accent-dark: #a51525;
  --tvp-sondage-bar: #dfe7f1;
  --tvp-sondage-shadow: 0 10px 26px rgb(15 23 42 / 0.08);

  display: block;
  margin: 1.15rem auto;
  padding: 0.95rem;
  border: 1px solid var(--tvp-sondage-border);
  border-radius: 8px;
  background: var(--tvp-sondage-bg);
  box-shadow: var(--tvp-sondage-shadow);
  color: var(--tvp-sondage-text);
  font-size: 1rem;
  line-height: 1.35;
}

.tvp-sondage-head {
  display: grid;
  gap: 0.24rem;
  margin-bottom: 0.72rem;
}

.tvp-sondage .tvp-sondage-kicker {
  margin: 0;
  color: var(--tvp-sondage-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.tvp-sondage .tvp-sondage-question {
  margin: 0;
  padding-top: 0;
  color: var(--tvp-sondage-text);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.24;
}

.tvp-sondage .tvp-sondage-total {
  margin: 0;
  color: var(--tvp-sondage-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.tvp-sondage-options {
  display: grid;
  gap: 0.54rem;
}

.tvp-sondage-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 2.8rem;
  padding: 0.64rem 0.78rem;
  border: 1px solid var(--tvp-sondage-border);
  border-radius: 8px;
  background: var(--tvp-sondage-muted-bg);
  color: var(--tvp-sondage-text);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.tvp-sondage-option span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tvp-sondage-option:hover,
.tvp-sondage-option:focus-visible {
  border-color: var(--tvp-sondage-accent);
  background: #fff5f6;
  color: var(--tvp-sondage-accent-dark);
  outline: none;
  transform: translateY(-1px);
}

.tvp-sondage-option:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.tvp-sondage-results {
  display: grid;
  gap: 0.58rem;
  margin-top: 0.7rem;
}

.tvp-sondage-result {
  display: grid;
  gap: 0.32rem;
  padding: 0.64rem 0.72rem;
  border: 1px solid var(--tvp-sondage-border);
  border-radius: 8px;
  background: var(--tvp-sondage-muted-bg);
}

.tvp-sondage-result.is-selected {
  border-color: var(--tvp-sondage-accent);
  background: #fff7f8;
}

.tvp-sondage-result.is-correct {
  border-color: #15803d;
  background: #f0fdf4;
}

.tvp-sondage-result.is-wrong {
  border-color: #dc2626;
  background: #fff1f2;
}

.tvp-sondage-result-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--tvp-sondage-text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.28;
}

.tvp-sondage-result-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tvp-sondage-result-line strong {
  flex: 0 0 auto;
  font-weight: 800;
}

.tvp-sondage-bar {
  overflow: hidden;
  width: 100%;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--tvp-sondage-bar);
}

.tvp-sondage-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--tvp-sondage-accent);
  transition: width 0.25s ease;
}

.tvp-sondage-result.is-correct .tvp-sondage-bar span {
  background: #15803d;
}

.tvp-sondage-result.is-wrong .tvp-sondage-bar span {
  background: #dc2626;
}

.tvp-sondage .tvp-sondage-votes,
.tvp-sondage .tvp-sondage-note,
.tvp-sondage .tvp-sondage-status,
.tvp-sondage .tvp-sondage-empty {
  margin: 0;
  color: var(--tvp-sondage-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.tvp-sondage .tvp-sondage-note,
.tvp-sondage .tvp-sondage-status {
  margin-top: 0.62rem;
}

.tvp-sondage-status:empty {
  display: none;
}

.tvp-sondage-status[data-tone="error"] {
  color: #b91c1c;
  font-weight: 700;
}

.tvp-sondage .tvp-sondage-quiz-feedback {
  margin: 0.72rem 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.tvp-sondage-quiz-feedback.is-correct {
  color: #15803d;
}

.tvp-sondage-quiz-feedback.is-wrong {
  color: #b91c1c;
}

.tvp-sondage .tvp-sondage-explanation {
  margin: 0.42rem 0 0;
  padding: 0.72rem 0.82rem;
  border-left: 4px solid var(--tvp-sondage-border-strong);
  border-radius: 6px;
  background: var(--tvp-sondage-muted-bg);
  color: var(--tvp-sondage-text);
  font-size: 0.94rem;
  line-height: 1.5;
}

.tvp-sondage.is-loading {
  opacity: 0.9;
}

html[data-theme="dark"] .tvp-sondage,
html.dark .tvp-sondage,
body.dark-mode .tvp-sondage,
body.dark-theme .tvp-sondage {
  --tvp-sondage-bg: #111827;
  --tvp-sondage-muted-bg: #172033;
  --tvp-sondage-border: #2d3a4f;
  --tvp-sondage-border-strong: #46566f;
  --tvp-sondage-text: #f3f6fb;
  --tvp-sondage-muted: #aab7c7;
  --tvp-sondage-bar: #2b374a;
  --tvp-sondage-shadow: 0 12px 28px rgb(0 0 0 / 0.26);
}

html[data-theme="dark"] .tvp-sondage-option:hover,
html[data-theme="dark"] .tvp-sondage-option:focus-visible,
html.dark .tvp-sondage-option:hover,
html.dark .tvp-sondage-option:focus-visible,
body.dark-mode .tvp-sondage-option:hover,
body.dark-mode .tvp-sondage-option:focus-visible,
body.dark-theme .tvp-sondage-option:hover,
body.dark-theme .tvp-sondage-option:focus-visible {
  background: #241821;
}

html[data-theme="dark"] .tvp-sondage-result.is-selected,
html.dark .tvp-sondage-result.is-selected,
body.dark-mode .tvp-sondage-result.is-selected,
body.dark-theme .tvp-sondage-result.is-selected {
  background: #241821;
}

html[data-theme="dark"] .tvp-sondage-result.is-correct,
html.dark .tvp-sondage-result.is-correct,
body.dark-mode .tvp-sondage-result.is-correct,
body.dark-theme .tvp-sondage-result.is-correct {
  background: #0f2418;
}

html[data-theme="dark"] .tvp-sondage-result.is-wrong,
html.dark .tvp-sondage-result.is-wrong,
body.dark-mode .tvp-sondage-result.is-wrong,
body.dark-theme .tvp-sondage-result.is-wrong {
  background: #2a1217;
}

@media (max-width: 575.98px) {
  .tvp-sondage {
    margin-right: -0.15rem;
    margin-left: -0.15rem;
    padding: 0.85rem;
  }

  .tvp-sondage .tvp-sondage-question {
    font-size: 1.08rem;
  }

  .tvp-sondage-option {
    min-height: 2.72rem;
    padding: 0.62rem 0.72rem;
  }
}

.tvp-article-cta {
  --tvp-article-cta-bg: #1f2937;
  --tvp-article-cta-bg-hover: #111827;
  --tvp-article-cta-text: #ffffff;
  --tvp-article-cta-shadow: 0 14px 28px rgb(15 23 42 / 0.14);
  --tvp-article-cta-shadow-hover: 0 18px 34px rgb(15 23 42 / 0.18);
  --tvp-article-cta-ring: rgb(255 255 255 / 0.38);
  --tvp-article-cta-icon-bg: rgb(255 255 255 / 0.3);
  --tvp-article-cta-icon-bg-hover: rgb(255 255 255 / 0.38);
  --tvp-article-cta-icon-size: 3.35rem;
  --tvp-article-cta-icon-offset: 1.35rem;

  position: relative;
  display: block;
  width: 100%;
  margin: 1rem 0;
  padding: 1.15rem calc(var(--tvp-article-cta-icon-size) + (var(--tvp-article-cta-icon-offset) * 2) + 0.35rem) 1.15rem 1.45rem;
  border: 0;
  border-radius: 999px;
  background: var(--tvp-article-cta-bg);
  box-shadow: var(--tvp-article-cta-shadow);
  color: var(--tvp-article-cta-text) !important;
  font-size: clamp(1.08rem, 1rem + 0.38vw, 1.34rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  text-wrap: balance;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, filter 0.18s ease;
}

.tvp-article-cta::before {
  content: "";
  position: absolute;
  right: var(--tvp-article-cta-icon-offset);
  top: 50%;
  width: var(--tvp-article-cta-icon-size);
  height: var(--tvp-article-cta-icon-size);
  border: 3px solid var(--tvp-article-cta-ring);
  border-radius: 50%;
  background: var(--tvp-article-cta-icon-bg);
  transform: translateY(-50%);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tvp-article-cta::after {
  content: "";
  position: absolute;
  right: calc(var(--tvp-article-cta-icon-offset) + (var(--tvp-article-cta-icon-size) / 2) - 0.74rem);
  top: 50%;
  width: 0;
  height: 0;
  border-top: 0.78rem solid transparent;
  border-bottom: 0.78rem solid transparent;
  border-left: 1.16rem solid #ffffff;
  transform: translateY(-50%);
  transition: transform 0.18s ease;
}

a.tvp-article-cta:hover,
button.tvp-article-cta:hover {
  background: var(--tvp-article-cta-bg-hover);
  box-shadow: var(--tvp-article-cta-shadow-hover);
  color: var(--tvp-article-cta-text) !important;
  filter: saturate(1.04);
  transform: translateY(-1px);
}

a.tvp-article-cta:hover::before,
button.tvp-article-cta:hover::before {
  background: var(--tvp-article-cta-icon-bg-hover);
}

a.tvp-article-cta:hover::after,
button.tvp-article-cta:hover::after {
  transform: translateY(-50%);
}

a.tvp-article-cta:focus-visible,
button.tvp-article-cta:focus-visible {
  outline: 3px solid rgb(15 111 219 / 0.34);
  outline-offset: 4px;
}

button.tvp-article-cta {
  cursor: pointer;
}

.tvp-discover-follow-cta-wrap {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0.85rem;
  max-width: var(--tvp-news-reading-max, 46rem);
}

.tvp-discover-follow-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: auto;
  max-width: min(100%, 42rem);
  min-height: 3.5rem;
  padding: 0.62rem 1.35rem;
  border: 1px solid #303134;
  border-radius: 999px;
  background: #ffffff;
  color: #303134 !important;
  text-decoration: none !important;
  box-shadow: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.tvp-discover-follow-cta:hover,
.tvp-discover-follow-cta:focus-visible {
  border-color: #202124;
  background: #f8fafd;
  color: #202124 !important;
  transform: translateY(-1px);
}

.tvp-discover-follow-cta-wrap--audiences .tvp-discover-follow-cta {
  max-width: min(100%, 30rem);
}

.tvp-discover-follow-cta__mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tvp-discover-follow-cta__g {
  display: block;
  width: 2rem;
  height: 2rem;
}

.tvp-discover-follow-cta__body {
  min-width: 0;
  display: block;
}

.tvp-discover-follow-cta__title {
  display: block;
  color: #303134;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-wrap: balance;
  white-space: normal;
}

.tvp-discover-follow-cta__title > span {
  display: inline;
  white-space: normal;
}

@media (max-width: 360px) {
  .tvp-discover-follow-cta {
    gap: 0.6rem;
    padding-right: 0.82rem;
    padding-left: 0.68rem;
  }

  .tvp-discover-follow-cta__g {
    width: 2rem;
    height: 2rem;
  }

  .tvp-discover-follow-cta__title {
    font-size: 0.9rem;
  }
}

.tvp-article-cta--live {
  --tvp-article-cta-bg: #f40009;
  --tvp-article-cta-bg-hover: #d40008;
  --tvp-article-cta-text: #ffffff;
  --tvp-article-cta-shadow: 0 16px 30px rgb(244 0 9 / 0.18), 0 12px 22px rgb(15 23 42 / 0.1);
  --tvp-article-cta-shadow-hover: 0 20px 36px rgb(244 0 9 / 0.22), 0 14px 24px rgb(15 23 42 / 0.13);
  --tvp-article-cta-ring: rgb(255 255 255 / 0.4);
  --tvp-article-cta-icon-bg: rgb(255 255 255 / 0.32);
  --tvp-article-cta-icon-bg-hover: rgb(255 255 255 / 0.4);
}

@media (max-width: 575.98px) {
  .tvp-article-cta {
    --tvp-article-cta-icon-size: 3.05rem;
    --tvp-article-cta-icon-offset: 1rem;

    padding: 0.98rem calc(var(--tvp-article-cta-icon-size) + (var(--tvp-article-cta-icon-offset) * 2) + 0.2rem) 0.98rem 1.08rem;
    font-size: clamp(0.98rem, 1rem + 0.2vw, 1.16rem);
    line-height: 1.18;
  }

  .tvp-article-cta::after {
    border-top-width: 0.68rem;
    border-bottom-width: 0.68rem;
    border-left-width: 1rem;
  }
}

.tvp-article-detail {
  margin: 0;
  min-width: 0;
}

.tvp-article-header {
  max-width: var(--tvp-article-reading-max, 72ch);
  margin: 0 auto 1.08rem;
  padding: 0;
  border-bottom: 0;
}

.tvp-article-header .tvp-article-title {
  margin: 0;
  max-width: none;
  color: var(--tvp-article-title, #0f172a);
  font-size: clamp(1.74rem, 1.36rem + 1.22vw, 2.56rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.tvp-article-chapo {
  margin: 0.86rem 0 0;
  max-width: none;
  padding: 0 0 0 0.96rem;
  border: 0;
  border-left: 3px solid var(--tvp-article-accent, #c61f2f);
  border-radius: 0;
  background: transparent;
  color: var(--tvp-article-text, #1f2937);
  font-size: clamp(1.04rem, 1rem + 0.2vw, 1.2rem);
  line-height: 1.55;
  font-weight: 500;
  text-wrap: pretty;
}

.tvp-news-detail-hero-figure {
  max-width: var(--tvp-article-reading-max, 72ch);
  margin: 0 auto 1rem;
}

.tvp-news-detail-hero-figure .tvp-article-hero {
  margin: 0;
}

.tvp-article-hero {
  display: block;
  width: 100%;
  max-width: var(--tvp-article-reading-max, 72ch);
  height: auto;
  margin: 0 auto 1rem;
  border: 1px solid var(--tvp-article-border, #dbe3ef);
  border-radius: 0.9rem;
  background: var(--tvp-article-media-bg, #e2e8f0);
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.12);
}

.tvp-article-body {
  max-width: var(--tvp-article-reading-max, 72ch);
  margin: 0 auto 1.35rem;
  padding: 0.28rem 0;
  color: var(--tvp-article-text, #1f2937);
  font-size: clamp(1.01rem, 0.98rem + 0.14vw, 1.1rem);
  line-height: 1.72;
  letter-spacing: 0.001em;
}

.tvp-article-body > :first-child {
  margin-top: 0;
}

.tvp-article-body > :last-child {
  margin-bottom: 0;
}

.tvp-article-body p,
.tvp-article-body ul,
.tvp-article-body ol,
.tvp-article-body blockquote,
.tvp-article-body pre,
.tvp-article-body figure,
.tvp-article-body table {
  margin: 0 0 1.06rem;
}

.tvp-article-body h2,
.tvp-article-body h3 {
  color: var(--tvp-article-title, #0f172a);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.tvp-article-body h2 {
  margin: 2rem 0 0.82rem;
  padding-top: 0.35rem;
  font-size: clamp(1.42rem, 1.3rem + 0.58vw, 1.84rem);
  line-height: 1.22;
}

.tvp-article-body h3 {
  margin: 1.35rem 0 0.72rem;
  font-size: clamp(1.2rem, 1.12rem + 0.32vw, 1.42rem);
  line-height: 1.28;
  font-weight: 700;
}

.tvp-article-body ul,
.tvp-article-body ol {
  padding-left: 1.16rem;
}

.tvp-article-body li + li {
  margin-top: 0.34rem;
}

:is(.article-css, .tvp-article-body) {
  --tvp-article-table-surface: #ffffff;
  --tvp-article-table-surface-muted: #f8fafd;
  --tvp-article-table-border: #d7e2ee;
  --tvp-article-table-border-strong: #b6c8de;
  --tvp-article-table-shadow: 0 1px 3px rgb(15 23 42 / 0.09);
  --tvp-article-table-text: var(--tvp-article-text, #1f2937);
  --tvp-article-table-title: var(--tvp-article-title, #0f172a);
  --tvp-article-table-zebra: rgb(15 23 42 / 0.02);
  --tvp-article-table-hover: rgb(15 23 42 / 0.045);
}

html[data-theme="dark"] :is(.article-css, .tvp-article-body),
html.dark :is(.article-css, .tvp-article-body),
body.dark-mode :is(.article-css, .tvp-article-body),
body.dark-theme :is(.article-css, .tvp-article-body) {
  --tvp-article-text: #dbe4ef;
  --tvp-article-text-muted: #a9bacf;
  --tvp-article-title: #f1f5f9;
  --tvp-article-border: #334155;
  --tvp-article-media-bg: #0f172a;
  --tvp-article-link: #90c0ff;
  --tvp-article-link-hover: #bdd8ff;
  --tvp-article-quote-bg: #172334;
  --tvp-article-quote-text: #dbe4ef;
  --tvp-article-quote-mark: #7aa8ff;
  --tvp-article-quote-shadow: 0 8px 22px rgb(2 6 23 / 0.42);
  --tvp-article-hr-line: #334155;
  --tvp-article-hr-glow: rgb(122 168 255 / 0.12);
  --tvp-article-table-surface: #111827;
  --tvp-article-table-surface-muted: #203045;
  --tvp-article-table-border: #334155;
  --tvp-article-table-border-strong: #4b647f;
  --tvp-article-table-shadow: 0 10px 26px rgb(2 6 23 / 0.36);
  --tvp-article-table-text: #dbe4ef;
  --tvp-article-table-title: #f1f5f9;
  --tvp-article-table-zebra: rgb(219 228 239 / 0.06);
  --tvp-article-table-hover: rgb(219 228 239 / 0.1);
}

:is(.article-css, .tvp-article-body) :is(table, .table) {
  width: 100% !important;
  margin: 0 0 1.06rem !important;
  border: 1px solid var(--tvp-article-table-border) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 0.8rem !important;
  background: var(--tvp-article-table-surface) !important;
  box-shadow: var(--tvp-article-table-shadow) !important;
  color: var(--tvp-article-table-text) !important;
  font-size: 1.02rem !important;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
}

:is(.article-css, .tvp-article-body) :is(table, .table) > :not(caption) > * > * {
  padding: 0.78rem 1rem !important;
  border-color: var(--tvp-article-table-border) !important;
  color: var(--tvp-article-table-text) !important;
  vertical-align: middle !important;
  background: transparent !important;
}

:is(.article-css, .tvp-article-body) :is(table, .table) thead th {
  background: var(--tvp-article-table-surface-muted) !important;
  color: var(--tvp-article-table-title) !important;
  font-size: 0.96rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
  border-bottom-width: 1px !important;
}

:is(.article-css, .tvp-article-body) :is(table, .table) thead tr:first-child > :first-child {
  border-top-left-radius: 0.8rem;
}

:is(.article-css, .tvp-article-body) :is(table, .table) thead tr:first-child > :last-child {
  border-top-right-radius: 0.8rem;
}

:is(.article-css, .tvp-article-body) :is(table, .table) tbody tr:nth-child(odd) {
  background: var(--tvp-article-table-zebra) !important;
}

:is(.article-css, .tvp-article-body) :is(table, .table) tbody tr:hover {
  background: var(--tvp-article-table-hover) !important;
}

:is(.article-css, .tvp-article-body) :is(table, .table) tbody tr:hover > * {
  background: transparent !important;
}

:is(.article-css, .tvp-article-body) :is(table, .table) tbody th {
  font-weight: 700 !important;
}

:is(.article-css, .tvp-article-body) :is(table, .table) tbody tr:last-child > :first-child {
  border-bottom-left-radius: 0.8rem;
}

:is(.article-css, .tvp-article-body) :is(table, .table) tbody tr:last-child > :last-child {
  border-bottom-right-radius: 0.8rem;
}

.tvp-article-body a:not(.btn) {
  color: var(--tvp-article-link, #0f5fbf);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.14em;
}

.tvp-article-body a:not(.btn):hover {
  color: var(--tvp-article-link-hover, #0b4b97);
}

.tvp-article-rebound {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem 1rem;
  align-items: center;
  margin: 1.7rem 0;
  padding: 1rem 1.08rem;
  border: 1px solid var(--tvp-article-border, #dbe3ef);
  border-radius: 0.78rem;
  background: var(--tvp-article-table-surface, #ffffff);
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.07);
  color: var(--tvp-article-text, #1f2937);
}

.tvp-article-rebound__label {
  display: inline-flex;
  align-items: center;
  grid-column: 1;
  margin: 0 0 0.18rem;
  color: var(--tvp-article-text-muted, #526174);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tvp-article-rebound__label::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: var(--tvp-article-link, #0f5fbf);
}

.tvp-article-rebound p {
  grid-column: 1;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.42;
}

.tvp-article-rebound__link {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  background: var(--tvp-article-link, #0f5fbf);
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
}

.tvp-article-rebound__link:hover {
  background: var(--tvp-article-link-hover, #0b4b97);
  color: #ffffff !important;
}

@media (max-width: 767.98px) {
  .tvp-article-rebound {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    padding: 0.95rem;
  }

  .tvp-article-rebound__label,
  .tvp-article-rebound p,
  .tvp-article-rebound__link {
    grid-column: 1;
  }

  .tvp-article-rebound__link {
    grid-row: auto;
    width: 100%;
    min-height: 2.6rem;
    white-space: normal;
  }
}

.tvp-article-body blockquote {
  position: relative;
  margin: 1.3rem 0;
  padding: 1rem 1rem 0.92rem 1.2rem;
  border: 1px solid var(--tvp-article-border, #dbe3ef);
  border-left: 0;
  border-radius: 0.84rem;
  box-shadow: inset 0.24rem 0 0 0 var(--tvp-article-accent, #c61f2f), var(--tvp-article-quote-shadow, 0 8px 22px rgb(15 23 42 / 0.08));
  background: var(--tvp-article-quote-bg, #f8fbff);
  overflow: hidden;
  isolation: isolate;
  font-style: italic;
  color: var(--tvp-article-quote-text, #334155);
  font-size: 1.04em;
  line-height: 1.64;
}

.tvp-article-body blockquote::before {
  content: "\201C";
  position: absolute;
  left: 0.72rem;
  top: 0.14rem;
  z-index: -1;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  color: var(--tvp-article-quote-mark, #b91c2f);
  opacity: 0.24;
  pointer-events: none;
}

.tvp-article-body blockquote p {
  margin: 0 0 0.66rem;
}

.tvp-article-body blockquote > *:last-child {
  margin-bottom: 0;
}

.tvp-article-body blockquote footer,
.tvp-article-body blockquote cite {
  display: block;
  margin-top: 0.62rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--tvp-article-border, #dbe3ef);
  color: var(--tvp-article-text-muted, #526174);
  font-size: 0.84em;
  line-height: 1.35;
  font-style: normal;
  font-weight: 600;
}

.tvp-article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  border: 1px solid var(--tvp-article-border, #dbe3ef);
  border-radius: 0.72rem;
  background: var(--tvp-article-media-bg, #e2e8f0);
}

.tvp-article-body iframe,
.tvp-article-body video {
  width: 100%;
  border: 0;
  border-radius: 0.72rem;
}

.tvp-article-body iframe.article-tiktok-player,
.tvp-article-body iframe[src*="tiktok.com/player/v1/"] {
  display: block;
  width: min(100%, 605px);
  height: min(740px, 82vh);
  margin: 1.05rem auto;
  aspect-ratio: auto;
}

.tvp-article-body hr {
  border: 0;
  height: 1px;
  margin: 1.5rem 0;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      var(--tvp-article-hr-line, #d9e3ef) 20%,
      var(--tvp-article-hr-line, #d9e3ef) 80%,
      transparent 100%
    );
  box-shadow: 0 0 0 1px transparent, 0 0 18px var(--tvp-article-hr-glow, rgb(15 111 219 / 0.18));
  opacity: 0.95;
}


.tvp-article-body [style*="text-align: center"] > img,
.tvp-article-body [style*="text-align: right"] > img,
.tvp-article-body [style*="text-align: left"] > img {
  display: inline-block;
}

.tvp-article-body [style*="text-align: center"] > a,
.tvp-article-body [style*="text-align: right"] > a,
.tvp-article-body [style*="text-align: left"] > a {
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.tvp-article-body [style*="text-align: center"] > a > img,
.tvp-article-body [style*="text-align: right"] > a > img,
.tvp-article-body [style*="text-align: left"] > a > img {
  display: block;
}


@media (max-width: 575.98px) {
  .tvp-article-header {
    margin-bottom: 0.94rem;
    padding-bottom: 0;
  }

  .tvp-article-header .tvp-article-title {
    margin-bottom: 0;
    max-width: none;
    font-size: clamp(1.55rem, 7.2vw, 2.08rem);
    line-height: 1.1;
  }

  .tvp-article-chapo {
    margin-top: 0.72rem;
    padding: 0 0 0 0.72rem;
    font-size: 0.99rem;
    line-height: 1.44;
  }

  .tvp-article-body blockquote {
    padding: 0.84rem 0.82rem 0.8rem 0.98rem;
    border-radius: 0.74rem;
    line-height: 1.56;
  }

  .tvp-article-body blockquote::before {
    left: 0.58rem;
    top: 0.1rem;
    font-size: 2.32rem;
  }

  .tvp-article-body {
    font-size: 1rem;
    line-height: 1.66;
  }
}

@media (max-width: 575.98px) {
  :is(.article-css, .tvp-article-body) :is(table, .table) {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.68rem;
  }

  :is(.article-css, .tvp-article-body) :is(table, .table) > :not(caption) {
    width: max-content;
    min-width: 100%;
  }
}
