/* ==========================================================================
   Vida Celular - Component Styles
   ==========================================================================
   All colors reference CSS custom properties (--vc-*) defined in style.css.
   This file contains all reusable UI component styles for the theme.
   ========================================================================== */


/* ==========================================================================
   0. WORDPRESS GLOBAL STYLE OVERRIDES
   WordPress 6.x injects global styles that add underlines to all links.
   These overrides must come before component styles.
   ========================================================================== */

a:where(:not(.wp-element-button)),
a {
  text-decoration: none;
}

a:where(:not(.wp-element-button)):hover,
a:hover {
  text-decoration: none;
}


/* ==========================================================================
   1. HEADER (.site-header)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--vc-z-header);
  width: 100%;
}

/* --- Ad Banner --- */

.header-ad-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--vc-background);
}

.header-ad-banner .ad-slot {
  width: 970px;
  max-width: 100%;
  height: 90px;
}

/* --- Header Main --- */

.header-main {
  background: #000;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--vc-transition);
}

.header-search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* header-cta removed */

.header-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* --- Header Navigation --- */

.header-nav {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  height: 40px;
}

.header-nav ul {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.header-nav li {
  height: 100%;
}

.header-nav a {
  padding: 0 1rem;
  height: 40px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--vc-transition);
  white-space: nowrap;
}

.header-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Submenu */

.header-nav .has-submenu {
  position: relative;
}

.header-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  min-width: 200px;
  border-radius: var(--vc-radius);
  box-shadow: var(--vc-shadow-lg);
  display: none;
  list-style: none;
  padding: 0.5rem 0;
  z-index: 10;
}

.header-nav .submenu li {
  height: auto;
}

.header-nav .submenu a {
  height: auto;
  padding: 0.5rem 1rem;
  font-size: 13px;
}

.header-nav .has-submenu:hover .submenu {
  display: block;
}

/* --- Header Responsive --- */

@media (max-width: 1023px) {
  .header-ad-banner .ad-slot {
    max-width: 100%;
    height: 250px;
  }

  .header-menu-toggle {
    display: flex;
  }

  .header-nav {
    display: none;
  }
}


/* ==========================================================================
   2. MOBILE MENU (.mobile-menu)
   ========================================================================== */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--vc-z-overlay) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #000;
  z-index: var(--vc-z-overlay);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--vc-transition);
}

.mobile-menu ul a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .sub-menu {
  padding-left: 1rem;
  background: rgba(255, 255, 255, 0.03);
}


/* ==========================================================================
   3. BADGES (.badge)
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: var(--vc-radius-sm);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: nowrap;
}

.badge-primary {
  background: var(--vc-badge-bg);
  color: var(--vc-badge-text);
}

.badge-destructive {
  background: var(--vc-destructive);
  color: #fff;
}

.badge-live {
  background: var(--vc-destructive);
  color: #fff;
  gap: 0.375rem;
}

.badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #fff;
  animation: pulse 2s ease-in-out infinite;
}

.badge-new {
  background: var(--vc-destructive);
  color: #fff;
}

.badge-video {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.badge-review {
  background: #7C3AED;
  color: #fff;
}

.badge-guide {
  background: #2563EB;
  color: #fff;
}

.badge-offer {
  background: #D97706;
  color: #fff;
}

.badge-course {
  background: #9333EA;
  color: #fff;
}


/* ==========================================================================
   4. BUTTONS (.btn)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--vc-font-sans);
  font-weight: 600;
  border-radius: var(--vc-radius);
  transition: var(--vc-transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  height: 40px;
  padding: 0 1.25rem;
  font-size: 14px;
  line-height: 1;
}

/* Sizes */

.btn-sm {
  height: 32px;
  padding: 0 0.75rem;
  font-size: 13px;
}

.btn-lg {
  height: 44px;
  padding: 0 1.5rem;
  font-size: 15px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

/* Variants */

.btn-primary {
  background: var(--vc-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--vc-primary-light);
}

.btn-secondary {
  background: var(--vc-secondary);
  color: var(--vc-foreground);
}

.btn-secondary:hover {
  background: var(--vc-border);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--vc-border);
  color: var(--vc-foreground);
}

.btn-outline:hover {
  background: var(--vc-surface);
}

.btn-ghost {
  background: transparent;
  color: var(--vc-foreground);
}

.btn-ghost:hover {
  background: var(--vc-surface);
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}


/* ==========================================================================
   5. CARDS
   ========================================================================== */

/* --- Feed Item (compact news list) --- */

.feed-item__link {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none !important;
  color: inherit;
  border-radius: var(--vc-radius-lg);
  transition: all var(--vc-transition);
  background-color: #ffffff;
  border: 1px solid #e2e5ea;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.feed-item__link:hover {
  border-color: var(--vc-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-decoration: none !important;
}

.feed-item__thumb {
  flex-shrink: 0;
  width: 96px;
  height: 80px;
  border-radius: var(--vc-radius);
  overflow: hidden;
  position: relative;
  background: var(--vc-muted);
}

@media (min-width: 640px) {
  .feed-item__thumb {
    width: 144px;
    height: 96px;
  }
}

.feed-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feed-item__link:hover .feed-item__img {
  transform: scale(1.05);
}

.feed-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

.feed-item__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feed-item__time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 10px;
  color: var(--vc-muted-foreground);
  opacity: 0.5;
}

.feed-item__title {
  font-family: var(--vc-font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--vc-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  transition: color var(--vc-transition);
}

@media (min-width: 640px) {
  .feed-item__title {
    font-size: var(--vc-text-base);
  }
}

.feed-item__link:hover .feed-item__title {
  color: var(--vc-primary);
}

.feed-item__excerpt {
  font-size: var(--vc-text-xs);
  color: var(--vc-muted-foreground);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  display: none;
}

@media (min-width: 640px) {
  .feed-item__excerpt {
    display: -webkit-box;
  }
}

.feed-item__author {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 10px;
  color: var(--vc-muted-foreground);
  opacity: 0.5;
}

.feed-item__ad {
  padding: 1.25rem 0;
  text-align: center;
}

.latest-news__more {
  text-align: center;
  margin-top: 2rem;
}

.latest-news__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.latest-news__header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.latest-news__accent-bar {
  width: 4px;
  height: 28px;
  border-radius: 9999px;
  background: var(--vc-primary);
}

.latest-news__columnists-mobile {
  display: block;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .latest-news__columnists-mobile {
    display: none;
  }
}

/* --- Category Layout (feed + sidebar grid) --- */

.category-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .category-layout {
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }
}

.category-layout__feed {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.category-layout__sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .category-layout__sidebar {
    display: block !important;
  }
}

.category-sidebar-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* --- Sidebar Ad --- */

.sidebar-ad {
  margin-top: 1.5rem;
  text-align: center;
}

/* --- Latest News Layout (grid + sidebar) --- */

.latest-news-layout {
  display: grid !important;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.latest-news__feed {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.latest-news__sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .latest-news-layout {
    grid-template-columns: 2fr 1fr !important;
    gap: 2.5rem;
  }

  .latest-news__sidebar {
    display: block !important;
  }

  .latest-news__columnists-mobile {
    display: none !important;
  }
}

/* --- Card Grid (image card with overlay) --- */

.card-grid {
  position: relative;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
  border: 1px solid var(--vc-border);
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-grid__image {
  aspect-ratio: 4 / 3;
  position: relative;
}

.card-grid__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-grid:hover .card-grid__image img {
  transform: scale(1.05);
}

.card-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.card-grid__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}

.card-grid__title {
  color: #fff;
  font-family: var(--vc-font-display);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  line-height: 1.3;
}

.card-grid__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--vc-text-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.375rem;
}

/* --- Card Video --- */

.card-video {
  position: relative;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-video__image {
  aspect-ratio: 16 / 9;
  position: relative;
}

.card-video__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-video:hover .card-video__image img {
  transform: scale(1.05);
}

.card-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.card-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

.card-video:hover .card-video__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.card-video__play svg {
  width: 20px;
  height: 20px;
  color: #000;
  margin-left: 2px;
}

.card-video__duration {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.card-video__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}

.card-video__title {
  color: #fff;
  font-family: var(--vc-font-display);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  line-height: 1.3;
}

/* --- Card Trending (with ranking number) --- */

.card-trending {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-trending__image {
  position: absolute;
  inset: 0;
}

.card-trending__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-trending:hover .card-trending__image img {
  transform: scale(1.05);
}

.card-trending__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.card-trending__rank {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 28px;
  height: 28px;
  background: var(--vc-primary);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--vc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.card-trending__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}

.card-trending__title {
  color: #fff;
  font-family: var(--vc-font-display);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  line-height: 1.3;
}

/* --- Card Most Read (numbered list item) --- */

.card-most-read {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--vc-border);
  text-decoration: none;
  color: inherit;
  transition: var(--vc-transition);
}

.card-most-read:last-child {
  border-bottom: none;
}

.card-most-read__number {
  font-family: var(--vc-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vc-primary);
  opacity: 0.3;
  min-width: 3rem;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.card-most-read__content {
  flex: 1;
  min-width: 0;
}

.card-most-read__title {
  font-weight: 600;
  font-size: var(--vc-text-base);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  line-height: 1.4;
  color: var(--vc-foreground);
}

.card-most-read__meta {
  font-size: var(--vc-text-xs);
  color: var(--vc-muted-foreground);
  margin-top: 0.25rem;
}

.card-most-read:hover .card-most-read__title {
  color: var(--vc-primary);
}

/* --- Card Cluster (thematic cluster) --- */

.card-cluster {
  display: grid;
  gap: 1rem;
}

.card-cluster__main {
  aspect-ratio: 16 / 9;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-cluster__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-cluster__main:hover img {
  transform: scale(1.05);
}

.card-cluster__main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.card-cluster__main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
}

.card-cluster__main-title {
  color: #fff;
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-xl);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  line-height: 1.3;
}

.card-cluster__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-cluster__list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: var(--vc-transition);
}

.card-cluster__list-item:hover .card-cluster__list-title {
  color: var(--vc-primary);
}

.card-cluster__list-thumb {
  width: 80px;
  aspect-ratio: 1;
  border-radius: var(--vc-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.card-cluster__list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-cluster__list-title {
  font-weight: 600;
  font-size: var(--vc-text-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  line-height: 1.4;
  color: var(--vc-foreground);
  transition: var(--vc-transition);
}

@media (min-width: 1024px) {
  .card-cluster {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==========================================================================
   6. SECTION HEADERS (.section-header)
   ========================================================================== */

.section-header {
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--vc-foreground);
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--vc-text-2xl);
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: var(--vc-text-3xl);
  }
}

.section-subtitle {
  font-size: var(--vc-text-sm);
  color: var(--vc-muted-foreground);
  margin-top: 0.25rem;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--vc-border);
  position: relative;
  margin: 2rem 0;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 2px;
  border-radius: 9999px;
  background: var(--vc-primary);
  opacity: 0.15;
}


/* ==========================================================================
   7. AD SLOT (.ad-slot)
   ========================================================================== */

.ad-slot {
  background: var(--vc-ad-bg);
  border: 1px dashed var(--vc-ad-border);
  border-radius: var(--vc-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vc-muted-foreground);
  font-size: var(--vc-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hide empty ad slot placeholders — no dashed border/bg when no ad is loaded */
.ad-slot.vc-ad-empty {
  display: none;
}


/* ==========================================================================
   8. HERO CAROUSEL
   ========================================================================== */

/* ── Mobile Hero ── */

.hero-mobile {
  display: block;
}

.hero-desktop {
  display: none;
}

@media (min-width: 768px) {
  .hero-mobile { display: none; }
  .hero-desktop { display: block; }
}

.hero-mobile__main {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--vc-radius-xl);
  aspect-ratio: 4 / 3;
  text-decoration: none;
  color: inherit;
}

.hero-mobile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mobile__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 1;
}

.hero-mobile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}

.hero-mobile__title {
  color: #fff;
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xl);
  font-weight: 700;
  line-height: 1.2;
  margin: 0.5rem 0;
}

.hero-mobile__excerpt {
  font-size: var(--vc-text-xs);
  color: rgba(255,255,255,0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 0.5rem;
}

.hero-mobile__meta {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-mobile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.hero-mobile__secondary {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--vc-radius-xl);
  aspect-ratio: 3 / 2;
  text-decoration: none;
  color: inherit;
}

.hero-mobile__secondary-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  z-index: 2;
}

.hero-mobile__secondary-title {
  color: #fff;
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-xs);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0.25rem 0 0;
  line-height: 1.3;
}

/* ── Desktop Carousel ── */

.hero-desktop__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.hero-desktop__main {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
}

.hero-desktop__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero-desktop__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-desktop__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-desktop__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}

.hero-desktop__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.hero-desktop__badges {
  margin-bottom: 0.75rem;
}

.hero-desktop__headline {
  color: #fff;
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-2xl);
  font-weight: 800;
  line-height: 1.15;
  max-width: 80%;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-desktop__headline a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero-desktop__headline {
    font-size: var(--vc-text-3xl);
  }
}

@media (min-width: 1280px) {
  .hero-desktop__headline {
    font-size: var(--vc-text-4xl);
  }
}

.hero-desktop__subtitle {
  font-size: var(--vc-text-sm);
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.hero-desktop__meta {
  font-size: var(--vc-text-xs);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-desktop__meta strong {
  color: rgba(255,255,255,0.7);
}

/* Nav controls */

.hero-desktop__nav {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-desktop__nav-btn {
  padding: 6px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background var(--vc-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-desktop__nav-btn:hover {
  background: rgba(255,255,255,0.2);
}

.hero-desktop__dots {
  display: flex;
  gap: 6px;
}

.hero-desktop__dot {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-desktop__dot.active {
  width: 24px;
  background: var(--vc-primary);
}

/* Side stories */

.hero-desktop__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-desktop__side-item {
  position: relative;
  flex: 1;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
  min-height: 100px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-desktop__side-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-desktop__side-item:hover .hero-desktop__side-img {
  transform: scale(1.05);
}

.hero-desktop__side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
  z-index: 1;
}

.hero-desktop__side-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}

.hero-desktop__side-title {
  color: #fff;
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0.25rem 0 0;
  line-height: 1.3;
}


/* ==========================================================================
   9. NOW SECTION - Compact ticker (.now-section)
   ========================================================================== */

.now-section {
  padding: 1rem 0 1.25rem;
  background: var(--vc-surface);
  border-top: 1px solid var(--vc-border);
  border-bottom: 1px solid var(--vc-border);
}

/* Header */

.now-section__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.now-section__icon {
  width: 16px;
  height: 16px;
  color: var(--vc-destructive);
  fill: var(--vc-destructive);
}

.now-section__title {
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vc-foreground);
  margin: 0;
}

.now-section__pulse {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  margin-left: 2px;
}

.now-section__pulse-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--vc-destructive);
  animation: pulse 2s ease-in-out infinite;
  opacity: 0.75;
}

.now-section__pulse-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--vc-destructive);
}

.now-section__updated {
  font-size: 10px;
  color: var(--vc-muted-foreground);
  margin-left: auto;
  display: none;
}

@media (min-width: 640px) {
  .now-section__updated {
    display: inline;
  }
}

/* Ticker list */

.now-section__list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .now-section__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }
}

/* Individual item */

.now-section__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0.5rem;
  border-radius: var(--vc-radius);
  text-decoration: none;
  color: inherit;
  transition: background var(--vc-transition);
  margin: 0 -0.5rem;
  border-bottom: 1px solid var(--vc-border-light);
}

@media (min-width: 768px) {
  .now-section__item {
    border-bottom: none;
  }
}

.now-section__item:last-child {
  border-bottom: none;
}

.now-section__item:hover {
  background: rgba(0,0,0,0.03);
}

.now-section__item--alt {
  /* alternating row bg on desktop */
}

@media (min-width: 768px) {
  .now-section__item--alt {
    background: rgba(0,0,0,0.02);
  }
}

.now-section__item--alt-mobile {
  /* alternating row bg on mobile */
}

@media (max-width: 767px) {
  .now-section__item--alt-mobile {
    background: rgba(0,0,0,0.02);
  }
}

.now-section__time {
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-xs);
  font-weight: 600;
  color: var(--vc-muted-foreground);
  width: 40px;
  flex-shrink: 0;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}

.now-section__content {
  flex: 1;
  min-width: 0;
}

.now-section__badges {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 2px;
}

.now-section__headline {
  font-family: var(--vc-font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--vc-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  transition: color var(--vc-transition);
}

.now-section__item:hover .now-section__headline {
  color: var(--vc-primary);
}

.now-section__excerpt {
  font-size: 11px;
  color: var(--vc-muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 2px 0 0;
  line-height: 1.4;
}


/* ==========================================================================
   10. TRENDING SECTION (.trending-section)
   ========================================================================== */

.trending-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.trending-tab {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: var(--vc-text-sm);
  font-weight: 500;
  background: var(--vc-secondary);
  color: var(--vc-foreground);
  cursor: pointer;
  transition: var(--vc-transition);
  border: none;
  white-space: nowrap;
  font-family: var(--vc-font-sans);
}

.trending-tab:hover {
  background: var(--vc-border);
}

.trending-tab.active {
  background: var(--vc-primary);
  color: #fff;
}

.trending-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .trending-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trending-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ==========================================================================
   11. LATEST VIDEOS SECTION (.videos-section)
   ========================================================================== */

.videos-section {
  background: #0F1419;
  color: #fff;
}

.videos-section .section-title {
  color: #fff;
}

.videos-section__hero {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .videos-section__hero {
    aspect-ratio: 16 / 9;
  }
}

.videos-section__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videos-section__ambient {
  position: absolute;
  inset: -20%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.videos-section__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.videos-section__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  z-index: 2;
}

.videos-section__row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.videos-section__row::-webkit-scrollbar {
  height: 4px;
}

.videos-section__row::-webkit-scrollbar-track {
  background: transparent;
}

.videos-section__row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
}

.videos-section__row .card-video {
  flex-shrink: 0;
  width: 280px;
}

@media (min-width: 768px) {
  .videos-section__row .card-video {
    width: 320px;
  }
}


/* ==========================================================================
   12. MOST READ SECTION (.most-read-section)
   ========================================================================== */

.most-read-section {
  background: var(--vc-surface);
}

.most-read-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .most-read-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
}

.most-read-grid .card-most-read:first-child {
  padding-top: 0;
}


/* ==========================================================================
   13. NEWSLETTER (.newsletter-section)
   ========================================================================== */

.newsletter-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--vc-card);
  border-radius: var(--vc-radius-xl);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--vc-border);
}

.newsletter-card__icon {
  margin-bottom: 1rem;
}

.newsletter-card__title {
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xl);
  font-weight: 700;
  color: var(--vc-foreground);
  margin: 0 0 0.5rem;
}

.newsletter-card__desc {
  font-size: var(--vc-text-sm);
  color: var(--vc-muted-foreground);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.newsletter-input {
  flex: 1;
  height: 44px;
  padding: 0 1rem;
  border-radius: var(--vc-radius);
  border: 1px solid var(--vc-border);
  font-size: var(--vc-text-base);
  font-family: var(--vc-font-sans);
  background: var(--vc-background);
  color: var(--vc-foreground);
  transition: var(--vc-transition);
}

.newsletter-input::placeholder {
  color: var(--vc-muted-foreground);
}

.newsletter-input:focus {
  border-color: var(--vc-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

@media (max-width: 479px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-card {
    padding: 1.5rem;
  }
}


/* ==========================================================================
   14. FOOTER (.site-footer)
   ========================================================================== */

.site-footer {
  background: #1a2332;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  margin-top: 3rem;
}

.footer-main {
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
  }
}

.footer-gtranslate {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
}

/* Footer brand */

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand__desc {
  font-size: var(--vc-text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-brand__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-brand__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #fff;
  transition: var(--vc-transition);
  text-decoration: none;
}

.footer-brand__social a:hover {
  background: var(--vc-primary);
}

/* Footer links */

.footer-links h4 {
  color: #fff;
  font-weight: 600;
  font-size: var(--vc-text-sm);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--vc-text-sm);
  text-decoration: none;
  transition: var(--vc-transition);
}

.footer-links a:hover {
  color: #fff;
}

/* Footer copyright */

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding: 1.5rem 0;
  font-size: var(--vc-text-xs);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}


/* ==========================================================================
   15. PAGINATION (.pagination)
   ========================================================================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: var(--vc-radius);
  font-size: var(--vc-text-sm);
  font-weight: 500;
  transition: var(--vc-transition);
  text-decoration: none;
}

.pagination a {
  background: var(--vc-card);
  border: 1px solid var(--vc-border);
  color: var(--vc-foreground);
}

.pagination a:hover {
  background: var(--vc-surface);
}

.pagination .current {
  background: var(--vc-primary);
  color: #fff;
  border-color: var(--vc-primary);
}

.pagination .dots {
  border: none;
  background: none;
  color: var(--vc-muted-foreground);
}


/* ==========================================================================
   16. BREADCRUMBS (.breadcrumbs)
   ========================================================================== */

.breadcrumbs {
  font-size: var(--vc-text-xs);
  color: var(--vc-muted-foreground);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0.75rem 0;
}

.breadcrumbs a {
  color: var(--vc-muted-foreground);
  text-decoration: none;
  transition: var(--vc-transition);
}

.breadcrumbs a:hover {
  color: var(--vc-primary);
}

.breadcrumbs .separator {
  margin: 0 0.375rem;
  opacity: 0.5;
}


/* ==========================================================================
   17. SEARCH FORM (.search-form)
   ========================================================================== */

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input {
  flex: 1;
  height: 44px;
  padding: 0 1rem;
  border-radius: var(--vc-radius);
  border: 1px solid var(--vc-border);
  background: var(--vc-background);
  font-size: var(--vc-text-base);
  font-family: var(--vc-font-sans);
  color: var(--vc-foreground);
  transition: var(--vc-transition);
}

.search-form input::placeholder {
  color: var(--vc-muted-foreground);
}

.search-form input:focus {
  border-color: var(--vc-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.25rem;
  background: var(--vc-primary);
  color: #fff;
  border: none;
  border-radius: var(--vc-radius);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--vc-font-sans);
  cursor: pointer;
  transition: var(--vc-transition);
}

.search-form button:hover {
  background: var(--vc-primary-light);
}


/* ==========================================================================
   17c. SEARCH OVERLAY (.search-overlay)
   ========================================================================== */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.search-overlay__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 600px;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}

.search-overlay.active .search-overlay__content {
  transform: translateY(0);
}

.search-overlay__close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.search-overlay__close:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.search-overlay__box {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s ease;
}

.search-overlay__box:focus-within {
  border-color: var(--vc-primary);
}

.search-overlay__icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 0.75rem;
}

.search-overlay__form {
  display: flex;
  flex: 1;
  gap: 0.75rem;
  align-items: center;
}

.search-overlay__input {
  flex: 1;
  height: 56px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  font-family: var(--vc-font-sans);
  color: #fff;
  outline: none;
  caret-color: var(--vc-primary);
}

.search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.search-overlay__hint {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1.5rem;
}

.search-overlay__hint kbd {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--vc-font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 639px) {
  .search-overlay__input {
    font-size: 1.1rem;
    height: 48px;
  }

  .search-overlay__hint {
    display: none;
  }
}


/* ==========================================================================
   18. POST CONTENT (.post-content / .entry-content)
   ========================================================================== */

/* ==========================================================================
   17b. SINGLE ARTICLE LAYOUT (.single-layout)
   ========================================================================== */

.single-article {
  padding-bottom: 3rem;
}

/* Grid: content + sidebar side by side */
.single-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.single-layout__content {
  min-width: 0;
}

.single-layout__sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .single-layout {
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }

  .single-layout__sidebar {
    display: block !important;
  }
}

.single-content-card {
  background-color: #ffffff;
  border: 1px solid #e2e5ea;
  border-radius: var(--vc-radius-xl);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.single-content-card .post-content,
.single-content-card .entry-content {
  max-width: 100%;
}

.single-sidebar-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* --- Sidebar Newsletter Widget --- */

.sidebar-newsletter {
  background-color: #ffffff;
  border-radius: var(--vc-radius-xl);
  border: 1px solid #e2e5ea;
  padding: 1.25rem;
}

.sidebar-newsletter__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-sm);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--vc-foreground);
}

.sidebar-newsletter__title svg {
  color: var(--vc-primary);
}

.sidebar-newsletter__desc {
  font-size: 12px;
  color: var(--vc-muted-foreground);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.sidebar-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-newsletter__input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e5ea;
  border-radius: var(--vc-radius);
  font-size: var(--vc-text-sm);
  outline: none;
  transition: border-color var(--vc-transition);
}

.sidebar-newsletter__input:focus {
  border-color: var(--vc-primary);
}

.post-content,
.entry-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content p,
.entry-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--vc-foreground);
}

.post-content h2,
.entry-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-weight: 700;
  color: var(--vc-foreground);
  font-family: var(--vc-font-display);
  line-height: 1.3;
}

.post-content h3,
.entry-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
  color: var(--vc-foreground);
  font-family: var(--vc-font-display);
  line-height: 1.3;
}

.post-content h4,
.entry-content h4 {
  font-size: 1.125rem;
  margin: 1.25rem 0 0.5rem;
  font-weight: 600;
  color: var(--vc-foreground);
}

.post-content img,
.entry-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--vc-radius);
  margin: 1.5rem 0;
}

.post-content figure,
.entry-content figure {
  max-width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
}

.post-content .wp-block-image,
.entry-content .wp-block-image,
.post-content .wp-caption,
.entry-content .wp-caption {
  max-width: 100%;
  overflow: hidden;
}

.post-content figcaption,
.entry-content figcaption {
  text-align: center;
  font-style: italic;
  font-size: var(--vc-text-sm);
  color: var(--vc-muted-foreground);
  margin-top: 0.5rem;
}

.post-content blockquote,
.entry-content blockquote {
  border-left: 3px solid var(--vc-primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--vc-muted-foreground);
}

.post-content blockquote p,
.entry-content blockquote p {
  color: var(--vc-muted-foreground);
}

.post-content ul,
.entry-content ul,
.post-content ol,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-content li,
.entry-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.post-content pre,
.entry-content pre {
  background: var(--vc-surface);
  padding: 1.25rem;
  border-radius: var(--vc-radius);
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.post-content code,
.entry-content code {
  background: var(--vc-surface);
  padding: 0.125rem 0.375rem;
  border-radius: var(--vc-radius-sm);
  font-family: 'Fira Code', 'JetBrains Mono', monospace;
  font-size: 0.875em;
}

.post-content pre code,
.entry-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

.post-content table,
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1.5rem 0;
}

.post-content th,
.entry-content th {
  background: var(--vc-surface);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--vc-border);
  font-size: var(--vc-text-sm);
}

.post-content td,
.entry-content td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--vc-border);
  font-size: var(--vc-text-sm);
}

.post-content iframe,
.entry-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--vc-radius);
  margin: 1.5rem 0;
}

.post-content a,
.entry-content a {
  color: var(--vc-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--vc-transition);
}

.post-content a:hover,
.entry-content a:hover {
  color: var(--vc-primary-dark);
}


/* ==========================================================================
   19. COLUMNISTS (.columnists-card)
   ========================================================================== */

.columnists-card {
  background: var(--vc-card);
  border-radius: var(--vc-radius-xl);
  border: 1px solid var(--vc-border);
  padding: 1.25rem;
}

.columnists-card__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-sm);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.columnists-card__accent {
  width: 4px;
  height: 16px;
  border-radius: 9999px;
  background: var(--vc-primary);
}

.columnists-card__list {
  display: flex;
  flex-direction: column;
}

.columnist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--vc-border-light);
  text-decoration: none;
  color: inherit;
  transition: var(--vc-transition);
}

.columnist-item:first-child {
  padding-top: 0;
}

.columnist-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.columnist-item__avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 85, 0, 0.15);
}

.columnist-item__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

.columnist-item__info {
  min-width: 0;
  flex: 1;
}

.columnist-item__name {
  font-size: var(--vc-text-sm);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: var(--vc-foreground);
  transition: color var(--vc-transition);
}

.columnist-item:hover .columnist-item__name {
  color: var(--vc-primary);
}

.columnist-item__article {
  font-size: 12px;
  color: var(--vc-muted-foreground);
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  transition: color var(--vc-transition);
}

.columnist-item:hover .columnist-item__article {
  color: rgba(255, 85, 0, 0.7);
}

.columnists-card__btn {
  width: 100%;
  margin-top: 1rem;
}

.columnists-card__ad {
  margin-top: 1.5rem;
}

/* Mobile: 2-column grid for columnists */
@media (max-width: 1023px) {
  .columnists-card__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .columnist-item {
    padding: 0.5rem;
    border-bottom: none;
    border-radius: var(--vc-radius);
    background: var(--vc-muted);
  }

  .columnist-item:first-child {
    padding-top: 0.5rem;
  }

  .columnist-item__article {
    display: none;
  }
}


/* ==========================================================================
   20. SIDEBAR POPULAR (.sidebar-popular)
   ========================================================================== */

.sidebar-popular {
  background: var(--vc-card);
  border-radius: var(--vc-radius-xl);
  border: 1px solid var(--vc-border);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.sidebar-popular__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-sm);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--vc-foreground);
}

.sidebar-popular__title svg {
  color: var(--vc-primary);
}

.sidebar-popular__list {
  display: flex;
  flex-direction: column;
}

.sidebar-popular__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--vc-border-light);
  text-decoration: none;
  color: inherit;
  transition: var(--vc-transition);
}

.sidebar-popular__item:first-child {
  padding-top: 0;
}

.sidebar-popular__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-popular__rank {
  font-family: var(--vc-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--vc-primary);
  min-width: 2rem;
  line-height: 1;
  opacity: 0.6;
}

.sidebar-popular__info {
  flex: 1;
  min-width: 0;
}

.sidebar-popular__headline {
  font-size: var(--vc-text-sm);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--vc-foreground);
  transition: color var(--vc-transition);
}

.sidebar-popular__item:hover .sidebar-popular__headline {
  color: var(--vc-primary);
}

.sidebar-popular__time {
  font-size: 10px;
  color: var(--vc-muted-foreground);
  opacity: 0.5;
  margin-top: 2px;
  display: block;
}

.sidebar-ad {
  margin-top: 1.5rem;
  text-align: center;
}


/* ==========================================================================
   20b. EDITORIA HERO CAROUSEL (.editoria-hero)
   ========================================================================== */

.editoria-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .editoria-hero {
    grid-template-columns: 2fr 1fr;
  }
}

/* Main carousel */
.editoria-hero__main {
  position: relative;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.editoria-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  pointer-events: none;
}

.editoria-hero__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.editoria-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editoria-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
}

.editoria-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .editoria-hero__content {
    padding: 2rem;
  }
}

.editoria-hero__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-xl);
  color: #fff;
  line-height: 1.25;
  margin: 0.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .editoria-hero__title {
    font-size: var(--vc-text-2xl);
  }
}

.editoria-hero__excerpt {
  font-size: var(--vc-text-sm);
  color: rgba(255,255,255,0.65);
  margin: 0 0 0.5rem;
  display: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .editoria-hero__excerpt {
    display: -webkit-box;
  }
}

.editoria-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* Carousel nav */
.editoria-hero__nav {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.editoria-hero__nav-btn {
  padding: 6px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editoria-hero__nav-btn:hover {
  background: rgba(255,255,255,0.2);
}

.editoria-hero__dots {
  display: flex;
  gap: 4px;
}

.editoria-hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.editoria-hero__dot.active {
  width: 24px;
  background: var(--vc-primary);
}

/* Side cards */
.editoria-hero__side {
  display: none;
}

@media (min-width: 768px) {
  .editoria-hero__side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.editoria-hero__side-item {
  position: relative;
  flex: 1;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.editoria-hero__side-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editoria-hero__side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
}

.editoria-hero__side-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}

.editoria-hero__side-title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-sm);
  color: #fff;
  line-height: 1.3;
  margin: 0.25rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ==========================================================================
   20c. EDITORIA TRENDING (.editoria-trending)
   ========================================================================== */

.editoria-trending {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .editoria-trending {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .editoria-trending {
    grid-template-columns: repeat(4, 1fr);
  }
}

.editoria-trending__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.editoria-trending__item:hover .editoria-trending__title {
  color: var(--vc-primary);
}

.editoria-trending__rank {
  font-family: var(--vc-font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--vc-primary);
  opacity: 0.2;
  line-height: 1;
  min-width: 1.5rem;
}

.editoria-trending__info {
  flex: 1;
  min-width: 0;
}

.editoria-trending__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-sm);
  line-height: 1.35;
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--vc-transition);
}

.editoria-trending__meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 10px;
  color: var(--vc-muted-foreground);
  opacity: 0.6;
}

.editoria-trending__meta svg {
  color: var(--vc-primary);
  opacity: 0.5;
}


/* ==========================================================================
   21. SHARE BAR (.share-bar)
   ========================================================================== */

.share-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-bar__label {
  font-size: var(--vc-text-xs);
  font-weight: 600;
  color: var(--vc-muted-foreground);
  margin-right: 0.25rem;
}

.share-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--vc-border);
  background: transparent;
  color: var(--vc-muted-foreground);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.share-bar__btn:hover {
  transform: scale(1.1);
}

.share-bar__btn--facebook:hover {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
}

.share-bar__btn--twitter:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.share-bar__btn--linkedin:hover {
  background: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
}

.share-bar__btn--email:hover {
  background: var(--vc-primary);
  color: #fff;
  border-color: var(--vc-primary);
}

.share-bar__btn--copy:hover {
  background: var(--vc-primary);
  color: #fff;
  border-color: var(--vc-primary);
}

.share-bar__btn--copy.copied {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}

/* Share section (after content) */
.share-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--vc-radius-xl);
  background: var(--vc-muted);
  border: 1px solid var(--vc-border);
  text-align: center;
}

@media (min-width: 640px) {
  .share-section {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.share-section__text h4 {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-sm);
  margin: 0;
}

.share-section__text p {
  font-size: var(--vc-text-xs);
  color: var(--vc-muted-foreground);
  margin: 0.25rem 0 0;
}


/* ==========================================================================
   22. RELATED CARDS (.related-card)
   ========================================================================== */

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--vc-radius-xl);
  overflow: hidden;
  border: 1px solid var(--vc-border);
  background: var(--vc-card);
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: rgba(255, 85, 0, 0.3);
  box-shadow: var(--vc-shadow-md);
}

.related-card__image {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.related-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover .related-card__img {
  transform: scale(1.05);
}

.related-card__body {
  padding: 1rem;
}

.related-card__category {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vc-primary);
  margin-bottom: 0.375rem;
}

.related-card__title {
  font-size: var(--vc-text-sm);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--vc-foreground);
  transition: color var(--vc-transition);
}

.related-card:hover .related-card__title {
  color: var(--vc-primary);
}

.related-card__meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 10px;
  color: var(--vc-muted-foreground);
  opacity: 0.5;
}


/* ==========================================================================
   22b. VIDEO DETAIL (.video-player-area, .video-related-item)
   ========================================================================== */

/* Full-width dark player area */
.video-player-area {
  background: #000;
}

.video-player-area__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.video-player-area__embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-player-area__embed iframe,
.video-player-area__embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sidebar: Mais Vídeos */
.video-sidebar-related__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-sm);
  margin-bottom: 1rem;
}

.video-sidebar-related__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Related video item (horizontal card) */
.video-related-item {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.video-related-item:hover .video-related-item__name {
  color: var(--vc-primary);
}

.video-related-item__thumb {
  flex-shrink: 0;
  width: 9rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--vc-radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--vc-border);
  transition: border-color 0.2s;
}

.video-related-item:hover .video-related-item__thumb {
  border-color: rgba(255, 85, 0, 0.3);
}

.video-related-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-related-item:hover .video-related-item__img {
  transform: scale(1.05);
}

/* Play button overlay */
.video-related-item__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-related-item__play svg {
  width: 28px;
  height: 28px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.9);
  color: #fff;
}

/* Duration badge */
.video-related-item__duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  padding: 1px 4px;
  font-size: 9px;
  font-weight: 500;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.video-related-item__info {
  flex: 1;
  min-width: 0;
}

.video-related-item__name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.video-related-item__meta {
  font-size: 10px;
  color: var(--vc-muted-foreground);
  opacity: 0.6;
}


/* ==========================================================================
   22c. ANCHOR AD (.anchor-ad)
   ========================================================================== */

.anchor-ad {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.65));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem 0.75rem;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.anchor-ad--hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.anchor-ad__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.anchor-ad__close {
  position: absolute;
  top: 6px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.anchor-ad__close:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.anchor-ad__slot {
  line-height: 0;
}


/* ==========================================================================
   23. ANIMATIONS
   ========================================================================== */

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-shimmer {
  animation: shimmer 2s linear infinite;
}


/* ==========================================================================
   20. GLASS EFFECT
   ========================================================================== */

.glass {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vc-border);
}


/* ==========================================================================
   21. SKELETON LOADING
   ========================================================================== */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--vc-surface) 25%,
    var(--vc-border) 50%,
    var(--vc-surface) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  border-radius: var(--vc-radius);
}

.skeleton-text {
  height: 1em;
  width: 100%;
}

.skeleton-title {
  height: 1.5em;
  width: 70%;
}

.skeleton-image {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-badge {
  height: 1.25em;
  width: 60px;
}
