/*
THEME NAME: DigiTheme
AUTHOR: Digilite Web Solutions
VERSION: 4.0
*/

/* =========================================================
   0) STICKY FIXES (only if you really need them)
   Sticky breaks if ANY parent has overflow not visible
   Sticky can break if any parent has transform/filter/perspective
========================================================= */
.container,
.tvv-single-wrap,
.tvv-single-grid,
.site,
.site-content,
#page,
#content {
  overflow: visible !important;
  transform: none !important;
  filter: none !important;
  perspective: none !important;
}

/* =========================================================
   1) RESET + BASE
========================================================= */
* {
  outline: none !important;
  text-decoration: none !important;
}

:root {
  --primary-blue: #0F172A;
  --dark-blue: #060724;

  --text-color: #000;
  --text-color-secondary: #CBD5E1;

  --white-color: #fff;
}

/* Roboto Variable Font - Supports weights 100-900 */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900; /* This range covers all weights */
  font-display: swap;   /* Vital for SEO: shows text immediately */
  src: url('/wp-content/themes/digitheme/fonts/roboto-v51-latin-regular.woff2') format('woff2');
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  position: relative;
  background: var(--white-color);
  color: var(--text-color);
}

a,
a:hover,
a:focus {
  color: #244A57;
}

img {
  max-width: 100%;
  height: auto;
}

/* WP image align helpers */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 0 auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }

a img.alignright { float: right; margin: 5px 0 20px 20px; }
a img.alignnone { margin: 5px 20px 20px 0; }
a img.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.wp-caption { max-width: 100%; text-align: center; }
.wp-caption.alignnone { margin: 5px 20px 20px 0; }
.wp-caption.alignleft { margin: 5px 20px 20px 0; }
.wp-caption.alignright { margin: 5px 0 20px 20px; }
.wp-caption img { border: 0; margin: 0; max-width: 98.5%; padding: 0; width: auto; }
.wp-caption p.wp-caption-text { font-size: 13px; line-height: 20px; margin: 0; padding: 6px 0 5px; text-align: left; }

.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Typography sizes */
h1, .head-1 { font-size: 48px; }
h2, .head-2 { font-size: 32px; font-weight: bold; }
h3, .head-3 { font-size: 32px; }
h4, .head-4 { font-size: 20px; }
h5, .head-5 { font-size: 18px; }
h6, .head-6 { font-size: 16px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; /* Extra Bold for that modern look */
  text-transform: uppercase; /* Optional: Montserrat looks great in caps */
  letter-spacing: -0.5px;    /* Tightens up the bold look */
}

/* Utility helpers */
.flex-container { display: flex; flex-wrap: wrap; }
.transition { transition: .5s; }
.relative-parent { position: relative; }
.absolute-bottom { position: absolute; bottom: 0; right: 0; left: 0; }
.absolute { position: absolute; inset: 0; z-index: 20; }
.alpha { padding-left: 0; }
.omega { padding-right: 0; }
.page-404 { padding: 40px 0; }

/* =========================================================
   2) LAYOUT / CONTAINER
========================================================= */
.container {
  width: 80%;
  max-width: 80%;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1230px) {
  .container {
    width: 90%;
    max-width: 90%;
  }
}

/* =========================================================
   3) HEADER (DESKTOP + MOBILE)
========================================================= */
.site-header {
  position: relative;
  z-index: 999;
}

.tvv-latest-list {
  padding-left: 0;
  list-style-type: none;
}

.tvv-latest-item {
  margin-bottom: 10px;
}

.header-items {
  justify-content: space-between;
}

#logo img {
  max-width: 200px;
}

/* Desktop header spacing */
.header-top {
  padding: 30px 0;
}

.header-bottom {
  padding: 20px 0;
  border-top: 1px solid #bebebe3d;
  border-bottom: 1px solid #bebebe3d;
}

/* Desktop menu */
#menu-main-menu {
  display: flex;
  gap: 30px;
  padding-left: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-start;
}
#menu-main-menu li a {
  color: var(--text-color);
}


/* Mobile header row */
.header-top--mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* -------- Burger (FIXED) -------- */
.burger {
  display: none; /* shown in media query */
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;

  /* Force vertical stacking (fix your issue) */
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0; /* use gap instead */
  background: #111;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

/* Respect HTML [hidden] attribute */
.mobile-menu[hidden] { display: none !important; }

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 14px 0 18px;
}
.mobile-menu__list li { margin: 0; }
.mobile-menu__list a {
  display: block;
  padding: 12px 0;
}

/* Open state */
.site-header.is-menu-open .mobile-menu { display: block; }
.site-header.is-menu-open .burger__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.is-menu-open .burger__line:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .burger__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

body.is-locked { overflow: hidden; }

/* Responsive switch */
@media (max-width: 900px) {
  .header-bottom--desktop { display: none; }
  .burger { display: flex; } /* IMPORTANT: display flex, not inline-flex */
}

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

.header-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-search {
  flex-shrink: 0;
}

.header-search__form {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.header-search__input {
  width: 220px;
  height: 42px;
  padding: 0 42px 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.header-search__input:focus {
  border-color: #111;
}

.header-search__button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.header-search--mobile {
  padding: 16px 0 6px;
}

.header-search--mobile .header-search__input {
  width: 100%;
}

.header-search--mobile .header-search__form {
  width: 100%;
}


/* Ref. League */

.tvv-ref-tax-wrap {
  margin-bottom: 40px;
}

/* Fix horizontal scroll inside archive/grid layout */
.tvv-archive-grid,
.tvv-archive-main,
.tvv-ref-tax-wrap,
.tvv-ref-table-card,
.tvv-ref-table-wrap {
  min-width: 0;
}

.tvv-ref-table-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.tvv-ref-table {
  width: 100%;
  min-width: 920px;
}

.tvv-ref-table-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  overflow: hidden;
  min-width: 0;
}

.tvv-ref-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tvv-ref-table {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}

.tvv-ref-table thead th {
  background: #1e1e1e;
  color: #fff;
  padding: 14px 12px;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.tvv-ref-table thead th.tvv-ref-table__ref {
  text-align: left;
}

.tvv-ref-table thead th.is-apps {
  background: #17a81c;
}

.tvv-ref-table tbody td,
.tvv-ref-table tfoot td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
}

.tvv-ref-table tbody tr:nth-child(odd) td {
  background: #f6f6f6;
}

.tvv-ref-table tbody tr:nth-child(even) td {
  background: #ededed;
}

.tvv-ref-table tbody tr:hover td {
  background: #e6e6e6;
}

.tvv-ref-table__ref {
  min-width: 240px;
  text-align: left !important;
}

.tvv-ref-table__ref a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.tvv-ref-table__ref a:hover {
  color: #000;
}

.tvv-ref-table__pos {
  color: #555;
  font-weight: 700;
  min-width: 24px;
}

.tvv-stat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
}

.tvv-stat-pill--yellow {
  background: #ffc400;
  color: #111;
}

.tvv-stat-pill--red {
  background: #cf2e2e;
  color: #fff;
}

.tvv-ref-table tfoot td {
  background: #fff;
  font-weight: 700;
  border-bottom: 0;
  border-top: 2px solid #1e1e1e;
}

.tvv-ref-table__total-label {
  text-align: left !important;
}

@media (max-width: 900px) {
  .tvv-ref-tax-header .tvv-archive-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .tvv-ref-table {
    min-width: 820px;
    font-size: 14px;
  }

  .tvv-ref-table thead th,
  .tvv-ref-table tbody td,
  .tvv-ref-table tfoot td {
    padding: 10px 10px;
  }

  .tvv-ref-table__ref {
    min-width: 220px;
  }
}

/* Breadcrumbs */
.tvv-breadcrumbs-wrap {
  padding: 14px 0;
  border-bottom: 1px solid #bebebe3d;
}

.rank-math-breadcrumb,
.rank-math-breadcrumb p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.rank-math-breadcrumb a {
  color: #111;
  text-decoration: none;
}

.header-search__button {
  color: #000;
}

.header-search__icon {
  display: block;
  color: #000;
}

.rank-math-breadcrumb .separator {
  margin: 0 6px;
  color: #999;
}

@media (max-width: 900px) {
  .header-search--desktop {
    display: none;
  }

  .tvv-breadcrumbs-wrap {
    padding: 10px 0;
  }
}

@media (min-width: 901px) {
  .header-search--mobile {
    display: none;
  }
}

/* =========================================================
   4) HOME FEATURED CARDS
========================================================= */
.vv-featured {
  width: 100%;
  margin-top: 30px;
}

.vv-featured__grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.vv-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  flex: 0 0 400px;
}

.vv-card--large {
  flex: 1 1 auto;
  min-width: 420px;
}

.vv-card__link {
  display: block;
  height: 100%;
  position: relative;
  color: inherit;
}

.vv-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.vv-card__media img {
  width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.vv-card__overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 16px;
}

.vv-card__title {
  margin: 0 0 8px 0;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
  color: #0b0b0b;
}

.vv-card__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0,0,0,0.72);
}

.vv-card__link:hover .vv-card__media {
  transform: scale(1.06);
  transition: transform 350ms ease;
}

/* =========================================================
   5) POST CAROUSEL
========================================================= */
.vv-post-carousel {
  width: 100%;
  margin-top: 60px;
}

.vv-post-carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.vv-post-carousel__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.vv-post-carousel__nav {
  display: flex;
  gap: 10px;
}

.vv-post-carousel__btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 0;
  background: rgba(0,0,0,0.06);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.vv-post-carousel__btn:hover {
  background: rgba(0,0,0,0.10);
}

.vv-post-carousel .swiper {
  padding-bottom: 6px;
}

/* =========================================================
   6) POST CARD
========================================================= */
.vv-pcard {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  height: 100%;
  min-height: 360px;
}

.vv-pcard__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.vv-pcard__thumb { padding: 14px 14px 0 14px; }

.vv-pcard__img,
.vv-pcard__img--placeholder {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: rgba(0,0,0,0.06);
  border: 1px solid #000;
      display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.vv-pcard__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.vv-pcard__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.vv-pcard__excerpt {
margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgb(0 0 0);
    flex: 1 1 auto;
}

.vv-pcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(0,0,0,0.03);
  border-radius: 14px;
  padding: 10px 0;
}

.vv-pcard__author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}


.vv-pcard__avatar { border-radius: 50%; }

.vv-pcard__author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.vv-pcard__author-name {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.vv-pcard__date {
  font-size: 11px;
  color: rgba(0,0,0,0.55);
}

.vv-pcard__bookmark {
  font-size: 16px;
  opacity: 0.65;
}

/* =========================================================
   7) INNER PAGE HERO
========================================================= */
.vv-page-hero{
  position: relative;
  min-height: 260px;
  padding: 56px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 24px 0;
  text-align: center;
}

.vv-page-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.75));
}

.vv-page-hero__inner{ position: relative; z-index: 2; }

.vv-page-hero__title{
  margin: 0;
  color:#fff;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
}

.vv-page-content h2 { font-size: 32px; font-weight: bold; }
.vv-page-content h3 { font-size: 24px; font-weight: bold; }

/* =========================================================
   8) ARCHIVE LAYOUT + SIDEBAR + PAGINATION
========================================================= */
.tvv-archive-wrap { padding: 60px 0; }

.tvv-archive-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.tvv-archive-title { font-size: 32px; font-weight: bold; }

.tvv-archive-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1200px){
  .tvv-archive-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px){
  .tvv-archive-cards{ grid-template-columns: 1fr; }
}

/* Sidebar widgets */
.tvv-sidebar-sticky { position: sticky; top: 24px; }
.tvv-widget{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.tvv-widget-title { margin: 0 0 12px; font-size: 16px; }

@media (max-width: 992px){
  .tvv-archive-grid{ grid-template-columns: 1fr; }
  .tvv-sidebar-sticky{ position: static; }
}

/* Pagination */
.tvv-pagination { margin-top: 22px; }
.tvv-pagination__list{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.tvv-pagination__item a,
.tvv-pagination__item span{
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
}
.tvv-pagination__item .current{ font-weight: 700; }

/* =========================================================
   9) SINGLE POST
========================================================= */
.tvv-single-wrap {
  padding-top: 60px;
  padding-bottom: 24px;
}

.tvv-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.tvv-single-title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: bold;
}

.tvv-single-content { margin-top: 30px; }
.tvv-single-content p { margin-bottom: 16px; }

.tvv-single-thumb { margin-top: 24px; }
.tvv-single-thumb img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .tvv-single-grid { grid-template-columns: 1fr; }
  .tvv-sidebar-sticky { position: static; }
}

/* Incident sections */
.tvv-incident-toc__title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  display: none;
}
.tvv-incident-toc__list {
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}
.tvv-incident-toc__item {
  background: #000;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 9px;
}
a.tvv-incident-toc__link { color: #fff; font-size: 14px; }

.tvv-incident-section {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  margin-top: 20px;
}
.tvv-incident-section__title { font-size: 24px; font-weight: bold; }

/* =========================================================
   10) TWO COLUMN LAYOUT (VV-V3)
========================================================= */
.vv-v3 {
  width: 100%;
  margin: 60px 0;
}

.vv-v3__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.vv-v3__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.tvv-single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 20px;
  font-size: 14px;
  color: #666;
}

.tvv-single-meta__date,
.tvv-single-meta__reading-time {
  color: #666;
}

.tvv-single-meta__sep {
  color: #999;
}

.vv-v3__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.75);
}

.tvv-single-author {
  margin: 32px 0;
  padding: 24px 0;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  background: #fff;
}

.tvv-single-author__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tvv-single-author__image-link {
  flex: 0 0 96px;
}

.tvv-single-author__image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.tvv-single-author__content {
  flex: 1;
}

.tvv-single-author__label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #666;
}

.tvv-single-author__name {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.tvv-single-author__name a {
  color: #111;
  text-decoration: none;
}

.tvv-single-author__bio {
  margin: 0 0 12px;
  color: #444;
  line-height: 1.6;
}

.tvv-single-author__link {
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 767px) {
  .tvv-single-author__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.vv-v3__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

/* ------ AUTHOR ------ */

.tvv-author-head {
	display: flex;
	align-items: center;
	gap: 24px;
  margin-bottom: 30px;
}

.tvv-author-head__image img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.tvv-author-head__content {
	flex: 1;
}

@media (max-width: 767px) {
	.tvv-author-head {
		flex-direction: column;
		text-align: center;
	}

	.tvv-author-head__image img {
		margin: 0 auto;
	}
}

/* Horizontal card */
.vv-hcard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  position: relative;
}


.vv-hcard__link {
	position: relative;
}

.vv-hcard__main-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.vv-hcard__media,
.vv-hcard__content {
	position: relative;
	z-index: 2;
}

.vv-hcard__author img, .vv-pcard__author img {
  max-width: 40px;
  border-radius: 50%;
}

.vv-hcard__author-avatar-link,
.vv-hcard__author-name {
	position: relative;
	z-index: 3;
}

.vv-hcard__link {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  padding: 14px;
  color: inherit;
  align-items: stretch;
}

.vv-hcard__media { border-radius: 14px; overflow: hidden; }

.vv-hcard__img,
.vv-hcard__img--placeholder {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: rgba(0,0,0,0.06);
}

.vv-hcard__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.vv-hcard__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.vv-hcard__excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgb(0 0 0);
    flex: 1 1 auto;
}

.vv-hcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(0,0,0,0.03);
  border-radius: 14px;
  padding: 10px 0;
}

.vv-hcard__author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.vv-hcard__avatar { border-radius: 50%; }

.vv-hcard__author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.vv-hcard__author-name {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.vv-hcard__date { font-size: 11px; color: rgba(0,0,0,0.55); }
.vv-hcard__bookmark { font-size: 16px; opacity: 0.65; }

/* Responsive */
@media (max-width: 991px) {
  .vv-featured__grid { flex-wrap: wrap; }

  .vv-card,
  .vv-card--large {
    flex: 1 1 calc(50% - 14px);
    min-width: unset;
  }

  .vv-v3__grid { grid-template-columns: 1fr; }
  .vv-hcard__link { grid-template-columns: 1fr; }
  .vv-hcard__img,
  .vv-hcard__img--placeholder { height: 200px; }
}

@media (max-width: 767px) {
  .vv-card,
  .vv-card--large {
    flex: 1 1 100%;
    min-height: 320px;
  }
  .vv-card__title { font-size: 18px; }

  .container {
    max-width: 90%;
    width: 90%;
  }
}

/* =========================================================
   11) FOOTER
========================================================= */

.home footer {
  margin-top: 0;
}

#footer_logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.tvv-footer{
  margin-top: 60px;
  border-top: 1px solid rgba(0,0,0,.1);
  background: #0b1620;
  color: rgba(255,255,255,.85);
}

.tvv-footer a { color: rgba(255,255,255,.85); }
.tvv-footer a:hover { color: #fff; text-decoration: underline; }

.tvv-footer__top{
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 30px;
  padding: 40px 0;
}

.tvv-footer__brand{ max-width: 420px; }
.tvv-footer__logo{ display:inline-flex; align-items:center; gap:10px; }
.tvv-footer__logo img{ max-height: 42px; width:auto; }
.tvv-footer__logo-text{ font-weight: 800; font-size: 20px; color:#fff; }

.tvv-footer__desc{
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
}

.tvv-footer__cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tvv-footer__title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #fff;
}

.tvv-footer__menu{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.tvv-footer__menu a{ font-size: 14px; }

.tvv-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
  background: rgba(0,0,0,.15);
}

.tvv-footer__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.tvv-single-tags__list {
  display: flex;
  gap: 20px;
  
}

.tvv-single-tags {
margin-top: 30px;
}

.tvv-single-tags__list a {
  background: #000;
    color: #fff !important;
    padding: 5px 10px;
    border-radius: 9px;
}

.tvv-single-tags__title {
  margin-bottom: 20px;
}

/* ============================
   TVV Academy Single — FULL WHITE THEME
   (Standalone: replace all previous Academy CSS)
   ============================ */

.tvv-academy{
  --tvv-border: rgba(15, 23, 42, 0.12);
  --tvv-text: rgba(15, 23, 42, 0.92);
  --tvv-muted: rgba(15, 23, 42, 0.66);
  --tvv-surface: #ffffff;
  --tvv-surface-2: #f7f9fc;

  --tvv-green: #16a34a;
  --tvv-blue: #2563eb;
  --tvv-red: #ef4444;

  background: #fff;
  color: var(--tvv-text);
  padding-bottom: 40px;
}

.tvv-academy .container{
  margin: 0 auto;
}

/* ============================
   HERO
   ============================ */
.tvv-academy__hero{
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff; /* fallback if no thumbnail */
  border-bottom: 1px solid var(--tvv-border);
}

.tvv-academy__hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.80) 56%, rgba(255,255,255,0.98) 100%),
    radial-gradient(900px 420px at 20% 10%, rgba(37,99,235,0.12), transparent 60%),
    radial-gradient(800px 380px at 80% 10%, rgba(22,163,74,0.10), transparent 55%);
  backdrop-filter: blur(2px);
}

.tvv-academy__hero-inner{
  position: relative;
  padding: 26px 0 26px;
}

/* Breadcrumbs */
.tvv-academy__breadcrumbs{
  font-size: 13px;
  color: rgba(15,23,42,0.70);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.tvv-academy__breadcrumbs a{
  color: rgba(15,23,42,0.70);
  text-decoration: none;
}
.tvv-academy__breadcrumbs a:hover{
  color: rgba(15,23,42,0.92);
}
.tvv-academy__breadcrumbs .sep{
  opacity: .5;
}

/* Meta pills */
.tvv-academy__meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tvv-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--tvv-border);
  background: rgba(15,23,42,0.04);
  color: rgba(15,23,42,0.90);
}

.tvv-pill--blue{ border-color: rgba(37,99,235,0.25); }
.tvv-pill--green{ border-color: rgba(22,163,74,0.25); }
.tvv-pill--gray{ border-color: rgba(15,23,42,0.14); }

.tvv-academy__title{
  margin: 12px 0 8px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,0.96);
}

.tvv-academy__summary{
  max-width: 880px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(15,23,42,0.70);
  margin: 0 0 16px;
}

/* Byline */
.tvv-academy__byline{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.tvv-academy__author{
  display: flex;
  align-items: center;
  gap: 10px;
}
.tvv-academy__avatar{
  border-radius: 999px;
  border: 1px solid var(--tvv-border);
}
.tvv-academy__author-meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tvv-academy__author-name{
  font-weight: 700;
  color: rgba(15,23,42,0.92);
}
.tvv-academy__author-meta time{
  font-size: 12px;
  color: rgba(15,23,42,0.66);
}

/* Buttons */
.tvv-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid var(--tvv-border);
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  color: rgba(15,23,42,0.92);
  background: rgba(15,23,42,0.04);
}
.tvv-btn:hover{
  transform: translateY(-1px);
  background: rgba(15,23,42,0.06);
}
.tvv-btn--primary{
  border-color: rgba(22,163,74,0.26);
  background: rgba(22,163,74,0.10);
}
.tvv-btn--ghost{
  background: rgba(15,23,42,0.035);
}
.tvv-btn--full{
  width: 100%;
  margin-top: 12px;
}

/* ============================
   LAYOUT
   ============================ */
.tvv-academy__grid{
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 18px;
  padding-top: 18px;
}

@media (max-width: 980px){
  .tvv-academy__grid{ grid-template-columns: 1fr; }
}

/* ============================
   PROSE
   ============================ */
.tvv-prose{
  color: rgba(15,23,42,0.92);
  line-height: 1.75;
  font-size: 16px;
}
.tvv-prose h2{
  margin: 22px 0 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.92);
}
.tvv-prose p{
  margin: 0 0 14px;
  color: rgba(15,23,42,0.78);
}
.tvv-prose a{
  color: var(--tvv-blue);
}
.tvv-prose a:hover{
  color: #1d4ed8;
}
.tvv-prose ul,
.tvv-prose ol{
  margin: 0 0 14px 18px;
}
.tvv-prose li{
  margin: 6px 0;
}

/* ============================
   CARDS
   ============================ */
.tvv-card,
.tvv-sidecard{
  background: #ffffff;
  border: 1px solid var(--tvv-border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.tvv-card{ margin-top: 16px; }
.tvv-card__title{
  font-size: 16px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.92);
}

/* ============================
   CALLOUT
   ============================ */
.tvv-callout{
  border-radius: 18px;
  border: 1px solid rgba(22, 163, 74, 0.22);
  background: linear-gradient(180deg, rgba(22,163,74,0.10) 0%, rgba(15,23,42,0.03) 100%);
  padding: 14px 14px 12px;
  margin-bottom: 16px;
}
.tvv-callout__badge{
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(22,163,74,0.95);
  margin-bottom: 8px;
}
.tvv-callout__text{
  font-size: 16px;
  color: rgba(15,23,42,0.92);
  font-weight: 800;
}



/* ============================
   REFEREE
   ============================ */

   .tvv-referee-single {
    background: #ffffff;
    color: #111111;
    padding: 40px 0 80px;
}

.tvv-referee-single .container {
    margin: 0 auto;
}

.tvv-referee-hero {
    margin-bottom: 30px;
}

.tvv-referee-hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 420px;
    gap: 30px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.tvv-referee-kicker {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    color: #6a6a6a;
}

.tvv-referee-title {
    font-size: 44px;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #000000;
}

.tvv-referee-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tvv-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.tvv-referee-excerpt {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
}

.tvv-referee-hero__image {
    height: 100%;
    min-height: 360px;
    background: #f5f5f5;
}

.tvv-referee-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tvv-referee-placeholder {
    height: 100%;
    min-height: 360px;
    border-radius: 20px;
    display: flex;
background: #000000;
background: linear-gradient(90deg, rgba(0, 0, 0, 1) 34%, rgba(4, 4, 18, 1) 61%, rgba(1, 1, 41, 1) 100%);
    align-items: center;
    justify-content: center;
        color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.tvv-referee-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 30px;
    align-items: start;
}

.tvv-referee-sidebar,
.tvv-referee-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tvv-referee-sidebar .tvv-card {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    padding: 0 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.tvv-card-title {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #000000;
}

.tvv-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tvv-meta-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.5;
    color: #222222;
}

.tvv-meta-list li:last-child {
    border-bottom: 0;
}

.tvv-season-label {
    margin: -8px 0 18px;
    font-size: 14px;
    color: #666666;
}

.tvv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.tvv-stats-grid--small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tvv-stat {
    background: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 14px;
}

.tvv-stat__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.tvv-stat__value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.tvv-entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: #1e1e1e;
}

.tvv-entry-content p:last-child {
    margin-bottom: 0;
}

.tvv-season-history {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tvv-season-card {
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 22px;
    background: #fafafa;
}

.tvv-season-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.tvv-season-card__title {
    font-size: 24px;
    margin: 0 0 6px;
    color: #000000;
}

.tvv-season-card__league {
    margin: 0;
    font-size: 14px;
    color: #666666;
}

.tvv-season-card__description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.75;
    color: #222222;
}

.footer-social {
  margin-top: 20px;
}

.footer-socials {
      display: flex;
    gap: 10px;
}

.footer-social i {
    font-size: 28px;
}


/* -------- LOGOS ------------  */

.logo-slider-section {
	padding: 60px 0;
	overflow: hidden;
}

.logo-slider-title {
	text-align: center;
	margin-bottom: 30px;
	font-size: 32px;
	font-weight: 700;
}

.logo-swiper .swiper-slide {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-slide-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	height: 120px;
}

.logo-slide-inner a,
.logo-slide-inner {
	display: block;
      font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0 !important;
    color: #000 !important;
    font-family: 'Montserrat', sans-serif;
}

.logo-slide-inner img {
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-slide-inner a:hover img {
	transform: scale(1.05);
	opacity: 0.9;
}

@media (max-width: 1100px) {
    .tvv-referee-hero__inner {
        grid-template-columns: 1fr;
    }

    .tvv-referee-layout {
        grid-template-columns: 1fr;
    }

    .tvv-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .tvv-referee-single {
        padding: 20px 0 0px;
    }


    .tvv-referee-title {
        font-size: 32px;
    }

    .tvv-referee-main .tvv-card {
        padding: 0 !important;
    }

    .tvv-card-title {
        font-size: 22px;
    }

    .tvv-stats-grid,
    .tvv-stats-grid--small {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tvv-season-card {
      padding: 0 !important;
    }

    .tvv-season-card__title {
        font-size: 20px;
    }
}

/* ============================
   CHECKLIST
   ============================ */
.tvv-checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.tvv-checklist li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.10);
}
.tvv-checklist__dot{
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--tvv-green);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.12);
}
.tvv-checklist__text{
  color: rgba(15,23,42,0.86);
}

/* ============================
   MYTHS / REALITY
   ============================ */
.tvv-myths{
  display: grid;
  gap: 12px;
}
.tvv-myths__item{
  border-radius: 16px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.10);
}
.tvv-myths__label{
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 999px;
}
.tvv-myths__label--bad{
  background: rgba(239, 68, 68, 0.12);
  color: rgba(185, 28, 28, 0.95);
  border: 1px solid rgba(239,68,68,0.22);
}
.tvv-myths__label--good{
  background: rgba(22, 163, 74, 0.10);
  color: rgba(22, 163, 74, 0.95);
  border: 1px solid rgba(22,163,74,0.20);
}
.tvv-myths__text{
  color: rgba(15,23,42,0.78);
  margin-bottom: 10px;
}

/* ============================
   SOURCES
   ============================ */
.tvv-sources{
  margin: 0;
  padding-left: 18px;
}
.tvv-sources li{ margin: 8px 0; }
.tvv-sources a{
  color: rgba(15,23,42,0.90);
  text-decoration: underline;
}
.tvv-sources a:hover{ color: var(--tvv-blue); }

/* ============================
   SIDEBAR
   ============================ */
.tvv-sidecard__title{
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: rgba(15,23,42,0.92);
}
.tvv-sidecard__row{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(15,23,42,0.14);
}
.tvv-sidecard__row:last-child{ border-bottom: 0; }
.tvv-sidecard__row span{ color: rgba(15,23,42,0.66); }
.tvv-sidecard__divider{
  height: 1px;
  background: rgba(15,23,42,0.12);
  margin: 10px 0;
}

/* ============================
   RELATED
   ============================ */
.tvv-related{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.tvv-related__item{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.10);
  transition: transform .12s ease, background .12s ease;
  color: rgba(15,23,42,0.92);
}
.tvv-related__item:hover{
  transform: translateY(-1px);
  background: #eef2ff;
}
.tvv-related__thumb{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(15,23,42,0.10);
}
.tvv-related__title{
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}
.tvv-related__date{
  font-size: 12px;
  color: rgba(15,23,42,0.62);
}

/* ============================
   OPTIONAL: make printed page clean
   ============================ */
@media print{
  .tvv-academy__actions{ display:none !important; }
  .tvv-academy__hero{ min-height: auto; background: none !important; }
  .tvv-academy__hero-overlay{ display:none !important; }
  .tvv-card, .tvv-sidecard{ box-shadow:none !important; }
}


.tvv-academy-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
@media (max-width: 900px){
  .tvv-academy-cards{ grid-template-columns:1fr; }
}

.tvv-academy-card{
  display:block;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  transition:transform .15s ease, box-shadow .15s ease;
}
.tvv-academy-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.tvv-academy-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:10px;
}

.tvv-archive-desc {
    margin-bottom: 30px;
}

.tvv-academy-card__title{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.2;
}

.tvv-academy-card__summary{
  margin:0 0 12px;
  color:rgba(0,0,0,.75);
  line-height:1.5;
}

.tvv-academy-card__footer{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:rgba(0,0,0,.55);
}
.tvv-academy-card__dot{
  opacity:.6;
}

.tvv-footer__copy{ font-size: 13px; color: rgba(255,255,255,.75); }
.tvv-footer__privacy{ font-size: 13px; }

@media (max-width: 900px){
  .tvv-footer__top{ grid-template-columns: 1fr; }
  .tvv-footer__cols{ grid-template-columns: 1fr; }

  .tvv-single-title {
    font-size: 18px;
  }
}

@media (max-width: 767px){ 
  .tvv-single-tags__list {
    flex-wrap: wrap;
  }

  .tvv-single-tags__list a {
        width: 47%;
  }

  .tvv-incident-toc__list {
    flex-direction: column;
        gap: 10px;
  }

  .tvv-single-wrap {
    padding-top: 30px;
  }

  .tvv-incident-toc__title {
    margin-bottom: 20px;
  }
}