/* ============================================================
   TOXICSALT.SPACE — Static Rebuild v2
   Colors: #FBE843 (yellow), #EE2B69 (pink), #000, #fff
   Font: Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

:root {
  --yellow:  #FBE843;
  --pink:    #EE2B69;
  --black:   #000000;
  --white:   #ffffff;
  --gray:    #f5f5f5;
  --gray2:   #e8e8e8;
  --muted:   #777;
  --font:    'Inter', sans-serif;
  --radius:  28px;
  --border:  5px;
  --max-w:   1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }

/* ============================================================
   CONTAINER
   ============================================================ */
.ts-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   HEADER
   ============================================================ */
.ts-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: var(--border) solid var(--black);
}
.ts-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

/* Logo */
.ts-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.ts-logo-text {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-style: italic;
  line-height: 1;
}
.ts-logo-text em {
  font-style: normal;
  color: var(--pink);
}

/* Nav */
.ts-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.ts-nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 13px;
  white-space: nowrap;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}
.ts-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.ts-nav-link:hover::after,
.ts-nav-link.active::after { transform: scaleX(1); }
.ts-nav-link:hover, .ts-nav-link.active { color: var(--black); }

/* Hot button — yellow pill */
.ts-nav-hot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 16px 7px 12px;
  border-radius: 14px;
  margin-left: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.ts-nav-hot:hover { background: #f0da00; transform: scale(1.04); }
.ts-nav-hot-icon { font-size: 14px; }

/* Search */
.ts-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ts-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 20px;
  color: var(--black);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.ts-search-btn:hover { color: var(--pink); }

/* Burger */
.ts-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.ts-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

@media (max-width: 1000px) {
  .ts-burger { display: flex; }
  .ts-nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    border-bottom: var(--border) solid var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 20px;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s;
    z-index: 99;
    justify-content: flex-start;
  }
  .ts-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .ts-nav-link { padding: 14px 24px; font-size: 15px; }
  .ts-nav-link::after { display: none; }
  .ts-nav-hot { margin: 8px 24px 0; align-self: flex-start; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ts-ticker {
  background: var(--black);
  border-bottom: var(--border) solid var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 52px;
}
.ts-ticker-label {
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.ts-ticker-label-icon { font-size: 14px; }
.ts-ticker-track { overflow: hidden; flex: 1; }
.ts-ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ts-ticker-inner:hover { animation-play-state: paused; }
.ts-ticker-item {
  display: flex;
  align-items: center;
  padding: 0 30px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
  color: var(--white);
}
.ts-ticker-item a { color: inherit; transition: color 0.2s; }
.ts-ticker-item a:hover { color: var(--yellow); }
.ts-ticker-sep {
  color: var(--yellow);
  font-style: normal;
  margin-left: 30px;
  font-weight: 400;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   CARD — основний компонент
   ============================================================ */
.ts-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: var(--border) solid var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* offset shadow ефект як в оригіналі */
.ts-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border-bottom: 10px solid var(--black);
  border-right: 10px solid var(--black);
  pointer-events: none;
  z-index: -1;
  transform: translate(8px, 8px);
}
.ts-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--black);
}

.ts-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ts-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ts-card:hover .ts-card-img img { transform: scale(1.05); }

.ts-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ts-tag {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 10px;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
}
.ts-tag:hover { background: #f0da00; transform: scale(1.04); }
.ts-tag.pink { background: var(--pink); color: var(--white); }
.ts-tag.pink:hover { background: #d41f57; }

.ts-card-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  flex: 1;
}
.ts-card-title a { transition: color 0.2s; }
.ts-card-title a:hover { color: var(--pink); }

.ts-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ts-card-meta {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 2px solid var(--gray2);
  margin-top: auto;
}

/* ============================================================
   GRID
   ============================================================ */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ts-grid-4 { grid-template-columns: repeat(4, 1fr); }
.ts-grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1100px) { .ts-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .ts-grid, .ts-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ts-grid, .ts-grid-4, .ts-grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   HERO SECTION
   ============================================================ */
.ts-hero {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* Hero main — велика карта */
.ts-hero-main {
  position: relative;
  border-radius: var(--radius);
  border: var(--border) solid var(--black);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 8px 8px 0 var(--black);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ts-hero-main:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--black); }
.ts-hero-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ts-hero-main:hover img { transform: scale(1.04); }
.ts-hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 30px;
}
.ts-hero-main-cat { margin-bottom: 12px; }
.ts-hero-main-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ts-hero-main-title a { color: inherit; }
.ts-hero-main-title:hover a { color: var(--yellow); }
.ts-hero-main-date { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 10px; }

/* Hero sidebar */
.ts-hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .ts-hero { grid-template-columns: 1fr; }
  .ts-hero-side { flex-direction: row; }
}
@media (max-width: 560px) {
  .ts-hero { padding: 32px 0; gap: 20px; }
  .ts-hero-side { flex-direction: column; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.ts-section { padding: 48px 0; }
.ts-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.ts-section-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ts-section-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
  border-radius: 2px;
}

/* ============================================================
   LIST ITEMS (горизонтальні)
   ============================================================ */
.ts-list { display: flex; flex-direction: column; gap: 16px; }
.ts-list-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  border-radius: 16px;
  border: 3px solid var(--black);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ts-list-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}
.ts-list-img { overflow: hidden; }
.ts-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ts-list-item:hover .ts-list-img img { transform: scale(1.06); }
.ts-list-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.ts-list-cat { font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); }
.ts-list-title { font-size: 13px; font-weight: 700; line-height: 1.3; }
.ts-list-title a:hover { color: var(--pink); }
.ts-list-date { font-size: 10px; color: var(--muted); }

/* ============================================================
   TWO-COLUMN SECTION
   ============================================================ */
.ts-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .ts-two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   CATEGORY HEADER
   ============================================================ */
.ts-cat-header {
  padding: 56px 0 40px;
}
.ts-cat-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.ts-cat-name {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  font-style: italic;
}
.ts-cat-count { font-size: 14px; color: var(--muted); margin-top: 12px; font-weight: 500; }

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.ts-article-header { padding: 40px 0 0; }

.ts-breadcrumb {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ts-breadcrumb a:hover { color: var(--pink); }
.ts-breadcrumb-sep { color: var(--gray2); }

.ts-article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }

.ts-article-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-style: italic;
}
.ts-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  padding-bottom: 28px;
  border-bottom: var(--border) solid var(--black);
}

.ts-article-hero {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: var(--radius);
  border: var(--border) solid var(--black);
  margin: 36px 0;
  box-shadow: 8px 8px 0 var(--black);
}
.ts-article-hero img { width: 100%; height: 100%; object-fit: cover; }

.ts-article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px 64px;
}
.ts-article-content {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
}
.ts-article-content p { margin-bottom: 22px; }
.ts-article-content h2 {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  margin: 40px 0 18px;
  padding-left: 18px;
  border-left: var(--border) solid var(--yellow);
}
.ts-article-content h3 { font-size: 22px; font-weight: 800; margin: 32px 0 14px; }
.ts-article-content img {
  width: 100%;
  border-radius: 18px;
  border: var(--border) solid var(--black);
  margin: 28px 0;
  box-shadow: 6px 6px 0 var(--black);
}
.ts-article-content ul, .ts-article-content ol { margin: 0 0 22px 26px; }
.ts-article-content li { margin-bottom: 10px; }
.ts-article-content blockquote {
  border-left: var(--border) solid var(--pink);
  padding: 16px 22px;
  margin: 28px 0;
  background: var(--gray);
  border-radius: 0 16px 16px 0;
  font-style: italic;
}
.ts-article-content a { color: var(--pink); text-decoration: underline; }
.ts-article-content strong { font-weight: 800; }
.ts-article-content .wp-block-image { margin: 28px 0; }
.ts-article-content figure { margin: 28px 0; }
.ts-article-content figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }

/* Prev / Next nav */
.ts-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
.ts-article-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border-radius: 18px;
  border: var(--border) solid var(--black);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ts-article-nav-item:hover {
  background: var(--yellow);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}
.ts-article-nav-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ts-article-nav-title { font-size: 14px; font-weight: 700; line-height: 1.3; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ts-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 56px 0;
}
@media (max-width: 700px) { .ts-contact-wrap { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; } }

.ts-contact-title {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 18px;
}
.ts-contact-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.ts-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 14px;
  border: var(--border) solid var(--black);
  transition: background 0.2s, transform 0.2s;
}
.ts-contact-link:hover { background: var(--yellow); transform: translate(-2px, -2px); }

/* Form */
.ts-form { display: flex; flex-direction: column; gap: 18px; }
.ts-form-group { display: flex; flex-direction: column; gap: 8px; }
.ts-form-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.ts-form-input, .ts-form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: var(--border) solid var(--black);
  font-family: var(--font);
  font-size: 15px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ts-form-input:focus, .ts-form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 4px 4px 0 var(--pink);
}
.ts-form-textarea { min-height: 140px; resize: vertical; }
.ts-form-btn {
  align-self: flex-start;
  background: var(--black);
  color: var(--white);
  border: var(--border) solid var(--black);
  border-radius: 14px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ts-form-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--pink);
}
.ts-form-success {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #00a065;
  background: #f0fff8;
  color: #00a065;
  font-weight: 600;
  font-size: 14px;
}
.ts-form-error {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--pink);
  background: #fff5f7;
  color: var(--pink);
  font-weight: 600;
  font-size: 14px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.ts-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 32px;
}
.ts-404-num {
  font-size: clamp(100px, 22vw, 200px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  font-style: italic;
  color: var(--black);
  opacity: 0.06;
  user-select: none;
}
.ts-404-inner { margin-top: -40px; position: relative; z-index: 1; }
.ts-404-title { font-size: clamp(24px, 4vw, 40px); font-weight: 900; font-style: italic; margin-bottom: 14px; }
.ts-404-text { font-size: 15px; color: var(--muted); max-width: 360px; margin: 0 auto 28px; }
.ts-404-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 14px;
  border: var(--border) solid var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ts-404-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--black); }

/* ============================================================
   FOOTER
   ============================================================ */
.ts-footer {
  background: var(--black);
  color: var(--white);
  padding: 52px 0 32px;
  margin-top: 60px;
  border-top: var(--border) solid var(--black);
}
.ts-footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.ts-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}
.ts-footer-logo { font-size: 28px; font-weight: 900; letter-spacing: -0.04em; font-style: italic; }
.ts-footer-logo em { color: var(--yellow); font-style: normal; }
.ts-footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 10px; max-width: 260px; line-height: 1.65; }
.ts-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
}
.ts-footer-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  white-space: nowrap;
}
.ts-footer-nav a:hover { color: var(--yellow); }
.ts-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ts-footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ============================================================
   LIVE SEARCH
   ============================================================ */
.ts-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  background: var(--white);
  border-radius: 18px;
  border: var(--border) solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  z-index: 200;
  overflow: hidden;
  max-height: 70vh;
  overflow-y: auto;
}
.ts-search-results.open { display: block; }
.ts-search-result-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 2px solid var(--gray2);
  transition: background 0.15s;
  cursor: pointer;
}
.ts-search-result-item:last-child { border-bottom: none; }
.ts-search-result-item:hover { background: var(--gray); }
.ts-search-result-img {
  width: 58px; height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--black);
  flex-shrink: 0;
}
.ts-search-result-title { font-size: 13px; font-weight: 700; line-height: 1.3; }
.ts-search-result-cat { font-size: 10px; color: var(--pink); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.ts-no-results { padding: 20px; text-align: center; color: var(--muted); font-size: 14px; }

.ts-search-wrap {
  position: relative;
}
.ts-search-input-inline {
  padding: 7px 14px;
  border-radius: 12px;
  border: 3px solid var(--black);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  width: 160px;
  outline: none;
  transition: border-color 0.2s, width 0.3s;
}
.ts-search-input-inline:focus {
  border-color: var(--pink);
  width: 220px;
}

/* ============================================================
   MISC
   ============================================================ */
.ts-divider {
  height: var(--border);
  background: var(--black);
  border: none;
  margin: 0;
}
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

@media (max-width: 600px) {
  .ts-wrap { padding: 0 18px; }
  .ts-article-body { padding: 0 0 48px; }
  .ts-section { padding: 32px 0; }
  .ts-cat-header { padding: 36px 0 28px; }
}
