/* ============================================================
   Radio La 10 – main.css
   ============================================================ */

:root {
  --blue:        #0055A4;
  --blue-dark:   #003F7D;
  --blue-light:  #E8F1FB;
  --blue-mid:    #2D7DD2;
  --red:         #D0021B;
  --white:       #FFFFFF;
  --gray-light:  #F4F6F9;
  --gray-mid:    #E2E6EC;
  --gray-text:   #5A6270;
  --black:       #111418;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --header-h:    64px;
  --player-h:    64px;
  --radius:      10px;
  --shadow:      0 2px 12px rgba(0,85,164,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--gray-light);
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 0;
  padding-bottom: var(--player-h);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── TICKER ── */
.r10-ticker-bar {
  background: #003F7D;
  color: #fff;
  display: flex;
  align-items: center;
  height: 28px;
  overflow: hidden;
  font-size: 12px;
  position: relative;
  z-index: 101;
}
.r10-ticker-label {
  background: var(--red);
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .6px;
  flex-shrink: 0;
}
.r10-ticker-scroll { flex: 1; overflow: hidden; }
.r10-ticker-items {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: r10TickerScroll 35s linear infinite;
  padding: 0 16px;
}
.r10-ticker-item { display: inline-flex; align-items: center; gap: 6px; }
.r10-ti-label { opacity: .65; }
.r10-ticker-item strong { font-weight: 600; }
.r10-ti-up   { color: #7FD17F; }
.r10-ti-down { color: #FF8A8A; }
@keyframes r10TickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.r10-header {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.r10-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 20px;
}

/* Logo */
.r10-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.r10-logo-badge {
  background: var(--blue);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  line-height: 1;
  flex-shrink: 0;
}
.r10-lb-r10  { font-size: 22px; font-weight: 800; letter-spacing: -1px; }
.r10-lb-freq { font-size: 10px; font-weight: 600; opacity: .85; }
.r10-lt-name { display: block; font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--blue); }
.r10-lt-city { display: block; font-size: 12px; color: var(--gray-text); }

/* Nav */
.r10-nav { display: flex; align-items: center; flex: 1; }
.r10-nav-list {
  list-style: none;
  display: flex;
  gap: 2px;
}
.r10-nav-list li a {
  display: block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  transition: background .15s;
}
.r10-nav-list li a:hover,
.r10-nav-list .current-menu-item > a { background: var(--blue-light); color: var(--blue); }
.r10-nav-list .current-menu-item > a { background: var(--blue); color: #fff; }

/* Header right */
.r10-header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.r10-socials { display: flex; gap: 6px; }
.r10-soc {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  transition: background .15s;
}
.r10-soc:hover { background: var(--blue); color: #fff; }
.r10-datetime { font-size: 12px; color: var(--gray-text); text-align: right; line-height: 1.4; }
.r10-dt-date { font-weight: 600; font-size: 13px; color: var(--black); }

/* Hamburger */
.r10-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; padding: 4px;
}
.r10-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.r10-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.r10-hamburger.open span:nth-child(2) { opacity: 0; }
.r10-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.r10-mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.r10-mobile-menu.open { display: block; }
.r10-mobile-nav-list { list-style: none; }
.r10-mobile-nav-list li a {
  display: block;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: background .15s;
}
.r10-mobile-nav-list li a:hover { background: var(--blue-light); color: var(--blue); }

/* ── HERO ── */
.r10-hero {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--blue-dark) center/cover no-repeat;
}
.r10-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,31,65,.88) 45%, rgba(0,31,65,.15) 100%);
}
.r10-hero-content {
  position: absolute;
  left: 0; bottom: 0;
  width: 55%;
  padding: 36px 40px;
  color: #fff;
}
.r10-hero-cat {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 3px 10px; border-radius: 3px;
  margin-bottom: 12px;
}
.r10-hero-title {
  font-family: var(--font-head);
  font-size: 36px; font-weight: 800; line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.r10-hero-title a { color: #fff; }
.r10-hero-lead {
  font-size: 15px; opacity: .88; line-height: 1.5;
  max-width: 440px; margin-bottom: 16px;
}
.r10-hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: rgba(255,255,255,.75);
}
.r10-hero-share { display: flex; gap: 8px; }
.r10-share-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .15s;
}
.r10-share-btn:hover { background: rgba(255,255,255,.35); }

/* ── MAIN WRAP ── */
.r10-page-wrap { min-height: calc(100vh - var(--header-h) - var(--player-h)); }
.r10-main-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* ── SECTION TITLE ── */
.r10-section-title {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.r10-section-title h2 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  color: var(--blue);
  text-transform: uppercase; letter-spacing: .3px;
  white-space: nowrap;
}
.r10-section-title::after {
  content: ''; flex: 1; height: 2px;
  background: var(--gray-mid); border-radius: 2px;
}
.r10-accent-line {
  width: 28px; height: 4px;
  background: var(--red); border-radius: 2px;
}
.r10-archive-title { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--blue); }

/* ── FEATURED ARTICLE ── */
.r10-featured-article {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-mid);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.r10-feat-img {
  display: block;
  height: 260px;
  overflow: hidden;
  background: var(--blue-dark);
}
.r10-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.r10-feat-img:hover img { transform: scale(1.03); }
.r10-feat-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); }
.r10-feat-body {
  padding: 24px 20px;
  display: flex; flex-direction: column; justify-content: center;
}
.r10-feat-title {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700; line-height: 1.2;
  margin: 10px 0 10px;
  color: var(--black);
}
.r10-feat-title a:hover { color: var(--blue); }
.r10-feat-lead { font-size: 14px; color: var(--gray-text); line-height: 1.55; }

/* ── NEWS GRID ── */
.r10-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.r10-news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: box-shadow .15s, transform .15s;
}
.r10-news-card:hover {
  box-shadow: 0 6px 20px rgba(0,85,164,.13);
  transform: translateY(-2px);
}
.r10-card-img {
  display: block;
  height: 150px;
  overflow: hidden;
  background: var(--blue-dark);
}
.r10-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.r10-card-img:hover img { transform: scale(1.04); }
.r10-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--blue-mid), var(--blue)); }
.r10-card-body { padding: 14px; }
.r10-card-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; line-height: 1.25;
  margin: 8px 0 6px;
}
.r10-card-title a { color: var(--black); }
.r10-card-title a:hover { color: var(--blue); }
.r10-card-lead { font-size: 13px; color: var(--gray-text); line-height: 1.45; }
.r10-card-meta {
  display: flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-size: 11px; color: var(--gray-text);
}
.r10-meta-dot { opacity: .5; }
.r10-cat-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--blue);
  background: var(--blue-light);
  padding: 2px 8px; border-radius: 4px;
}
.r10-cat-tag:hover { background: var(--blue); color: #fff; }

/* ── ARTICLE META ── */
.r10-article-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--gray-text);
  margin-top: 12px;
}

/* ── PAGINACIÓN ── */
.r10-pagination {
  display: flex; justify-content: center;
  margin: 24px 0;
}
.r10-pagination .page-numbers {
  display: inline-flex; gap: 4px;
}
.r10-pagination .page-numbers a,
.r10-pagination .page-numbers span {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--gray-mid);
  font-size: 13px; font-weight: 600;
  background: var(--white); color: var(--black);
  transition: background .15s;
}
.r10-pagination .page-numbers a:hover { background: var(--blue-light); color: var(--blue); }
.r10-pagination .page-numbers .current { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── SINGLE ── */
.r10-breadcrumbs {
  font-size: 13px; color: var(--gray-text);
  margin-bottom: 16px;
}
.r10-breadcrumbs a { color: var(--blue); }
.r10-breadcrumbs span { margin: 0 4px; opacity: .5; }
.r10-single-wrap { grid-template-columns: 1fr 300px; }
.r10-single-article { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-mid); padding: 28px; }
.r10-single-title {
  font-family: var(--font-head);
  font-size: 34px; font-weight: 800; line-height: 1.15;
  color: var(--black);
  margin: 12px 0 16px;
}
.r10-single-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--gray-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-mid);
}
.r10-single-share { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.r10-share-inline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 6px;
  font-size: 11px; font-weight: 700; color: #fff;
  transition: opacity .15s;
}
.r10-share-inline:hover { opacity: .8; }
.r10-share-fb { background: #1877F2; }
.r10-share-tw { background: var(--black); }
.r10-share-wa { background: #25D366; }
.r10-single-thumb { margin-bottom: 24px; border-radius: 8px; overflow: hidden; }
.r10-single-thumb img { width: 100%; height: auto; border-radius: 8px; }
.r10-thumb-caption { font-size: 12px; color: var(--gray-text); margin-top: 6px; font-style: italic; }
.r10-single-content {
  font-size: 16px; line-height: 1.75; color: #222;
}
.r10-single-content h2 { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--blue); margin: 28px 0 12px; }
.r10-single-content h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin: 22px 0 10px; }
.r10-single-content p { margin-bottom: 16px; }
.r10-single-content a { color: var(--blue); text-decoration: underline; }
.r10-single-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--blue-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.r10-single-content img { border-radius: 8px; margin: 16px 0; }
.r10-single-tags { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--gray-mid); font-size: 13px; }
.r10-single-tags .r10-tag-label { font-weight: 600; color: var(--gray-text); margin-right: 6px; }
.r10-single-tags a { display: inline-block; background: var(--gray-light); padding: 3px 10px; border-radius: 20px; font-size: 12px; margin: 3px; color: var(--gray-text); border: 1px solid var(--gray-mid); }
.r10-single-tags a:hover { background: var(--blue-light); color: var(--blue); }
.r10-relacionadas { margin-top: 28px; }

/* ── SIDEBAR ── */
.r10-sidebar { display: flex; flex-direction: column; gap: 20px; }
.r10-sidebar-section {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow);
}
.r10-sidebar-head {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.r10-sidebar-head-live {}
.r10-dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: r10LiveBlink 1.2s infinite;
}
@keyframes r10LiveBlink { 0%,100%{opacity:1}50%{opacity:.2} }

.r10-leidas-item {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-mid);
  transition: background .1s;
}
.r10-leidas-item:last-child { border-bottom: none; }
.r10-leidas-item:hover { background: var(--gray-light); }
.r10-leidas-thumb {
  width: 68px; height: 52px;
  border-radius: 6px; flex-shrink: 0;
  overflow: hidden; background: var(--blue-light);
}
.r10-leidas-thumb img { width: 100%; height: 100%; object-fit: cover; }
.r10-leidas-thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--blue-light), var(--blue-mid)); }
.r10-leidas-title { font-family: var(--font-head); font-size: 14px; font-weight: 600; line-height: 1.25; color: var(--black); }
.r10-leidas-item:hover .r10-leidas-title { color: var(--blue); }
.r10-leidas-cat { font-size: 11px; color: var(--blue); font-weight: 600; margin-top: 3px; }

.r10-sidebar-search {
  display: flex; gap: 6px;
}
.r10-sidebar-search input {
  flex: 1; padding: 8px 12px;
  border: 1px solid var(--gray-mid); border-radius: 6px;
  font-size: 13px; font-family: var(--font-body);
}
.r10-sidebar-search input:focus { outline: none; border-color: var(--blue); }
.r10-sidebar-search button {
  background: var(--blue); color: #fff;
  border: none; padding: 8px 12px; border-radius: 6px;
  font-size: 14px;
}

/* ── SEARCH BAR (header) ── */
.r10-search-bar {
  display: flex; gap: 6px;
}
.r10-search-bar input {
  flex: 1; padding: 6px 12px;
  border: 1px solid var(--gray-mid); border-radius: 6px;
  font-size: 14px; font-family: var(--font-body);
}
.r10-search-bar input:focus { outline: none; border-color: var(--blue); }
.r10-search-bar button {
  background: var(--blue); color: #fff;
  border: none; padding: 6px 14px; border-radius: 6px;
}

/* ── SEARCH INLINE ── */
.r10-search-inline {
  display: flex; gap: 8px; max-width: 400px; margin-top: 16px;
}
.r10-search-inline input {
  flex: 1; padding: 8px 12px;
  border: 1px solid var(--gray-mid); border-radius: 6px;
  font-size: 14px;
}
.r10-search-inline button {
  background: var(--blue); color: #fff;
  border: none; padding: 8px 16px; border-radius: 6px;
  font-weight: 600;
}
.r10-no-results { background: var(--white); padding: 28px; border-radius: var(--radius); border: 1px solid var(--gray-mid); }
.r10-not-found { padding: 24px; color: var(--gray-text); }

/* ── PAGE ── */
.r10-page-article { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-mid); padding: 28px; }

/* ── 404 ── */
.r10-404 { text-align: center; padding: 60px 20px; }
.r10-404 h1 { font-family: var(--font-head); font-size: 96px; font-weight: 800; color: var(--blue); line-height: 1; }
.r10-404 p { font-size: 18px; color: var(--gray-text); margin: 16px 0 28px; }
.r10-btn-primary {
  display: inline-block;
  background: var(--blue); color: #fff;
  padding: 12px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  transition: opacity .15s;
}
.r10-btn-primary:hover { opacity: .85; }

/* ── FOOTER ── */
.r10-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  margin-top: 40px;
}
.r10-footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 40px 16px 28px;
  display: flex; gap: 40px;
  align-items: flex-start;
}
.r10-footer-brand { flex-shrink: 0; min-width: 180px; }
.r10-footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.r10-footer-soc {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  transition: background .15s;
}
.r10-footer-soc:hover { background: rgba(255,255,255,.25); color: #fff; }
.r10-footer-cols { display: flex; gap: 32px; flex: 1; flex-wrap: wrap; }
.r10-footer-col { flex: 1; min-width: 140px; }
.r10-footer-col-title {
  font-family: var(--font-head); font-size: 14px;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 12px; color: #fff;
}
.r10-footer-nav { list-style: none; }
.r10-footer-nav li { margin-bottom: 6px; }
.r10-footer-nav li a { font-size: 13px; opacity: .75; transition: opacity .15s; }
.r10-footer-nav li a:hover { opacity: 1; }
.r10-footer-link { display: block; font-size: 13px; opacity: .75; margin-bottom: 6px; }
.r10-footer-link:hover { opacity: 1; }
.r10-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 16px;
}
.r10-footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; opacity: .6; gap: 16px; flex-wrap: wrap;
}
.r10-footer-bottom-inner a { opacity: 1; color: #fff; text-decoration: underline; }

/* ── PLAYER ── */
.r10-player {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--player-h);
  background: var(--blue-dark);
  border-top: 3px solid var(--blue);
  display: flex; align-items: center;
  padding: 0 24px; gap: 18px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.r10-player-logo {
  background: var(--white); color: var(--blue);
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  padding: 5px 10px; border-radius: 6px;
  flex-shrink: 0; letter-spacing: -.3px;
}
.r10-player-info {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 0;
}
.r10-player-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: r10LiveBlink 1.1s infinite;
}
.r10-player-prog { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; line-height: 1; }
.r10-player-host { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 2px; }
.r10-player-controls { display: flex; align-items: center; gap: 12px; }
.r10-play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-mid); border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.r10-play-btn:hover { background: rgba(255,255,255,.9); }
.r10-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
  transition: border-color .15s;
}
.r10-play-btn:hover .r10-play-icon { border-color: transparent transparent transparent var(--blue); }
.r10-play-icon.paused {
  border: none;
  width: 14px; height: 16px;
  background: linear-gradient(to right, #fff 0, #fff 4px, transparent 4px, transparent 10px, #fff 10px, #fff 14px);
  margin-left: 0;
}
.r10-play-btn:hover .r10-play-icon.paused { background: linear-gradient(to right, var(--blue) 0, var(--blue) 4px, transparent 4px, transparent 10px, var(--blue) 10px, var(--blue) 14px); }
.r10-vol-icon { color: rgba(255,255,255,.55); font-size: 16px; }
input[type=range].r10-volume {
  width: 90px; accent-color: var(--white); cursor: pointer;
}
.r10-player-freq {
  color: rgba(255,255,255,.5); font-size: 13px; font-weight: 600;
  border-left: 1px solid rgba(255,255,255,.15); padding-left: 16px;
  flex-shrink: 0;
}

/* ── WIDGETS ── */
.widget { margin-bottom: 20px; }
.widget-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--blue); text-transform: uppercase; margin-bottom: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .r10-nav { display: none; }
  .r10-hamburger { display: flex; }
  .r10-main-wrap { grid-template-columns: 1fr; }
  .r10-news-grid { grid-template-columns: repeat(2, 1fr); }
  .r10-featured-article { grid-template-columns: 1fr; }
  .r10-feat-img { height: 200px; }
  .r10-hero-content { width: 80%; }
  .r10-footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 600px) {
  .r10-hero { height: 300px; }
  .r10-hero-content { width: 100%; padding: 20px; }
  .r10-hero-title { font-size: 26px; }
  .r10-news-grid { grid-template-columns: 1fr; }
  .r10-player { padding: 0 12px; gap: 10px; }
  .r10-player-freq { display: none; }
  .r10-socials { display: none; }
  .r10-datetime { display: none; }
}
