/* ============================================================
   WORLD TRACK — Main Stylesheet
   Sky Sports-inspired athletics news theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --wt-red:       #e8001e;
  --wt-red-dark:  #b50018;
  --wt-navy:      #001a4d;
  --wt-navy-mid:  #002266;
  --wt-gold:      #f5a623;
  --wt-dark:      #0a0a0a;
  --wt-dark-2:    #141414;
  --wt-dark-3:    #1e1e1e;
  --wt-mid:       #2a2a2a;
  --wt-border:    #2e2e2e;
  --wt-muted:     #888;
  --wt-light:     #b0b0b0;
  --wt-white:     #f5f5f5;
  --wt-bg:        #111111;
  --wt-radius:    4px;
  --wt-radius-lg: 8px;
  --wt-shadow:    0 4px 20px rgba(0,0,0,.5);
  --wt-font-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --wt-font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --wt-max:       1280px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--wt-font-body);
  background: var(--wt-bg);
  color: var(--wt-white);
  line-height: 1.55;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--wt-red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--wt-font-head);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ---------- Utility ---------- */
.wt-container { width: min(var(--wt-max), calc(100% - 32px)); margin-inline: auto; }
.wt-container--wide { width: min(1400px, calc(100% - 32px)); margin-inline: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px;
}
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--wt-red); color: #fff; padding: 8px 16px; z-index: 9999; font-weight: 700; }
.skip-link:focus { left: 8px; }

/* ---------- BREAKING TICKER ---------- */
.wt-ticker {
  background: var(--wt-red);
  color: #fff;
  font-family: var(--wt-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.wt-ticker__label {
  background: #000;
  color: var(--wt-gold);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 6px;
}
.wt-ticker__label svg { width: 14px; height: 14px; fill: currentColor; }
.wt-ticker__track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  padding-left: 24px;
}
.wt-ticker__track:hover { animation-play-state: paused; }
.wt-ticker__item { padding-right: 60px; }
.wt-ticker__item a { color: #fff; }
.wt-ticker__item a:hover { color: var(--wt-gold); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SITE HEADER ---------- */
.wt-header {
  background: var(--wt-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--wt-red);
}
.wt-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  height: 64px;
  gap: 24px;
}
.wt-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.wt-logo__icon {
  width: 44px;
  height: 44px;
  background: var(--wt-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wt-font-head);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.wt-logo__text { font-family: var(--wt-font-head); font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -.5px; line-height: 1; }
.wt-logo__text span { color: var(--wt-red); }
.site-title a { text-decoration: none; }

/* Custom logo support */
.custom-logo { max-height: 48px; width: auto; }

.wt-header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.wt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--wt-radius);
  font-family: var(--wt-font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.wt-btn--search {
  background: transparent;
  color: #fff;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--wt-radius);
}
.wt-btn--search:hover { background: rgba(255,255,255,.1); color: #fff; }
.wt-btn--search svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ---------- PRIMARY NAV ---------- */
.wt-nav { background: var(--wt-dark); border-bottom: 1px solid var(--wt-border); }
.wt-nav-wrap { display: flex; align-items: stretch; gap: 0; height: 48px; }
.wt-nav-menu { display: flex; align-items: stretch; gap: 0; }
.wt-nav-menu > li { position: relative; }
.wt-nav-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  font-family: var(--wt-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--wt-light);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.wt-nav-menu > li > a:hover,
.wt-nav-menu > li.current-menu-item > a,
.wt-nav-menu > li.current-menu-ancestor > a {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.wt-nav-menu > li > a.active-nav { color: #fff; border-bottom: 3px solid var(--wt-red); }

/* Dropdown */
.wt-nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--wt-dark-2);
  min-width: 200px;
  border: 1px solid var(--wt-border);
  border-top: 2px solid var(--wt-red);
  z-index: 100;
  padding: 6px 0;
}
.wt-nav-menu li:hover > .sub-menu { display: block; }
.wt-nav-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wt-light);
  transition: color .15s, background .15s;
}
.wt-nav-menu .sub-menu li a:hover { color: #fff; background: rgba(255,255,255,.05); }

/* Mobile toggle */
.wt-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--wt-radius);
  cursor: pointer;
  align-items: center;
  gap: 6px;
  font-family: var(--wt-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.wt-menu-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ---------- SEARCH BAR ---------- */
.wt-search-bar {
  background: var(--wt-dark-2);
  border-bottom: 1px solid var(--wt-border);
  padding: 12px 0;
  display: none;
}
.wt-search-bar.is-open { display: block; }
.wt-search-form { display: flex; gap: 0; max-width: 640px; margin: 0 auto; }
.wt-search-field {
  flex: 1;
  background: var(--wt-mid);
  border: 1px solid var(--wt-border);
  border-right: none;
  color: #fff;
  padding: 10px 16px;
  font-size: 15px;
  font-family: var(--wt-font-body);
  border-radius: var(--wt-radius) 0 0 var(--wt-radius);
  outline: none;
}
.wt-search-field:focus { border-color: var(--wt-red); }
.wt-search-submit {
  background: var(--wt-red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: var(--wt-font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 0 var(--wt-radius) var(--wt-radius) 0;
  cursor: pointer;
  transition: background .2s;
}
.wt-search-submit:hover { background: var(--wt-red-dark); }

/* ---------- HERO SECTION ---------- */
.wt-hero { padding: 20px 0 0; }
.wt-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto;
  gap: 4px;
}

/* Hero main (large left card) */
.wt-hero-main { grid-row: 1 / span 2; position: relative; }

/* Hero side cards */
.wt-hero-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ---------- CARD COMPONENTS ---------- */

/* Overlay card — image fill with text at bottom */
.wt-card {
  position: relative;
  overflow: hidden;
  background: var(--wt-dark-3);
  display: block;
}
.wt-card__link {
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
.wt-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.wt-card:hover .wt-card__img { transform: scale(1.03); }
.wt-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.7) 30%, rgba(0,0,0,.2) 65%, transparent 100%);
  z-index: 1;
}
.wt-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 22px;
  z-index: 2;
  color: #fff;
}
.wt-card__category {
  display: inline-block;
  background: var(--wt-red);
  color: #fff;
  font-family: var(--wt-font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-bottom: 8px;
}
.wt-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--wt-gold);
  color: #000;
  font-family: var(--wt-font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-left: 4px;
}
.wt-card__badge--live { background: var(--wt-red); color: #fff; }
.wt-card__badge--live::before { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: live-pulse 1.2s ease-in-out infinite; }
@keyframes live-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.wt-card__title {
  font-family: var(--wt-font-head);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: .2px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.8);
}
.wt-card__meta {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.wt-card__meta time { color: rgba(255,255,255,.65); }

/* Hero main card sizing */
.wt-hero-main .wt-card { height: 520px; }
.wt-hero-main .wt-card__title { font-size: clamp(28px, 3.2vw, 48px); }
.wt-hero-main .wt-card__body { padding: 28px 28px 32px; }

/* Hero side cards */
.wt-hero-side .wt-card { height: 254px; }
.wt-hero-side .wt-card__title { font-size: clamp(17px, 1.8vw, 24px); }

/* ---------- SECTION HEADER ---------- */
.wt-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--wt-border);
}
.wt-section-head__title {
  font-family: var(--wt-font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wt-section-head__title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--wt-red);
  border-radius: 2px;
}
.wt-section-head__link {
  font-family: var(--wt-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--wt-muted);
  transition: color .2s;
}
.wt-section-head__link:hover { color: var(--wt-red); }

/* ---------- CONTENT SECTIONS ---------- */
.wt-section { padding: 32px 0; }
.wt-section + .wt-section { border-top: 1px solid var(--wt-border); }

/* Top stories grid: 3 cols */
.wt-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.wt-top-grid .wt-card { height: 320px; }
.wt-top-grid .wt-card__title { font-size: clamp(16px, 1.7vw, 22px); }

/* Latest news: main + sidebar list */
.wt-latest-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}
.wt-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.wt-latest-grid .wt-card { height: 280px; }
.wt-latest-grid .wt-card__title { font-size: clamp(15px, 1.4vw, 19px); }

/* ---------- LIST CARD (horizontal) ---------- */
.wt-list-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--wt-border);
  text-decoration: none;
  color: #fff;
}
.wt-list-card:last-child { border-bottom: none; }
.wt-list-card__img {
  width: 100px;
  height: 65px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--wt-dark-3);
}
.wt-list-card__cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wt-red);
  margin-bottom: 4px;
  font-family: var(--wt-font-head);
}
.wt-list-card__title {
  font-family: var(--wt-font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .2px;
}
.wt-list-card:hover .wt-list-card__title { color: var(--wt-red); }
.wt-list-card__time { font-size: 11px; color: var(--wt-muted); margin-top: 4px; }

/* ---------- SIDEBAR ---------- */
.wt-sidebar { display: flex; flex-direction: column; gap: 28px; }
.wt-widget {
  background: lightgray;
  border: 1px solid var(--wt-border);
  padding: 18px;
}
.wt-widget-title {
  font-family: var(--wt-font-head);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #000;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--wt-red);
}

/* ---------- CATEGORY STRIPS ---------- */
.wt-cat-section { padding: 28px 0; }
.wt-cat-section + .wt-cat-section { border-top: 1px solid var(--wt-border); }

/* Featured + small grid */
.wt-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.wt-cat-grid--main .wt-card { height: 380px; }
.wt-cat-grid--main .wt-card__title { font-size: clamp(20px, 2.2vw, 30px); }

.wt-small-stack { display: grid; grid-template-rows: repeat(2, 1fr); gap: 4px; }
.wt-small-stack .wt-card { height: 187px; }
.wt-small-stack .wt-card__title { font-size: clamp(14px, 1.4vw, 18px); }

/* 4-col grid for broader category sections */
.wt-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wt-four-grid .wt-card { height: 240px; }
.wt-four-grid .wt-card__title { font-size: 15px; }

/* ---------- AD PLACEHOLDER ---------- */
.wt-ad {
  background: var(--wt-dark-2);
  border: 1px dashed var(--wt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wt-muted);
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-family: var(--wt-font-head);
  font-weight: 600;
  overflow: hidden;
}
.wt-ad img { width: 100%; height: 100%; object-fit: contain; }
.wt-ad--leaderboard { width: 100%; height: 90px; }
.wt-ad--rectangle { width: 100%; height: 250px; }
.wt-ad--halfpage { width: 100%; height: 600px; }

/* ---------- SOCIAL STRIP ---------- */
.wt-social-strip {
  background: var(--wt-dark-2);
  border-top: 1px solid var(--wt-border);
  border-bottom: 1px solid var(--wt-border);
  padding: 12px 0;
}
.wt-social-strip__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wt-social-strip__label {
  font-family: var(--wt-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wt-muted);
}
.wt-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--wt-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: opacity .2s;
}
.wt-social-btn:hover { opacity: .85; color: #fff; }
.wt-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.wt-social-btn--twitter { background: #000; }
.wt-social-btn--facebook { background: #1877f2; }
.wt-social-btn--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wt-social-btn--youtube { background: #ff0000; }

/* ---------- PAGINATION ---------- */
.wt-pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 0 8px;
}
.wt-pagination a,
.wt-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  background: var(--wt-dark-3);
  border: 1px solid var(--wt-border);
  color: var(--wt-light);
  font-family: var(--wt-font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 0 10px;
  transition: background .2s, color .2s;
}
.wt-pagination a:hover { background: var(--wt-red); border-color: var(--wt-red); color: #fff; }
.wt-pagination .current { background: var(--wt-red); border-color: var(--wt-red); color: #fff; }

/* ---------- SINGLE POST ---------- */
.wt-single { padding: 28px 0 48px; }
.wt-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 40px;
  align-items: start;
}
.wt-single-cat {
  font-family: var(--wt-font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--wt-red);
  margin-bottom: 10px;
}
.wt-single-title {
  font-family: var(--wt-font-head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -.3px;
  color: #fff;
  margin-bottom: 14px;
}
.wt-single-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--wt-muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wt-border);
}
.wt-single-byline strong { color: var(--wt-light); }
.wt-single-featured { margin-bottom: 24px; }
.wt-single-featured img { width: 100%; height: auto; }
.wt-single-featured figcaption { font-size: 12px; color: var(--wt-muted); padding: 6px 0; border-bottom: 1px solid var(--wt-border); }
.wt-entry-content {
  font-size: 17px;
  line-height: 1.7;
  color: #ccc;
}
.wt-entry-content p { margin: 0 0 1.3em; }
.wt-entry-content h2 { font-size: 24px; color: #fff; margin: 1.6em 0 .6em; border-left: 4px solid var(--wt-red); padding-left: 12px; }
.wt-entry-content h3 { font-size: 20px; color: #fff; margin: 1.4em 0 .5em; }
.wt-entry-content a { color: var(--wt-red); }
.wt-entry-content a:hover { text-decoration: underline; }
.wt-entry-content blockquote {
  border-left: 4px solid var(--wt-gold);
  padding: 12px 20px;
  margin: 1.4em 0;
  background: var(--wt-dark-2);
  font-size: 18px;
  font-style: italic;
  color: var(--wt-white);
}
.wt-entry-content img { max-width: 100%; height: auto; margin: 1em 0; }
.wt-entry-content ul,
.wt-entry-content ol { margin: 0 0 1.2em 1.4em; padding: 0; }
.wt-entry-content li { margin-bottom: .4em; }

/* Share row */
.wt-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  padding: 14px 0;
  border-block: 1px solid var(--wt-border);
  flex-wrap: wrap;
}
.wt-share__label { font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--wt-muted); }

/* Tags */
.wt-tags { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.wt-tag {
  background: var(--wt-dark-2);
  border: 1px solid var(--wt-border);
  color: var(--wt-light);
  padding: 5px 12px;
  font-size: 12px;
  font-family: var(--wt-font-head);
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.wt-tag:hover { background: var(--wt-red); border-color: var(--wt-red); color: #fff; }

/* Related */
.wt-related { margin-top: 36px; }
.wt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}
.wt-related-grid .wt-card { height: 200px; }
.wt-related-grid .wt-card__title { font-size: 14px; }

/* ---------- ARCHIVE PAGE ---------- */
.wt-archive-header {
  background: var(--wt-dark-2);
  border-bottom: 3px solid var(--wt-red);
  padding: 24px 0;
  margin-bottom: 28px;
}
.wt-archive-title {
  font-family: var(--wt-font-head);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -.3px;
}
.wt-archive-desc { font-size: 15px; color: var(--wt-muted); margin-top: 6px; }
.wt-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.wt-archive-grid .wt-card { height: 260px; }
.wt-archive-grid .wt-card__title { font-size: clamp(15px, 1.5vw, 20px); }

/* ---------- FOOTER ---------- */
.wt-footer {
  background: var(--wt-dark);
  border-top: 3px solid var(--wt-red);
  margin-top: 48px;
}
.wt-footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--wt-border);
}
.wt-footer-brand {}
.wt-footer-logo {
  font-family: var(--wt-font-head);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.wt-footer-logo span { color: var(--wt-red); }
.wt-footer-tagline { font-size: 13px; color: var(--wt-muted); line-height: 1.5; margin-bottom: 18px; }
.wt-footer-col-title {
  font-family: var(--wt-font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--wt-border);
}
.wt-footer-menu { display: flex; flex-direction: column; gap: 8px; }
.wt-footer-menu a {
  font-size: 13px;
  color: var(--wt-muted);
  text-decoration: none;
  transition: color .15s;
}
.wt-footer-menu a:hover { color: var(--wt-red); }

.wt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.wt-footer-copy { font-size: 12px; color: var(--wt-muted); }
.wt-footer-legal { display: flex; gap: 16px; }
.wt-footer-legal a { font-size: 12px; color: var(--wt-muted); }
.wt-footer-legal a:hover { color: var(--wt-light); }

/* ---------- COMMENTS ---------- */
.wt-comments { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--wt-border); }
.wt-comments h2 { font-size: 20px; text-transform: uppercase; margin-bottom: 20px; color: #fff; font-family: var(--wt-font-head); }
.comment-form label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--wt-muted); margin-bottom: 5px; }
.comment-form input,
.comment-form textarea {
  width: 100%;
  background: var(--wt-dark-2);
  border: 1px solid var(--wt-border);
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--wt-font-body);
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--wt-red); }
.comment-form .submit {
  background: var(--wt-red);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: var(--wt-font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.comment-form .submit:hover { background: var(--wt-red-dark); }

/* ---------- NO SIDEBAR LAYOUT ---------- */
.wt-no-sidebar { max-width: 820px; margin-inline: auto; }

/* ---------- 404 PAGE ---------- */
.wt-404 { text-align: center; padding: 80px 20px; }
.wt-404__code { font-family: var(--wt-font-head); font-size: 120px; font-weight: 900; color: var(--wt-red); line-height: 1; margin-bottom: 12px; }
.wt-404__title { font-size: 28px; text-transform: uppercase; margin-bottom: 12px; }
.wt-404__text { color: var(--wt-muted); margin-bottom: 24px; }

/* ---------- PLACEHOLDER IMAGE ---------- */
.wt-placeholder {
  background: linear-gradient(135deg, var(--wt-dark-3) 0%, var(--wt-mid) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wt-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wt-muted);
  position: absolute;
  inset: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .wt-hero-grid { grid-template-columns: 1fr 280px; }
  .wt-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .wt-four-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .wt-hero-grid { grid-template-columns: 1fr; }
  .wt-hero-side { display: grid; grid-template-columns: repeat(2, 1fr); flex-direction: row; }
  .wt-hero-main .wt-card { height: 420px; }
  .wt-hero-side .wt-card { height: 220px; }
  .wt-top-grid { grid-template-columns: repeat(2, 1fr); }
  .wt-top-grid .wt-card:nth-child(3) { grid-column: span 2; }
  .wt-latest-layout { grid-template-columns: 1fr; }
  .wt-single-layout { grid-template-columns: 1fr; }
  .wt-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .wt-cat-grid { grid-template-columns: 1fr; }
  .wt-cat-grid--main .wt-card { height: 300px; }
  .wt-small-stack { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .wt-small-stack .wt-card { height: 220px; }
  .wt-related-grid { grid-template-columns: repeat(2, 1fr); }
  .wt-related-grid .wt-card:nth-child(3) { grid-column: span 2; }
}

@media (max-width: 700px) {
  .wt-nav-menu { display: none; flex-direction: column; width: 100%; padding-bottom: 8px; }
  .wt-nav-menu.is-open { display: flex; }
  .wt-nav-menu > li > a { height: auto; padding: 12px 16px; border-bottom: 1px solid var(--wt-border); }
  .wt-menu-toggle { display: flex; }
  .wt-nav-wrap { flex-wrap: wrap; height: auto; padding: 8px 0; }
  .wt-nav-menu .sub-menu { position: static; display: none; background: var(--wt-dark-3); border: none; }
  .wt-nav-menu li.is-open .sub-menu { display: block; }
  .wt-hero-main .wt-card { height: 360px; }
  .wt-hero-side { grid-template-columns: 1fr; }
  .wt-hero-side .wt-card { height: 220px; }
  .wt-top-grid { grid-template-columns: 1fr; }
  .wt-top-grid .wt-card:nth-child(3) { grid-column: auto; }
  .wt-top-grid .wt-card { height: 260px; }
  .wt-latest-grid { grid-template-columns: 1fr; }
  .wt-archive-grid { grid-template-columns: 1fr; }
  .wt-four-grid { grid-template-columns: 1fr; }
  .wt-footer-top { grid-template-columns: 1fr; gap: 24px; }
  .wt-related-grid { grid-template-columns: 1fr; }
  .wt-related-grid .wt-card:nth-child(3) { grid-column: auto; }
  .wt-header-top { height: auto; padding: 10px 0; flex-wrap: wrap; }
}

/* ===== Requested homepage and single-post adjustments ===== */
body {
  background: #f1f3f5;
  color: #111;
}

.wt-top-ad-wrap {
  padding-top: 12px;
}

.wt-ad--leaderboard {
  width: 728px;
  max-width: 100%;
  height: 90px;
  margin-inline: auto;
}

.wt-section-head {
  border-bottom-color: #d6dbe1;
}

.wt-section-head__title {
  color: #111;
}

.wt-section-head__link {
  color: #555;
}

.wt-section + .wt-section,
.wt-cat-section + .wt-cat-section {
  border-top-color: #d6dbe1;
}

.wt-social-posts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.wt-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.wt-mini-grid .wt-card {
  height: 220px;
}

.wt-mini-grid .wt-card__title {
  font-size: clamp(14px, 1.2vw, 18px);
}

.wt-editor-rss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.wt-rss-card {
  min-height: 260px;
  background: var(--wt-dark-3);
  position: relative;
  overflow: hidden;
}

.wt-rss-card a {
  display: flex;
  height: 100%;
  min-height: 260px;
  color: #fff;
}

.wt-rss-card__body {
  margin-top: auto;
  width: 100%;
  padding: 20px 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.65));
}

.wt-rss-card__title {
  font-family: var(--wt-font-head);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.wt-single {
  padding: 32px 0 56px;
}

.wt-single-layout {
  display: block;
  max-width: 860px;
  margin-inline: auto;
}

.wt-article {
  background: #fff;
  color: #111;
  padding: 28px;
  border: 1px solid #e2e5e9;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.wt-single-title,
.wt-entry-content h2,
.wt-entry-content h3,
.wt-related h2 {
  color: #111 !important;
}

.wt-entry-content {
  color: #222;
}

.wt-single-byline strong {
  color: #333;
}

.wt-single-featured figcaption,
.wt-single-byline,
.wt-breadcrumb,
.wt-tags span {
  color: #666 !important;
}

.wt-entry-content blockquote,
.wt-tags .wt-tag,
.wt-article [style*="background:var(--wt-dark-2)"] {
  background: #f6f7f9 !important;
  border-color: #e2e5e9 !important;
  color: #222 !important;
}

@media (max-width: 900px) {
  .wt-social-posts-layout,
  .wt-editor-rss-grid {
    grid-template-columns: 1fr;
  }

  .wt-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .wt-mini-grid,
  .wt-editor-rss-grid {
    grid-template-columns: 1fr;
  }

  .wt-article {
    padding: 20px;
  }
}

/* ===== Latest requested nav, headline, and pagination adjustments ===== */
.wt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--wt-dark);
  border-bottom: 3px solid var(--wt-red);
}

.wt-nav {
  background: var(--wt-dark);
  border-bottom: 1px solid var(--wt-border);
}

.wt-nav-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 58px;
  height: auto;
}

.wt-nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 22px;
}

.wt-nav-logo .custom-logo {
  max-height: 42px;
  width: auto;
}

.wt-nav-logo .wt-logo__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.wt-nav-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-left: 8px;
  flex: 1 1 auto;
}

.wt-nav-menu > li > a {
  min-height: 58px;
}

.wt-nav-search-form {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 230px;
  max-width: 28vw;
}

.wt-nav-search-field {
  width: 100%;
  height: 34px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-right: 0;
  color: #111;
  padding: 0 10px;
  font-size: 13px;
  font-family: var(--wt-font-body);
  outline: none;
  border-radius: 3px 0 0 3px;
}

.wt-nav-search-field:focus {
  border-color: var(--wt-red);
}

.wt-nav-search-submit {
  height: 34px;
  width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wt-red);
  color: #fff;
  border: 1px solid var(--wt-red);
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}

.wt-nav-search-submit svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.wt-nav-search-submit:hover {
  background: var(--wt-red-dark);
  border-color: var(--wt-red-dark);
}

.wt-card__media-link {
  display: block;
  position: relative;
  height: 100%;
  color: #fff;
}

.wt-card__title a {
  color: #fff;
  text-decoration: none;
}

.wt-card__title a:hover,
.wt-card:hover .wt-card__title a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.wt-card__shade {
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.68) 22%, rgba(0,0,0,.18) 48%, transparent 72%);
}

.wt-card__body {
  bottom: 0;
  padding: 12px 16px 14px;
  max-height: 44%;
  overflow: hidden;
}

.wt-card__category {
  margin-bottom: 5px;
}

.wt-card__meta {
  margin-top: 5px;
}

.wt-hero-main .wt-card__body {
  padding: 16px 22px 18px;
  max-height: 42%;
}

.wt-hero-main .wt-card__title {
  font-size: clamp(24px, 2.8vw, 42px);
}

.wt-hero-side .wt-card__body,
.wt-mini-grid .wt-card__body,
.wt-top-grid .wt-card__body,
.wt-archive-grid .wt-card__body,
.wt-related-grid .wt-card__body {
  padding: 10px 12px 12px;
  max-height: 48%;
}

.wt-pagination ul,
.wt-pagination .page-numbers {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wt-pagination li {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.wt-pagination li a,
.wt-pagination li span,
.wt-pagination > a,
.wt-pagination > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
}

@media (max-width: 900px) {
  .wt-nav-wrap {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
  }

  .wt-nav-logo {
    margin-right: auto;
  }

  .wt-nav-search-form {
    width: 210px;
    max-width: calc(100% - 120px);
  }

  .wt-nav-menu {
    order: 4;
    width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .wt-menu-toggle {
    display: flex;
  }

  .wt-nav-menu {
    display: none;
    flex-direction: column;
    padding-bottom: 8px;
  }

  .wt-nav-menu.is-open {
    display: flex;
  }

  .wt-nav-menu > li > a {
    min-height: auto;
  }

  .wt-nav-search-form {
    order: 3;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
  }

  .wt-card__body,
  .wt-hero-main .wt-card__body {
    max-height: 50%;
  }
}

/* ===== TrackAlerts requested refinements: featured grid, safer headlines, social play buttons ===== */
.wt-featured-three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.wt-featured-three-grid .wt-card {
  height: 700px;
  min-height: 620px;
}

.wt-featured-three-grid .wt-card__img {
  object-position: center top;
}

.wt-featured-three-grid .wt-card__shade {
  background: linear-gradient(to top, rgba(0,0,0,.98) 0%, rgba(0,0,0,.83) 27%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.06) 100%);
}

.wt-featured-three-grid .wt-card__body {
  bottom: 0;
  padding: 18px 20px 22px;
  max-height: 54%;
  overflow: hidden;
}

.wt-featured-three-grid .wt-card__title {
  font-size: clamp(26px, 2.35vw, 46px) !important;
  line-height: .98;
  letter-spacing: .15px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wt-card__title,
.wt-social-card__title,
.wt-rss-card__title,
.wt-list-card__title {
  overflow-wrap: anywhere;
  word-break: normal;
}

.wt-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.wt-top-grid .wt-card__title,
.wt-archive-grid .wt-card__title,
.wt-mini-grid .wt-card__title,
.wt-related-grid .wt-card__title {
  font-size: clamp(13px, 1.18vw, 18px) !important;
  line-height: 1.03;
  -webkit-line-clamp: 3;
}

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

.wt-social-posts-section .wt-card__media-link::after,
.wt-social-card a::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 16px;
  width: 46px;
  height: 46px;
  border: 4px solid rgba(255,255,255,.95);
  border-radius: 50%;
  background: rgba(0,0,0,.22);
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.wt-social-posts-section .wt-card__media-link::before,
.wt-social-card a::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 29px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 4;
}

.wt-social-card a { position: relative; display: block; height: 100%; }
.wt-social-card .wt-video-play-icon { display: none; }

.wt-section-head__link {
  color: #fff;
  background: var(--wt-red);
  padding: 7px 10px;
  border-radius: 3px;
}
.wt-section-head__link:hover { color: #fff; background: var(--wt-red-dark); }

.wt-footer-top {
  grid-template-columns: 1.4fr 1fr 1fr;
}

@media (max-width: 1100px) {
  .wt-featured-three-grid .wt-card {
    height: 580px;
    min-height: 540px;
  }
  .wt-featured-three-grid .wt-card__title {
    font-size: clamp(23px, 3vw, 38px) !important;
  }
}

@media (max-width: 820px) {
  .wt-featured-three-grid,
  .wt-mini-grid {
    grid-template-columns: 1fr;
  }
  .wt-featured-three-grid .wt-card {
    height: 480px;
    min-height: 430px;
  }
  .wt-featured-three-grid .wt-card__title {
    font-size: clamp(22px, 7vw, 34px) !important;
    -webkit-line-clamp: 4;
  }
  .wt-section-head {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
}

/* ===== Requested update: larger featured headlines, 2-column editor picks, no Instagram play icon ===== */
.wt-featured-three-grid .wt-card__title {
  font-size: clamp(26px, 3.1vw, 52px) !important;
  line-height: .98;
  -webkit-line-clamp: 4;
}
.wt-featured-three-grid .wt-card__body {
  padding: 12px 20px 16px;
}
.wt-featured-three-grid .wt-card__meta {
  font-size: 11px;
}
.wt-top-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.wt-social-posts-block:first-child .wt-social-card .wt-video-play-icon,
.wt-social-posts-block:first-child .wt-social-card a::before,
.wt-social-posts-block:first-child .wt-social-card a::after,
.wt-social-posts-block:first-child .wt-card__media-link::before,
.wt-social-posts-block:first-child .wt-card__media-link::after {
  display: none !important;
  content: none !important;
}
@media (max-width: 900px) {
  .wt-featured-three-grid .wt-card__title {
    font-size: clamp(22px, 7vw, 36px) !important;
  }
  .wt-top-grid--two {
    grid-template-columns: 1fr;
  }
}


/* ===== Requested update: clean YouTube labels, gray hover, linked authors ===== */
.wt-card__title a:hover,
.wt-card:hover .wt-card__title a,
.wt-card__title a:active,
.wt-card__title a:focus {
  color: #b8b8b8 !important;
  text-decoration: none !important;
}
.wt-social-card__title:hover,
.wt-social-card a:hover .wt-social-card__title {
  color: #b8b8b8 !important;
  text-decoration: none !important;
}
.wt-card__meta a.wt-author-link,
.wt-author-link {
  color: inherit;
  text-decoration: none !important;
}
.wt-card__meta a.wt-author-link:hover,
.wt-author-link:hover {
  color: #b8b8b8 !important;
  text-decoration: none !important;
}
.wt-social-posts-block:nth-child(2) .wt-card__category,
.wt-social-posts-block:nth-child(2) .wt-list-card__cat {
  display: none !important;
}

/* ===== Requested update: demo ad bar and stronger mobile responsiveness ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body,
.wt-main,
.wt-header,
.wt-footer,
.wt-social-strip {
  width: 100%;
}

.wt-container,
.wt-container--wide {
  max-width: 100%;
}

.wt-top-ad-wrap {
  padding-top: 12px;
  padding-bottom: 10px;
}

.wt-ad--demo-image {
  display: block;
  width: min(100%, 1280px);
  max-width: 100%;
  height: auto;
  min-height: 0;
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  line-height: 0;
}

.wt-ad--demo-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.wt-featured-three-grid,
.wt-social-posts-layout,
.wt-mini-grid,
.wt-top-grid,
.wt-archive-grid,
.wt-footer-top {
  min-width: 0;
}

.wt-card,
.wt-social-card,
.wt-rss-card,
.wt-list-card,
.wt-nav-wrap,
.wt-nav-menu,
.wt-nav-search-form {
  min-width: 0;
}

.wt-card__title,
.wt-social-card__title,
.wt-rss-card__title,
.wt-list-card__title {
  max-width: 100%;
}

@media (max-width: 900px) {
  .wt-container,
  .wt-container--wide {
    width: min(100%, calc(100% - 24px));
  }

  .wt-nav-wrap {
    width: 100%;
  }

  .wt-nav-logo {
    max-width: calc(100% - 110px);
  }

  .wt-nav-logo .wt-logo__text {
    font-size: 22px;
  }
}

@media (max-width: 700px) {
  .wt-container,
  .wt-container--wide {
    width: min(100%, calc(100% - 20px));
  }

  .wt-top-ad-wrap {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .wt-featured-three-grid .wt-card,
  .wt-top-grid .wt-card,
  .wt-archive-grid .wt-card,
  .wt-mini-grid .wt-card {
    width: 100%;
  }

  .wt-nav-menu > li > a,
  .wt-nav-search-field {
    white-space: normal;
  }
}

/* ===== Requested update: exact 728x90 ad bar and equal social thumbnails ===== */
.wt-ad--demo-image,
.wt-ad--leaderboard.wt-ad--demo-image {
  width: min(728px, 100%);
  max-width: 100%;
  height: auto;
  aspect-ratio: 728 / 90;
}

.wt-ad--demo-image img,
.wt-ad--leaderboard.wt-ad--demo-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 728 / 90;
  object-fit: contain;
}

.wt-social-posts-section .wt-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.wt-social-posts-section .wt-social-card,
.wt-social-posts-section .wt-mini-grid .wt-card {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.wt-social-posts-section .wt-social-card img,
.wt-social-posts-section .wt-mini-grid .wt-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 520px) {
  .wt-social-posts-section .wt-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Single post refinements: no homepage ad, latest/related blocks, author box, comments ===== */
.wt-share--five .wt-social-btn { padding: 7px 13px; font-size: 11px; border-radius: 999px; }
.wt-social-btn--whatsapp { background: #25d366; }
.wt-social-btn--linkedin { background: #0a66c2; }
.wt-social-btn--telegram { background: #229ed9; }

.wt-tags__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--wt-muted);
  margin-right: 4px;
}

.wt-author-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-left: 5px solid var(--wt-red);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  padding: 20px;
  margin-top: 30px;
  color: #111;
}
.wt-author-box__avatar {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.wt-author-box__avatar img {
  border-radius: 50%;
  border: 3px solid #f2f2f2;
  width: 72px;
  height: 72px;
}
.wt-author-box__label {
  font-family: var(--wt-font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--wt-red);
  margin-bottom: 5px;
}
.wt-author-box__name {
  display: inline-block;
  font-family: var(--wt-font-head);
  font-size: 19px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  margin-bottom: 6px;
}
.wt-author-box__name:hover { color: #777; text-decoration: none; }
.wt-author-box__bio { font-size: 14px; line-height: 1.55; color: #555; }

.wt-single-section,
.wt-single-headlines {
  margin-top: 38px;
}
.wt-single-section-title {
  font-family: var(--wt-font-head);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 16px;
  padding-bottom: 11px;
  border-bottom: 3px solid var(--wt-red);
}
.wt-single-headlines {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}
.wt-single-headlines__list {
  display: grid;
  gap: 10px;
}
.wt-single-headlines__list a {
  font-family: var(--wt-font-head);
  font-weight: 800;
  color: #111;
  text-decoration: none;
  line-height: 1.22;
}
.wt-single-headlines__list a:hover { color: #777; text-decoration: none; }
.wt-related { margin-top: 52px; }
.wt-single-latest { margin-top: 76px; padding-top: 18px; }
.wt-single-latest-grid { margin-bottom: 16px; }

.wt-comments {
  background: #fff;
  color: #111;
  margin-top: 46px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}
.wt-comments h2,
.wt-comments .comment-reply-title { color: #111 !important; }
.wt-comments a { color: var(--wt-red); }
.wt-comments .comment-list,
.wt-comments .comment-list li,
.wt-comments .comment-body,
.wt-comments p { color: #222; }
.comment-form label { color: #444; }
.comment-form input,
.comment-form textarea {
  background: #fff;
  border: 1px solid #d7d7d7;
  color: #111;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--wt-red); }

@media (max-width: 700px) {
  .wt-author-box { align-items: flex-start; padding: 16px; }
  .wt-share--five .wt-social-btn { flex: 1 1 auto; justify-content: center; }
  .wt-single-latest { margin-top: 56px; }
  .wt-comments { padding: 18px; }
}

/* ===== Requested single-post author/headline spacing update ===== */
.wt-author-box {
  align-items: flex-start;
}
.wt-author-box__avatar {
  flex: 0 0 84px;
}
.wt-author-box__avatar img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: cover;
}
.wt-author-box__content {
  flex: 1 1 auto;
  min-width: 0;
}
.wt-single-headlines--inline {
  margin: 28px 0;
}
.wt-single-headlines__list {
  display: block;
  margin: 0;
  padding-left: 20px;
}
.wt-single-headlines__list li {
  margin: 0 0 10px;
  padding-left: 2px;
}
.wt-related {
  margin-top: 25px !important;
  margin-bottom: 45px !important;
}
.wt-single-latest {
  margin-top: 0 !important;
}

@media (max-width: 600px) {
  .wt-author-box {
    gap: 14px;
  }
  .wt-author-box__avatar {
    flex-basis: 64px;
  }
  .wt-author-box__avatar img {
    width: 64px;
    height: 64px;
  }
}

/* ===== Requested update: remove bottom latest posts, stronger share buttons, author bio like sample ===== */
.wt-share--five {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 20px 0 24px;
}
.wt-share--five .wt-share__label {
  font-family: var(--wt-font-head);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #111;
  margin-right: 3px;
}
.wt-share--five .wt-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff !important;
  font-family: var(--wt-font-head);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
}
.wt-share--five .wt-social-btn:hover {
  filter: brightness(.92);
  text-decoration: none !important;
}
.wt-social-btn--facebook { background: #1877f2; }
.wt-social-btn--twitter { background: #111; }
.wt-social-btn--whatsapp { background: #25d366; }
.wt-social-btn--linkedin { background: #0a66c2; }
.wt-social-btn--telegram { background: #229ed9; }

.wt-author-box--profile {
  display: flex;
  align-items: center;
  gap: 28px;
  background-color: #fff;
  background-image: radial-gradient(rgba(0,0,0,.18) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  border: 0;
  border-left: 0;
  box-shadow: none;
  padding: 32px 34px;
  margin: 36px 0 34px;
  color: #111;
}
.wt-author-box--profile .wt-author-box__avatar {
  flex: 0 0 132px;
  display: block;
  line-height: 0;
}
.wt-author-box--profile .wt-author-box__avatar img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #111;
  box-shadow: 0 0 0 8px #fff;
}
.wt-author-box--profile .wt-author-box__content {
  flex: 1 1 auto;
  min-width: 0;
}
.wt-author-box--profile .wt-author-box__name {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  font-weight: 900;
  color: #000;
  text-decoration: none;
  border-bottom: 5px dotted #1e73ff;
  padding-bottom: 3px;
  margin: 0 0 22px;
}
.wt-author-box--profile .wt-author-box__name:hover {
  color: #666;
  text-decoration: none;
}
.wt-author-box--profile .wt-author-box__bio {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 1.65vw, 29px);
  line-height: 1.25;
  color: #111;
  margin: 0 0 26px;
}
.wt-author-box__follow {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wt-author-box__follow span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #777;
  text-transform: uppercase;
}
.wt-author-box__follow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
}
.wt-author-box__follow a:hover {
  color: #777;
  text-decoration: none !important;
}
.wt-single-latest,
.wt-single-latest-grid {
  display: none !important;
}

@media (max-width: 700px) {
  .wt-author-box--profile {
    align-items: flex-start;
    gap: 18px;
    padding: 24px 18px;
  }
  .wt-author-box--profile .wt-author-box__avatar {
    flex-basis: 86px;
  }
  .wt-author-box--profile .wt-author-box__avatar img {
    width: 86px;
    height: 86px;
    box-shadow: 0 0 0 5px #fff;
  }
  .wt-author-box--profile .wt-author-box__bio {
    font-size: 16px;
  }
  .wt-author-box__follow {
    gap: 11px;
  }
}

@media (max-width: 480px) {
  .wt-author-box--profile {
    flex-direction: column;
  }
}

/* ===== Requested update: share after tags and author box side-by-side ===== */
.wt-tags + .wt-share--five {
  margin-top: 18px;
  margin-bottom: 30px;
}
.wt-social-btn--reddit { background: #ff4500; }
.wt-author-box--profile,
.wt-article .wt-author-box--profile {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 28px !important;
}
.wt-author-box--profile .wt-author-box__avatar {
  flex: 0 0 132px !important;
  width: 132px !important;
  max-width: 132px !important;
}
.wt-author-box--profile .wt-author-box__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  text-align: left !important;
}
@media (max-width: 700px) {
  .wt-author-box--profile,
  .wt-article .wt-author-box--profile {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 22px 14px !important;
  }
  .wt-author-box--profile .wt-author-box__avatar {
    flex: 0 0 72px !important;
    width: 72px !important;
    max-width: 72px !important;
  }
  .wt-author-box--profile .wt-author-box__avatar img {
    width: 72px !important;
    height: 72px !important;
  }
  .wt-author-box--profile .wt-author-box__name {
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }
  .wt-author-box--profile .wt-author-box__bio {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
}
@media (max-width: 480px) {
  .wt-author-box--profile,
  .wt-article .wt-author-box--profile {
    flex-direction: row !important;
  }
  .wt-author-box--profile .wt-author-box__avatar {
    flex: 0 0 58px !important;
    width: 58px !important;
    max-width: 58px !important;
  }
  .wt-author-box--profile .wt-author-box__avatar img {
    width: 58px !important;
    height: 58px !important;
  }
  .wt-author-box--profile .wt-author-box__name {
    font-size: 20px !important;
  }
  .wt-author-box__follow {
    gap: 9px !important;
  }
}

/* ===== Requested update: final share list and light-gray author bio layout ===== */
.wt-social-btn--pinterest { background: #bd081c; }
.wt-social-btn--email { background: #555; }
.wt-social-btn--telegram,
.wt-social-btn--reddit {
  display: none !important;
}

.wt-author-box--profile,
.wt-article .wt-author-box--profile {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 24px !important;
  width: 100% !important;
  background: #f2f2f2 !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 26px 28px !important;
  margin: 34px 0 !important;
  color: #222 !important;
  text-align: left !important;
}

.wt-author-box--profile .wt-author-box__avatar,
.wt-article .wt-author-box--profile .wt-author-box__avatar {
  flex: 0 0 88px !important;
  width: 88px !important;
  max-width: 88px !important;
  min-width: 88px !important;
  display: block !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.wt-author-box--profile .wt-author-box__avatar img,
.wt-article .wt-author-box--profile .wt-author-box__avatar img {
  display: block !important;
  width: 88px !important;
  height: 88px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.wt-author-box--profile .wt-author-box__content,
.wt-article .wt-author-box--profile .wt-author-box__content {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wt-author-box--profile .wt-author-box__name,
.wt-article .wt-author-box--profile .wt-author-box__name {
  display: inline-block !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  color: #111 !important;
  text-decoration: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
}

.wt-author-box--profile .wt-author-box__bio,
.wt-article .wt-author-box--profile .wt-author-box__bio {
  display: block !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  color: #222 !important;
  margin: 0 0 18px !important;
  max-width: 100% !important;
}

.wt-author-box__posts {
  color: #555 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.wt-author-box__posts:hover {
  color: #777 !important;
}

@media (max-width: 560px) {
  .wt-author-box--profile,
  .wt-article .wt-author-box--profile {
    gap: 14px !important;
    padding: 20px 14px !important;
  }
  .wt-author-box--profile .wt-author-box__avatar,
  .wt-article .wt-author-box--profile .wt-author-box__avatar {
    flex-basis: 64px !important;
    width: 64px !important;
    max-width: 64px !important;
    min-width: 64px !important;
  }
  .wt-author-box--profile .wt-author-box__avatar img,
  .wt-article .wt-author-box--profile .wt-author-box__avatar img {
    width: 64px !important;
    height: 64px !important;
  }
  .wt-author-box--profile .wt-author-box__name,
  .wt-article .wt-author-box--profile .wt-author-box__name {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }
  .wt-author-box--profile .wt-author-box__bio,
  .wt-article .wt-author-box--profile .wt-author-box__bio {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
}

/* ===== FINAL FIX: share buttons + author bio layout, no large gap ===== */
.wt-article .wt-share--five,
.single .wt-share--five {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 16px 0 14px !important;
  padding: 14px 0 !important;
  min-height: 0 !important;
  border-top: 1px solid #d9d9d9 !important;
  border-bottom: 1px solid #d9d9d9 !important;
  overflow: visible !important;
  clear: both !important;
}
.wt-article .wt-share--five .wt-share__label,
.single .wt-share--five .wt-share__label {
  display: inline-flex !important;
  margin: 0 6px 0 0 !important;
  padding: 0 !important;
  font-family: var(--wt-font-head) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: .5px !important;
  text-transform: uppercase !important;
  color: #777 !important;
}
.wt-article .wt-share--five .wt-social-btn,
.single .wt-share--five .wt-social-btn {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
  min-height: 34px !important;
  height: 34px !important;
  padding: 8px 15px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-family: var(--wt-font-head) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.wt-article .wt-social-btn--facebook { background: #1877f2 !important; }
.wt-article .wt-social-btn--twitter { background: #000 !important; }
.wt-article .wt-social-btn--whatsapp { background: #25d366 !important; }
.wt-article .wt-social-btn--linkedin { background: #0a66c2 !important; }
.wt-article .wt-social-btn--pinterest { background: #bd081c !important; }
.wt-article .wt-social-btn--email { background: #555 !important; }
.wt-article .wt-share--five + .wt-author-box--profile,
.single .wt-share--five + .wt-author-box--profile {
  margin-top: 0 !important;
}
.wt-author-box--profile,
.wt-article .wt-author-box--profile,
.single .wt-author-box--profile {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #f2f2f2 !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 24px 26px !important;
  margin: 0 0 30px !important;
  min-height: 0 !important;
  color: #222 !important;
  text-align: left !important;
  overflow: hidden !important;
  clear: both !important;
}
.wt-author-box--profile .wt-author-box__avatar,
.wt-article .wt-author-box--profile .wt-author-box__avatar,
.single .wt-author-box--profile .wt-author-box__avatar {
  display: block !important;
  flex: 0 0 92px !important;
  width: 92px !important;
  max-width: 92px !important;
  min-width: 92px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}
.wt-author-box--profile .wt-author-box__avatar img,
.wt-article .wt-author-box--profile .wt-author-box__avatar img,
.single .wt-author-box--profile .wt-author-box__avatar img {
  display: block !important;
  width: 92px !important;
  height: 92px !important;
  max-width: 92px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}
.wt-author-box--profile .wt-author-box__content,
.wt-article .wt-author-box--profile .wt-author-box__content,
.single .wt-author-box--profile .wt-author-box__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: calc(100% - 116px) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}
.wt-author-box--profile .wt-author-box__name,
.wt-article .wt-author-box--profile .wt-author-box__name,
.single .wt-author-box--profile .wt-author-box__name {
  display: inline-block !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  color: #111 !important;
  text-decoration: none !important;
  border: 0 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}
.wt-author-box--profile .wt-author-box__bio,
.wt-article .wt-author-box--profile .wt-author-box__bio,
.single .wt-author-box--profile .wt-author-box__bio {
  display: block !important;
  width: 100% !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  color: #222 !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}
.wt-author-box--profile .wt-author-box__posts,
.wt-article .wt-author-box--profile .wt-author-box__posts,
.single .wt-author-box--profile .wt-author-box__posts {
  display: inline-block !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  color: #555 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 640px) {
  .wt-article .wt-share--five,
  .single .wt-share--five {
    gap: 8px !important;
  }
  .wt-article .wt-share--five .wt-social-btn,
  .single .wt-share--five .wt-social-btn {
    height: 32px !important;
    min-height: 32px !important;
    padding: 7px 11px !important;
    font-size: 11px !important;
  }
  .wt-author-box--profile,
  .wt-article .wt-author-box--profile,
  .single .wt-author-box--profile {
    gap: 14px !important;
    padding: 18px 14px !important;
  }
  .wt-author-box--profile .wt-author-box__avatar,
  .wt-article .wt-author-box--profile .wt-author-box__avatar,
  .single .wt-author-box--profile .wt-author-box__avatar {
    flex-basis: 64px !important;
    width: 64px !important;
    max-width: 64px !important;
    min-width: 64px !important;
  }
  .wt-author-box--profile .wt-author-box__avatar img,
  .wt-article .wt-author-box--profile .wt-author-box__avatar img,
  .single .wt-author-box--profile .wt-author-box__avatar img {
    width: 64px !important;
    height: 64px !important;
  }
  .wt-author-box--profile .wt-author-box__content,
  .wt-article .wt-author-box--profile .wt-author-box__content,
  .single .wt-author-box--profile .wt-author-box__content {
    max-width: calc(100% - 78px) !important;
  }
  .wt-author-box--profile .wt-author-box__name,
  .wt-article .wt-author-box--profile .wt-author-box__name,
  .single .wt-author-box--profile .wt-author-box__name {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }
  .wt-author-box--profile .wt-author-box__bio,
  .wt-article .wt-author-box--profile .wt-author-box__bio,
  .single .wt-author-box--profile .wt-author-box__bio {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
}

/* ===== HARD FIX 2026-06-06: force six share buttons and proper author row ===== */
.wt-article .wt-share--six,
.single .wt-share--six {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 14px 0 12px !important;
  padding: 14px 0 !important;
  min-height: 0 !important;
  border-top: 1px solid #d6d6d6 !important;
  border-bottom: 1px solid #d6d6d6 !important;
  overflow: visible !important;
  clear: both !important;
}
.wt-article .wt-share--six .wt-share__label,
.single .wt-share--six .wt-share__label {
  display: inline-flex !important;
  margin: 0 6px 0 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: .5px !important;
  text-transform: uppercase !important;
  color: #777 !important;
}
.wt-article .wt-share--six .wt-social-btn,
.single .wt-share--six .wt-social-btn {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 8px 15px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-family: var(--wt-font-head), Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  float: none !important;
  position: static !important;
}
.wt-article .wt-share--six .wt-social-btn--facebook { background: #1877f2 !important; }
.wt-article .wt-share--six .wt-social-btn--twitter { background: #000 !important; }
.wt-article .wt-share--six .wt-social-btn--whatsapp { background: #25d366 !important; }
.wt-article .wt-share--six .wt-social-btn--linkedin { background: #0a66c2 !important; }
.wt-article .wt-share--six .wt-social-btn--pinterest { background: #bd081c !important; }
.wt-article .wt-share--six .wt-social-btn--email { background: #555 !important; }
.wt-article .wt-share--six + .wt-author-box--profile,
.single .wt-share--six + .wt-author-box--profile {
  margin-top: 0 !important;
}
.wt-author-box--profile,
.wt-article .wt-author-box--profile,
.single .wt-author-box--profile {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 22px !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #f2f2f2 !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 24px 26px !important;
  margin: 0 0 30px !important;
  min-height: 0 !important;
  color: #222 !important;
  text-align: left !important;
  overflow: hidden !important;
  clear: both !important;
}
.wt-author-box--profile .wt-author-box__avatar,
.wt-article .wt-author-box--profile .wt-author-box__avatar,
.single .wt-author-box--profile .wt-author-box__avatar {
  display: block !important;
  flex: 0 0 92px !important;
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}
.wt-author-box--profile .wt-author-box__avatar img,
.wt-author-box--profile .wt-author-avatar-img,
.wt-article .wt-author-box--profile .wt-author-box__avatar img,
.single .wt-author-box--profile .wt-author-box__avatar img {
  display: block !important;
  width: 92px !important;
  height: 92px !important;
  max-width: 92px !important;
  min-width: 92px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wt-author-box--profile .wt-author-box__content,
.wt-article .wt-author-box--profile .wt-author-box__content,
.single .wt-author-box--profile .wt-author-box__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: calc(100% - 114px) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}
.wt-author-box--profile .wt-author-box__name,
.wt-article .wt-author-box--profile .wt-author-box__name,
.single .wt-author-box--profile .wt-author-box__name {
  display: inline-block !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  color: #111 !important;
  text-decoration: none !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}
.wt-author-box--profile .wt-author-box__bio,
.wt-article .wt-author-box--profile .wt-author-box__bio,
.single .wt-author-box--profile .wt-author-box__bio {
  display: block !important;
  width: 100% !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  color: #222 !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}
.wt-author-box--profile .wt-author-box__posts,
.wt-article .wt-author-box--profile .wt-author-box__posts,
.single .wt-author-box--profile .wt-author-box__posts {
  display: inline-block !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  color: #555 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 640px) {
  .wt-author-box--profile,
  .wt-article .wt-author-box--profile,
  .single .wt-author-box--profile {
    gap: 14px !important;
    padding: 18px 14px !important;
  }
  .wt-author-box--profile .wt-author-box__avatar,
  .wt-article .wt-author-box--profile .wt-author-box__avatar,
  .single .wt-author-box--profile .wt-author-box__avatar,
  .wt-author-box--profile .wt-author-box__avatar img,
  .wt-author-box--profile .wt-author-avatar-img,
  .wt-article .wt-author-box--profile .wt-author-box__avatar img,
  .single .wt-author-box--profile .wt-author-box__avatar img {
    flex-basis: 64px !important;
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
  }
  .wt-author-box--profile .wt-author-box__content,
  .wt-article .wt-author-box--profile .wt-author-box__content,
  .single .wt-author-box--profile .wt-author-box__content {
    max-width: calc(100% - 78px) !important;
  }
  .wt-author-box--profile .wt-author-box__name,
  .wt-article .wt-author-box--profile .wt-author-box__name,
  .single .wt-author-box--profile .wt-author-box__name {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }
  .wt-author-box--profile .wt-author-box__bio,
  .wt-article .wt-author-box--profile .wt-author-box__bio,
  .single .wt-author-box--profile .wt-author-box__bio {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
}
