/*
 * Theme Name:   Triumph River Child
 * Theme URI:    https://blog.triumphriver.com
 * Description:  Progress-first affiliate child theme of TwentyTwentyFive
 * Author:       Triumph River
 * Template:     twentytwentyfive
 * Version:      1.0.0
 */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:          #F5F2EE;
  --surface:     #FFFFFF;
  --dark:        #1C2B1F;
  --dark-2:      #243328;
  --forest:      #2D4A3E;
  --forest-lt:   #3D6354;
  --forest-xlt:  #EAF0ED;
  --stone:       #8C7B6B;
  --stone-lt:    #C4B5A5;
  --stone-xlt:   #F5F0EB;
  --sand:        #D4C4A8;
  --sand-lt:     #FAF7F3;
  --text:        #1C2B1F;
  --text-2:      #3D4D40;
  --muted:       #7A8C7E;
  --muted-lt:    #A8B8AC;
  --border:      #DDD8D0;
  --border-dk:   #2D3D30;
  --topbar-h:    62px;
  --max-w:       1100px;
  --font-head:   'Lora', 'Georgia', serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
  --radius:      10px;
  --radius-sm:   6px;
  --radius-lg:   16px;
  --transition:  0.18s ease;
  --shadow-sm:   0 1px 4px rgba(44,74,62,.06);
  --shadow:      0 4px 20px rgba(44,74,62,.1);
  --shadow-lg:   0 8px 40px rgba(44,74,62,.14);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: var(--font-body) !important;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 !important;
  -webkit-font-smoothing: antialiased;
}
.wp-site-blocks,
.wp-site-blocks > * { padding: 0 !important; margin: 0 !important; }
:root :where(.is-layout-flow) > * { margin-block-start: 0 !important; margin-block-end: 0 !important; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--forest-lt); }
img { display: block; max-width: 100%; }

/* ============================================================
   TOPBAR
   ============================================================ */
#tr-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 99999;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
}
.tr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.tr-logo__mark {
  width: 32px; height: 32px;
  background: var(--forest);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tr-logo__mark svg { width: 16px; height: 16px; fill: var(--sand); }
.tr-logo__text {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1;
}
.tr-logo__text span { color: var(--sand); }

.tr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tr-nav a {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  color: #8C9E8F;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.tr-nav a:hover, .tr-nav a.active { color: #fff; background: rgba(255,255,255,.07); }
.tr-nav__cta {
  background: var(--forest) !important;
  color: #fff !important;
  margin-left: 6px !important;
}
.tr-nav__cta:hover { background: var(--forest-lt) !important; }

/* ============================================================
   HERO — CINEMATIC FULL-WIDTH
   ============================================================ */
.tr-hero {
  background: var(--dark);
  min-height: calc(100vh - var(--topbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

/* Animated river SVG background */
.tr-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.tr-hero__bg svg {
  width: 100%; height: 100%;
  opacity: .12;
}
.tr-river-path {
  fill: none;
  stroke: var(--forest);
  stroke-width: 2;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawRiver 8s ease forwards;
}
@keyframes drawRiver {
  to { stroke-dashoffset: 0; }
}

.tr-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.tr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,74,62,.4);
  border: 1px solid rgba(45,74,62,.6);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 28px;
}
.tr-hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sand);
  border-radius: 50%;
  opacity: .7;
}
.tr-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.tr-hero__title em {
  font-style: italic;
  color: var(--sand);
}
.tr-hero__sub {
  font-size: .9rem;
  color: #6E8070;
  line-height: 1.75;
  margin: 0 0 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Search */
.tr-search-wrap {
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
}
.tr-search {
  width: 100%;
  padding: 17px 52px 17px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tr-search::placeholder { color: #4A5E4D; }
.tr-search:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45,74,62,.25);
  background: rgba(255,255,255,.07);
}
.tr-search-icon {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  color: #3D5040;
  font-size: 1rem;
}
.tr-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.tr-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: .72rem;
  color: #6E8070;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tr-chip:hover {
  background: rgba(45,74,62,.3);
  border-color: var(--forest);
  color: var(--sand);
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.tr-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 52px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.tr-section-hd {
  padding: 60px 0 28px;
}
.tr-section-hd__label {
  font-family: var(--font-mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tr-section-hd__label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--forest);
  display: inline-block;
}
.tr-section-hd__title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.tr-section-hd__sub {
  font-size: .84rem;
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

/* ============================================================
   LIFE AREAS — 5 TILES
   ============================================================ */
.tr-area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-bottom: 64px;
}
.tr-area-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition);
}
.tr-area-tile:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.tr-area-tile__icon { font-size: 1.6rem; line-height: 1; }
.tr-area-tile__name {
  font-family: var(--font-head);
  font-size: .86rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.tr-area-tile__items {
  font-size: .7rem;
  color: var(--muted);
  line-height: 1.6;
}
.tr-area-tile__go {
  margin-top: auto;
  font-size: .7rem;
  font-weight: 600;
  color: var(--forest);
}

/* ============================================================
   THE RIVER — HORIZONTAL TIMELINE
   ============================================================ */
.tr-river-section {
  background: var(--dark-2);
  padding: 56px 0;
}
.tr-river-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 52px;
}
.tr-river-hd {
  margin-bottom: 36px;
}
.tr-river-hd__label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tr-river-hd__label::before {
  content: '〜';
  color: var(--stone-lt);
  font-style: normal;
}
.tr-river-hd__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
}

.tr-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.tr-timeline::-webkit-scrollbar { display: none; }
.tr-tnode {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}
.tr-tnode__dot {
  width: 12px; height: 12px;
  background: var(--forest);
  border-radius: 50%;
  border: 2px solid var(--sand);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.tr-tnode__line {
  flex: 1;
  height: 1px;
  background: var(--border-dk);
  width: 100%;
  margin-top: -6px;
  position: relative;
}
.tr-tnode__line::after {
  content: '';
  position: absolute;
  right: 0; top: -5px;
  border: 5px solid transparent;
  border-left-color: var(--border-dk);
}
.tr-tnode__content {
  text-align: center;
  padding: 14px 12px 0;
}
.tr-tnode__outcome {
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone-lt);
  margin-bottom: 5px;
}
.tr-tnode__product {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: #D8CCB8;
  line-height: 1.3;
}

/* ============================================================
   TINY TRIUMPHS
   ============================================================ */
.tr-triumphs {
  background: var(--stone-xlt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 52px;
}
.tr-triumphs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.tr-triumphs__label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tr-triumphs__label::before { content: '◇'; color: var(--stone); }
.tr-triumph-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tr-triumph-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-family: var(--font-head);
  font-size: .84rem;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.6;
  position: relative;
}
.tr-triumph-item::before {
  content: '〜';
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: .7rem;
  color: var(--forest);
  margin-bottom: 8px;
}

/* ============================================================
   RECENT VICTORIES — ARTICLE CARDS
   ============================================================ */
.tr-victories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 64px;
}
.tr-vic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  cursor: pointer;
}
.tr-vic-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--forest);
}
.tr-vic-card__img {
  width: 100%; height: 200px;
  overflow: hidden;
}
.tr-vic-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tr-vic-card:hover .tr-vic-card__img img { transform: scale(1.04); }
.tr-vic-card__img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--forest-xlt), var(--stone-xlt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.tr-vic-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tr-vic-card__cat {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tr-vic-card__cat::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--forest);
  border-radius: 50%;
  display: inline-block;
}
.tr-vic-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 8px;
}
.tr-vic-card__excerpt {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.tr-vic-card__meta {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--muted-lt);
}

/* ============================================================
   LATEST ARTICLE ROWS
   ============================================================ */
.tr-list { padding-bottom: 64px; }
.tr-row {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--radius-sm);
}
.tr-row:hover { background: rgba(45,74,62,.03); }
.tr-row__img {
  width: 120px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.tr-row__img img {
  width: 120px; height: 80px;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.tr-row:hover .tr-row__img img { transform: scale(1.05); }
.tr-row__body { flex: 1; min-width: 0; }
.tr-row__cat {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.tr-row__cat::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--forest);
  border-radius: 50%;
}
.tr-row__title {
  font-family: var(--font-head);
  font-size: .94rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 5px;
}
.tr-row__title a { color: inherit; text-decoration: none; }
.tr-row__title a:hover { color: var(--forest); }
.tr-row__excerpt {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tr-row__date {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--muted-lt);
}

/* ============================================================
   ARCHIVE BANNER
   ============================================================ */
.tr-archive-banner {
  background: var(--dark);
  padding: 64px 0 48px;
}
.tr-archive-banner__label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tr-archive-banner__label::before {
  content: '〜';
  font-family: sans-serif;
  color: var(--stone-lt);
}
.tr-archive-banner h1 {
  font-family: var(--font-head) !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 10px !important;
  letter-spacing: -.02em !important;
}
.tr-archive-banner__desc {
  font-size: .88rem;
  color: #4A5E4D;
  max-width: 520px;
  line-height: 1.65;
}

/* Life area pills */
.tr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 8px;
}
.tr-pills a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all var(--transition);
}
.tr-pills a:hover,
.tr-pills a.active {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--forest-xlt);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.wp-block-query-pagination,
.tr-pagination {
  display: flex !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 40px 0 64px !important;
  flex-wrap: wrap !important;
}
.wp-block-query-pagination a,
.wp-block-query-pagination-numbers a,
.tr-pagination a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 12px !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  font-size: .76rem !important;
  color: var(--muted) !important;
  text-decoration: none !important;
  transition: all var(--transition) !important;
}
.wp-block-query-pagination a:hover,
.tr-pagination a:hover { border-color: var(--forest) !important; color: var(--forest) !important; }
.wp-block-query-pagination-numbers .current {
  background: var(--forest) !important;
  border-color: var(--forest) !important;
  color: #fff !important;
}

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.tr-single {
  max-width: 740px;
  margin: 0 auto;
  padding: 52px 0 80px;
}
.tr-single .wp-block-post-title {
  font-family: var(--font-head) !important;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem) !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em !important;
  margin: 0 0 24px !important;
}
.tr-single-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.tr-single-meta__item .label {
  font-family: var(--font-mono);
  font-size: .54rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  display: block;
  margin-bottom: 2px;
}
.tr-single-meta__item .value {
  font-size: .78rem;
  color: var(--text-2);
  font-weight: 500;
}
.tr-single .wp-block-post-featured-image {
  margin-bottom: 32px !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
}
.tr-single .wp-block-post-featured-image img {
  width: 100% !important;
  height: auto !important;
  max-height: 440px !important;
  object-fit: cover !important;
}
.tr-single .wp-block-post-content {
  font-size: .96rem !important;
  line-height: 1.85 !important;
  color: var(--text-2) !important;
}
.tr-single .wp-block-post-content p { margin-bottom: 1.4em !important; }
.tr-single .wp-block-post-content h2 {
  font-family: var(--font-head) !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  letter-spacing: -.02em !important;
  margin: 2.2em 0 .6em !important;
}
.tr-single .wp-block-post-content h3 {
  font-family: var(--font-head) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin: 1.8em 0 .4em !important;
}
.tr-single .wp-block-post-content a {
  color: var(--forest) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
.tr-single .wp-block-post-content blockquote {
  border-left: 3px solid var(--forest) !important;
  margin: 1.8em 0 !important;
  padding: .4em 0 .4em 1.4em !important;
  color: var(--muted) !important;
  font-family: var(--font-head) !important;
  font-style: italic !important;
  font-size: .92rem !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
#tr-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dk);
  padding: 40px 52px;
}
.tr-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.tr-footer-brand {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.tr-footer-brand span { color: var(--sand); }
.tr-footer-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: .78rem;
  color: #3D5040;
  max-width: 320px;
  line-height: 1.6;
}
.tr-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.tr-footer-links a {
  font-size: .72rem;
  color: #3D5040;
  text-decoration: none;
  transition: color var(--transition);
}
.tr-footer-links a:hover { color: var(--sand); }
.tr-footer-disclosure {
  width: 100%;
  font-family: var(--font-mono);
  font-size: .6rem;
  color: #2D3D30;
  padding-top: 20px;
  border-top: 1px solid #1C2B1F;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tr-area-grid { grid-template-columns: repeat(3, 1fr); }
  .tr-triumph-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #tr-topbar { padding: 0 20px; }
  .tr-hero { padding: 60px 20px; }
  .tr-page { padding: 0 20px; }
  .tr-river-inner { padding: 0 20px; }
  .tr-triumphs { padding: 36px 20px; }
  #tr-footer { padding: 28px 20px; }
  .tr-victories { grid-template-columns: 1fr; }
  .tr-area-grid { grid-template-columns: 1fr 1fr; }
  .tr-triumph-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tr-row { flex-direction: column; gap: 12px; }
  .tr-row__img { width: 100%; }
  .tr-row__img img { width: 100%; height: 180px; }
}
