/* ==========================================================================
   ARAKA NEWS THEME - ESTILOS PRINCIPALES
   ========================================================================== */

/* 1. RESET Y BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--araka-bg-body);
  color: var(--araka-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.araka-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* 2. TOPBAR INFORMATIVA */
.araka-topbar {
  background-color: #04361B;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-date {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-weather {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.topbar-currency {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.currency-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--araka-yellow-citrus);
}

.currency-val {
  font-weight: 700;
  color: #FFFFFF;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--araka-yellow-citrus);
  color: var(--araka-green-dark);
  transform: translateY(-1px);
}

/* 3. HEADER PRINCIPAL */
.araka-main-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--araka-border);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-branding {
  flex-shrink: 0;
}

.araka-logo-img {
  height: 54px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-search-form {
  position: relative;
  width: 280px;
}

.header-search-form .search-field {
  width: 100%;
  padding: 0.6rem 2.4rem 0.6rem 1rem;
  font-size: 0.875rem;
  background-color: var(--araka-bg-body);
  border: 1px solid var(--araka-border);
  border-radius: var(--radius-full);
  outline: none;
  transition: all 0.2s ease;
}

.header-search-form .search-field:focus {
  border-color: var(--araka-green-dark);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(6, 78, 39, 0.12);
}

.header-search-form .search-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--araka-green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-araka-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--araka-green-dark);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.btn-araka-primary:hover {
  background-color: var(--araka-green-medium);
  box-shadow: 0 4px 10px rgba(6, 78, 39, 0.25);
  transform: translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-bar {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--araka-green-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 4. NAVBAR DE SECCIONES */
.araka-navbar {
  background-color: var(--araka-green-dark);
  color: #FFFFFF;
}

.araka-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.araka-nav-menu::-webkit-scrollbar {
  display: none;
}

.araka-nav-menu li a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.araka-nav-menu li.current-menu-item a,
.araka-nav-menu li a:hover {
  background-color: var(--araka-green-medium);
  border-bottom-color: var(--araka-yellow-citrus);
  color: #FFFFFF;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* 5. TICKER DE ÚLTIMO MOMENTO */
.araka-ticker-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--araka-border);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--araka-red);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  background-color: #FFFFFF;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-item {
  color: var(--araka-text-main);
  font-weight: 500;
}

.ticker-item:hover {
  color: var(--araka-green-dark);
  text-decoration: underline;
}

.ticker-dot {
  color: var(--araka-red);
  font-weight: bold;
}

/* 6. BADGES DE CATEGORÍA */
.araka-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--badge-color, var(--araka-green-dark));
  background-color: var(--badge-bg, #EAF4EE);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.araka-badge:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.araka-badge.badge-solid {
  border: none;
  box-shadow: var(--shadow-sm);
}

/* 7. SECCIÓN NOTICIAS DESTACADAS (HERO + 2 CARDS) */
.araka-featured-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.featured-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Hero Banner */
.araka-hero-card {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-end;
  background-color: #111;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.araka-hero-card:hover .hero-bg-img {
  transform: scale(1.03);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 45%, rgba(4, 54, 27, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: #FFFFFF;
  max-width: 860px;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-featured-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--araka-yellow-citrus);
}

.hero-volanta {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--araka-yellow-citrus);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: #FFFFFF;
}

.hero-title a:hover {
  color: var(--araka-yellow-citrus);
}

.hero-excerpt {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-meta svg {
  vertical-align: -2px;
}

.meta-sep {
  opacity: 0.5;
}

/* 2 Sub-Cards debajo del Hero */
.featured-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.araka-subfeatured-card {
  background-color: var(--araka-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--araka-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.araka-subfeatured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.subcard-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.subcard-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.araka-subfeatured-card:hover .subcard-image-wrap img {
  transform: scale(1.05);
}

.subcard-image-wrap .araka-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.subcard-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--araka-text-muted);
  margin-bottom: 0.5rem;
}

.card-meta svg {
  vertical-align: -2px;
}

.card-volanta {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.subcard-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.subcard-title a:hover {
  color: var(--araka-green-dark);
}

.card-excerpt {
  font-size: 0.875rem;
  color: var(--araka-text-muted);
  line-height: 1.5;
}

/* 8. GRID PRINCIPAL (FEED + SIDEBAR) */
.araka-main-content-section {
  padding-bottom: 3.5rem;
}

.main-layout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.25rem;
  align-items: start;
}

.section-header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--araka-border);
  padding-bottom: 0.65rem;
  margin-bottom: 1.5rem;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-accent-line {
  width: 5px;
  height: 24px;
  background-color: var(--araka-green-dark);
  border-radius: var(--radius-sm);
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--araka-green-dark);
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 0.8125rem;
  color: var(--araka-text-muted);
  font-weight: 500;
}

/* Stream de noticias cronológico */
.araka-feed-stream {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.araka-feed-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.25rem;
  background-color: var(--araka-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--araka-border);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.araka-feed-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #D0D5DD;
}

.araka-feed-card .card-media {
  position: relative;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.araka-feed-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.araka-feed-card:hover .card-media img {
  transform: scale(1.05);
}

.araka-feed-card .card-media .araka-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

.araka-feed-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.araka-feed-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.araka-feed-card .card-title a:hover {
  color: var(--araka-green-dark);
}

/* Botón Cargar Más */
.araka-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #FFFFFF;
  color: var(--araka-green-dark);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--araka-green-dark);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.btn-load-more:hover {
  background-color: var(--araka-green-dark);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(6, 78, 39, 0.25);
  transform: translateY(-1px);
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(6, 78, 39, 0.2);
  border-top-color: var(--araka-green-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 9. WIDGETS DEL SIDEBAR */
.araka-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.araka-widget {
  background-color: var(--araka-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--araka-border);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--araka-border-light);
  padding-bottom: 0.6rem;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--araka-green-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-title .title-bar {
  width: 4px;
  height: 16px;
  background-color: var(--araka-green-leaf);
  border-radius: var(--radius-sm);
}

.widget-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background-color: var(--araka-bg-body);
  color: var(--araka-text-muted);
}

.widget-badge.live {
  background-color: #FDEDED;
  color: var(--araka-red);
}

/* Widget Clima */
.weather-card-body {
  background: linear-gradient(135deg, #064E27 0%, #276830 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.weather-current {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.weather-main-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.weather-big-icon {
  font-size: 2.5rem;
}

.weather-current-temp {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.weather-condition {
  display: block;
  font-size: 0.8125rem;
  color: var(--araka-yellow-citrus);
  font-weight: 600;
}

.weather-location-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.weather-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.w-detail-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.w-detail-label {
  display: block;
  font-size: 0.6875rem;
  opacity: 0.8;
}

.w-detail-val {
  font-size: 0.8125rem;
  font-weight: 700;
}

/* Widget Cotizaciones */
.currency-table-wrap {
  width: 100%;
}

.currency-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.currency-table th {
  text-align: left;
  font-size: 0.6875rem;
  color: var(--araka-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 0.5rem;
}

.currency-table td {
  padding: 0.6rem 0;
  border-top: 1px solid var(--araka-border-light);
}

.curr-name {
  display: block;
  font-weight: 700;
  color: var(--araka-text-main);
}

.curr-tag {
  font-size: 0.6875rem;
  padding: 1px 5px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.tag-blue { background: #EEF4FF; color: var(--araka-blue); }
.tag-oficial { background: #EAF4EE; color: var(--araka-green-dark); }
.tag-mep { background: #FFFDE6; color: #8C7A00; }
.tag-tarjeta { background: #FBF5EE; color: var(--araka-ochre); }

.curr-num {
  font-family: var(--font-heading);
  font-weight: 600;
}

.curr-num.highlight {
  color: var(--araka-green-dark);
  font-weight: 800;
}

.text-right { text-align: right; }

/* Widget Instagram */
.widget-instagram-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
}

.ig-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ig-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--araka-green-dark);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}

.ig-avatar img {
  width: 100%;
  height: auto;
}

.ig-name {
  display: block;
  font-size: 0.9375rem;
  color: var(--araka-green-dark);
}

.ig-handle {
  font-size: 0.75rem;
  color: var(--araka-text-muted);
}

.ig-bio {
  font-size: 0.8125rem;
  color: var(--araka-text-muted);
  margin-bottom: 1rem;
}

.ig-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ig-grid-item {
  height: 75px;
  background: #E4E6EB;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.ig-grid-item:nth-child(1) { background-color: #064E27; }
.ig-grid-item:nth-child(2) { background-color: #276830; }
.ig-grid-item:nth-child(3) { background-color: #679E48; }

.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}

.btn-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-instagram:hover {
  opacity: 0.95;
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

/* Widget Lo Más Leído */
.trending-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--araka-border-light);
}

.trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trending-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #D0D5DD;
  line-height: 1;
}

.trending-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

.trending-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
}

.trending-title a:hover {
  color: var(--araka-green-dark);
}

/* Widget Publicidad */
.widget-ad-banner {
  background-color: #F4F6F8;
  border: 1px dashed #CED6E0;
  text-align: center;
  padding: 1.5rem 1rem;
}

.ad-label {
  font-size: 0.6875rem;
  color: #98A2B3;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.75rem;
}

.ad-brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.ad-icon { font-size: 1.8rem; }

.ad-brand-box strong {
  font-size: 1rem;
  color: var(--araka-green-dark);
}

.ad-brand-box p {
  font-size: 0.75rem;
  color: var(--araka-text-muted);
}

.btn-ad-contact {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: var(--araka-green-dark);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
}

/* 10. SINGLE ARTICLE PAGE */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--araka-yellow-citrus);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease;
}

.araka-single-page {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.araka-breadcrumbs {
  font-size: 0.8125rem;
  color: var(--araka-text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.crumb-sep { opacity: 0.4; }

.entry-header {
  margin-bottom: 1.75rem;
}

.entry-badges-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.article-reading-time {
  font-size: 0.75rem;
  color: var(--araka-text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.entry-volanta {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.entry-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--araka-text-main);
  margin-bottom: 1rem;
}

.entry-bajada {
  font-size: 1.2rem;
  line-height: 1.55;
  color: #4A4D52;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.entry-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--araka-border);
  border-bottom: 1px solid var(--araka-border);
  padding: 0.85rem 0;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar-circle img {
  border-radius: 50%;
}

.author-text {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.875rem;
}

.author-date {
  font-size: 0.75rem;
  color: var(--araka-text-muted);
}

.share-buttons-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--araka-text-muted);
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.share-btn:hover { transform: scale(1.1); }
.share-wsp { background-color: #25D366; }
.share-fb { background-color: #1877F2; }
.share-tw { background-color: #000000; }
.share-copy { background-color: #65676B; }

.entry-featured-media {
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.featured-img-full {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.wp-caption-text {
  font-size: 0.8125rem;
  color: var(--araka-text-muted);
  padding: 0.5rem 0.25rem;
  font-style: italic;
}

/* Editorial Body */
.editorial-body {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.8;
  color: #22252A;
}

.editorial-body p {
  margin-bottom: 1.5rem;
}

.editorial-body h2, .editorial-body h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--araka-green-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.editorial-body blockquote {
  border-left: 4px solid var(--araka-green-dark);
  padding-left: 1.25rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--araka-green-dark);
  font-size: 1.25rem;
}

.entry-tags-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--araka-border);
}

.tags-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--araka-text-muted);
}

.tag-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--araka-green-dark);
  background-color: var(--araka-bg-body);
  border: 1px solid var(--araka-border);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.tag-pill:hover {
  background-color: var(--araka-green-dark);
  color: #FFFFFF;
}

.editorial-author-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: #FFFFFF;
  border: 1px solid var(--araka-border);
  border-left: 4px solid var(--araka-green-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.author-avatar-big img {
  border-radius: 50%;
}

.author-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--araka-green-leaf);
}

.author-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.author-bio {
  font-size: 0.875rem;
  color: var(--araka-text-muted);
  font-family: var(--font-sans);
}

.related-posts-section {
  margin-top: 3rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-posts-grid .araka-feed-card {
  grid-template-columns: 1fr;
}

.related-posts-grid .araka-feed-card .card-media {
  height: 140px;
}

/* 11. CATEGORY / ARCHIVE HEADER */
.category-hero-header {
  padding: 3rem 0;
  color: #FFFFFF;
}

.cat-pill-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--araka-yellow-citrus);
}

.cat-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  margin-top: 0.25rem;
}

.cat-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-top: 0.5rem;
}

/* 12. FOOTER */
.araka-main-footer {
  background-color: #042E17;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3.5rem;
  border-top: 4px solid var(--araka-green-leaf);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-about-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social-links {
  display: flex;
  gap: 0.6rem;
}

.f-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.f-social:hover {
  background: var(--araka-yellow-citrus);
  color: var(--araka-green-dark);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 2px;
  background-color: var(--araka-yellow-citrus);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links li a:hover {
  color: var(--araka-yellow-citrus);
  padding-left: 4px;
}

.footer-sub-text {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}

.btn-footer-wsp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-footer-wsp:hover {
  background-color: #1EBE5D;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-links {
  display: flex;
  gap: 1.25rem;
}

.legal-links a:hover {
  color: #FFFFFF;
}

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--araka-green-dark);
  color: #FFFFFF;
  border: 2px solid var(--araka-yellow-citrus);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--araka-green-medium);
}

/* 13. RESPONSIVE / MEDIA QUERIES */
@media (max-width: 1024px) {
  .main-layout-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar-right { display: none; }
  .mobile-nav-toggle { display: flex; }
  .header-search-form { display: none; }
  
  .araka-navbar {
    display: none;
  }
  .araka-navbar.mobile-open {
    display: block;
  }
  .araka-nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .araka-nav-menu li {
    width: 100%;
  }
  .araka-nav-menu li a {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .araka-hero-card {
    min-height: 380px;
  }
  .hero-content {
    padding: 1.5rem;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-excerpt {
    font-size: 0.9375rem;
  }

  .featured-sub-grid {
    grid-template-columns: 1fr;
  }

  .araka-feed-card {
    grid-template-columns: 1fr;
  }
  .araka-feed-card .card-media {
    height: 200px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
