/* ═══════════════════════════════════════════════════════════════
   ZENO-LAYOUT.CSS  —  Online Radio Hub
   Sidebar layout, card grid, horizontal scroll rows, responsive
   ═══════════════════════════════════════════════════════════════ */

/* ── Layout Wrapper ──────────────────────────────────────────── */
.orh-layout {
  display: flex;
  min-height: 100vh;
}

/* Mobile-only elements: hidden by default on desktop/tablet */
.orh-mobile-header,
.orh-mobile-search-bar,
.orh-mobile-search-btn {
  display: none;
}

/* ── Left Sidebar ────────────────────────────────────────────── */
.orh-sidebar {
  width: var(--sidebar-w, 240px);
  min-height: 100vh;
  background: var(--clr-sidebar-bg);
  border-right: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  transition: width 0.25s ease, transform 0.25s ease;
}

/* Sidebar scrollbar styling */
.orh-sidebar::-webkit-scrollbar { width: 4px; }
.orh-sidebar::-webkit-scrollbar-track { background: transparent; }
.orh-sidebar::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 2px; }

/* ── Sidebar Footer (social + copyright) ────────────────────── */
.orh-sidebar__footer {
  margin-top: auto;
  padding: 14px 14px 18px;
  border-top: 1px solid var(--clr-border);
  flex-shrink: 0;
}

.orh-sidebar__social {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.orh-sidebar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.orh-sidebar__social-link:hover {
  background: var(--clr-text);
  color: #fff;
  border-color: var(--clr-text);
}

.orh-sidebar__copy {
  font-size: 11px;
  color: var(--clr-muted);
  display: block;
  line-height: 1.4;
}

/* Hide footer section when sidebar is icon-only (tablet) */
@media (max-width: 1023px) and (min-width: 768px) {
  .orh-sidebar__footer { padding: 10px 8px; }
  .orh-sidebar__social { justify-content: center; }
  .orh-sidebar__copy { display: none; }
}


/* ── Sidebar Brand / Logo ────────────────────────────────────── */
.orh-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 18px 16px;
  border-bottom: 1px solid var(--clr-border);
  text-decoration: none;
  flex-shrink: 0;
}
.orh-sidebar__brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}
.orh-sidebar__brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.25s ease;
}

/* ── Sidebar Navigation ──────────────────────────────────────── */
.orh-sidebar__nav {
  flex: 1;
  padding: 12px 10px;
  list-style: none;
  margin: 0;
}

.orh-sidebar__nav li { margin: 2px 0; }

.orh-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--clr-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  overflow: hidden;
}

.orh-sidebar__nav a:hover {
  background: var(--clr-nav-hover);
  color: var(--clr-text);
}

.orh-sidebar__nav a.orh-nav-active {
  background: var(--clr-text);
  color: #fff;
}

.orh-sidebar__nav a svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  opacity: 0.75;
  transition: opacity 0.18s ease;
}
.orh-sidebar__nav a:hover svg,
.orh-sidebar__nav a.orh-nav-active svg { opacity: 1; }

.orh-sidebar__nav .orh-nav-label {
  transition: opacity 0.25s ease;
}

/* ── Sidebar Divider ─────────────────────────────────────────── */
.orh-sidebar__divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 8px 10px;
}

/* Secondary / footer links — smaller */
.orh-sidebar__nav li.orh-nav-secondary a {
  font-size: 13px;
  padding: 8px 12px;
  color: var(--clr-muted);
}
.orh-sidebar__nav li.orh-nav-secondary a:hover { color: var(--clr-text); }

/* ── Mobile Toggle Button ────────────────────────────────────── */
.orh-mobile-toggle {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1100;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--clr-sidebar-bg);
  border: 1px solid var(--clr-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  transition: background 0.18s ease;
}
.orh-mobile-toggle:hover { background: var(--clr-surface); }
.orh-mobile-toggle svg { display: block; }

/* ── Overlay (mobile sidebar backdrop) ──────────────────────── */
.orh-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.orh-overlay.orh-overlay--visible {
  display: block;
  opacity: 1;
}

/* ── Main Content Area ───────────────────────────────────────── */
.orh-main {
  flex: 1;
  min-width: 0;
  margin-left: var(--sidebar-w, 240px);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--clr-bg);
  transition: margin-left 0.25s ease;
}

.orh-main > * { width: 100%; }

/* ── Page Header (title + search bar) ───────────────────────── */
.orh-page-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg);
}

.orh-page-header h1 {
  color: var(--clr-text);
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

/* Search bar wrapper */
.orh-search-wrap {
  position: relative;
  width: 100%;
}
.orh-search-wrap .is-search-input,
.orh-search-wrap input[type="text"],
.orh-search-wrap input[type="search"] {
  width: 100%;
  height: 48px;
  padding: 0 20px 0 48px;
  border: 1.5px solid var(--clr-border);
  border-radius: 40px;
  background: var(--clr-bg);
  font-size: 15px;
  color: var(--clr-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font);
}
.orh-search-wrap .is-search-input:focus,
.orh-search-wrap input[type="text"]:focus,
.orh-search-wrap input[type="search"]:focus {
  border-color: #aaa;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.orh-search-wrap::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
  z-index: 1;
}
/* Override Ivory Search plugin default styles inside our wrapper */
.orh-search-wrap .is-form { border: none !important; padding: 0 !important; background: transparent !important; width: 100% !important; max-width: none !important; }
.orh-search-wrap .is-search-submit { display: none !important; }
/* ── Locations Page (Continents & Countries) ────────────────── */
.orh-locations-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 12px 0 32px;
}
.orh-location-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.orh-location-continent {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-text);
  border-bottom: 1.5px solid var(--clr-border);
  padding-bottom: 8px;
  margin: 0;
}
.orh-location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.orh-location-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 40px;
  color: var(--clr-text);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.orh-location-tag:hover {
  background-color: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239,68,68,0.25);
}

/* ── Filter Tabs (All / Radio / Podcasts) ───────────────────── */
.orh-filter-tabs {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.orh-filter-tab {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-bg);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-muted);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  user-select: none;
}
.orh-filter-tab:hover {
  background: var(--clr-surface);
  color: var(--clr-text);
  border-color: #bbb;
}
.orh-filter-tab.orh-tab-active {
  background: var(--clr-text);
  color: #fff;
  border-color: var(--clr-text);
}

/* ── Trending Keywords ───────────────────────────────────────── */
.orh-trending {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-bottom: 1px solid var(--clr-border);
}
.orh-trending__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-muted);
  flex-shrink: 0;
}
.orh-trending a {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  font-size: 12px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.orh-trending a:hover {
  background: var(--clr-surface);
  color: var(--clr-text);
  border-color: #bbb;
}

/* ── Main Content Padding ────────────────────────────────────── */
.orh-content {
  padding: 24px 32px;
  flex: 1;
}

/* ── Section Row (Homepage horizontal scroll) ───────────────── */
.orh-section-row {
  margin-bottom: 32px;
}

.orh-section-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.orh-section-row__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.2px;
}

.orh-section-row__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.orh-section-row__show-all {
  font-size: 13px;
  color: var(--clr-muted);
  text-decoration: none;
  margin-right: 8px;
  transition: color 0.18s ease;
}
.orh-section-row__show-all:hover { color: var(--clr-text); }

.orh-scroll-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  user-select: none;
}
.orh-scroll-btn:hover {
  background: var(--clr-text);
  color: #fff;
  border-color: var(--clr-text);
}
.orh-scroll-btn:disabled,
.orh-scroll-btn.orh-btn-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Horizontal scroll track */
.orh-scroll-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.orh-scroll-track::-webkit-scrollbar { display: none; }

/* ── Station Card (both scroll and grid) ─────────────────────── */
.orh-card {
  flex-shrink: 0;
  width: 140px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: block;
}

.orh-card__img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 ratio */
  overflow: hidden;
  border-radius: 12px;
  background: var(--clr-surface);
  margin-bottom: 8px;
  transition: transform 0.22s ease;
}

.orh-card:hover .orh-card__img-wrap {
  transform: scale(1.04);
}

.orh-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.orh-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.18s ease;
}
.orh-card:hover .orh-card__name { color: #555; }

/* ── Station Grid (archive pages — multi-row) ───────────────── */
.orh-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px 12px;
}
.orh-card-grid .orh-card {
  width: 100%;
}

/* ── "Show All" link block ───────────────────────────────────── */
.orh-show-all-wrap {
  text-align: center;
  margin-top: 16px;
}
.orh-show-all-link {
  display: inline-block;
  padding: 8px 24px;
  border: 1.5px solid var(--clr-border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-muted);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.orh-show-all-link:hover {
  background: var(--clr-surface);
  color: var(--clr-text);
  border-color: #bbb;
}

/* ── Province / Sub-category Pills ──────────────────────────── */
.orh-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.orh-pill-list a {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--clr-border);
  color: var(--clr-muted);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.orh-pill-list a:hover {
  background: var(--clr-surface);
  color: var(--clr-text);
  border-color: #bbb;
}

/* ── Pagination (wp_pagenavi) ────────────────────────────────── */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1.5px solid var(--clr-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-muted);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.wp-pagenavi a:hover {
  background: var(--clr-surface);
  color: var(--clr-text);
  border-color: #bbb;
}
.wp-pagenavi span.current {
  background: var(--clr-text);
  color: #fff;
  border-color: var(--clr-text);
}

/* ── Category Description / SEO Text ────────────────────────── */
.orh-seo-text {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  color: var(--clr-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Station Single Page ─────────────────────────────────────── */
.orh-station-hero {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--clr-border);
}

.orh-station-hero__logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--clr-border);
}

.orh-station-hero__info { flex: 1; min-width: 0; }

.orh-station-hero__title {
  color: var(--clr-text);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

/* ── Search Results Header ───────────────────────────────────── */
.orh-search-count {
  font-size: 14px;
  color: var(--clr-muted);
  margin-bottom: 16px;
}
.orh-search-count strong { color: var(--clr-text); }

/* ── 404 Page ────────────────────────────────────────────────── */
.orh-404-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 60px 32px;
}

/* ── Footer (inside .orh-main) ───────────────────────────────── */
.orh-footer {
  margin-top: auto;
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 36px 32px 20px;
  color: var(--clr-muted);
  font-size: 13px;
}

/* ── Responsive ──────────────────────────────────────────────── */

/* Tablet: sidebar collapses to icon-only */
@media (max-width: 1023px) {
  .orh-sidebar {
    width: 56px;
  }
  .orh-sidebar__brand-name,
  .orh-sidebar__nav .orh-nav-label {
    opacity: 0;
    pointer-events: none;
    width: 0;
    overflow: hidden;
  }
  .orh-sidebar__brand {
    padding: 20px 12px 16px;
    justify-content: center;
  }
  .orh-sidebar__nav a {
    justify-content: center;
    padding: 10px 0;
  }
  .orh-sidebar__nav a svg { margin: 0; }
  .orh-main {
    margin-left: 56px;
  }
  .orh-page-header,
  .orh-trending,
  .orh-content { padding-left: 20px; padding-right: 20px; }
  .orh-station-hero { padding-left: 20px; padding-right: 20px; }
  .orh-footer { padding-left: 20px; padding-right: 20px; }
}

/* Mobile: sidebar hidden, mobile top header shown */
@media (max-width: 767px) {

  /* ── Mobile Top Header ───────────────────────────────────────── */
  .orh-mobile-header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: 56px;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    padding: 0 8px;
    gap: 4px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  }

  /* Logo + Brand in center of header */
  .orh-mobile-header__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
  .orh-mobile-header__brand img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    flex-shrink: 0;
  }
  .orh-mobile-header__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Search button (right side) */
  .orh-mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    color: var(--clr-muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.18s ease, color 0.18s ease;
  }
  .orh-mobile-search-btn:hover,
  .orh-mobile-search-btn[aria-expanded="true"] {
    background: var(--clr-text);
    color: #fff;
    border-color: var(--clr-text);
  }

  /* Hamburger toggle — inside the header */
  .orh-mobile-toggle {
    display: flex;
    position: static; /* override fixed positioning */
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    box-shadow: none;
    flex-shrink: 0;
  }

  /* Mobile Search Bar (below header) */
  .orh-mobile-search-bar {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .orh-mobile-search-bar.orh-mobile-search-bar--open {
    display: block;
  }
  /* Style the search input inside the dropdown */
  .orh-mobile-search-bar input[type="text"],
  .orh-mobile-search-bar input[type="search"],
  .orh-mobile-search-bar .is-search-input {
    width: 100% !important;
    height: 44px !important;
    padding: 0 16px 0 44px !important;
    border: 1.5px solid var(--clr-border) !important;
    border-radius: 40px !important;
    background: var(--clr-surface) !important;
    font-size: 15px !important;
    color: var(--clr-text) !important;
    outline: none !important;
    box-sizing: border-box !important;
  }
  .orh-mobile-search-bar .is-form { border: none !important; padding: 0 !important; background: transparent !important; }
  .orh-mobile-search-bar .is-search-submit { display: none !important; }

  /* Sidebar: slide in from left */
  .orh-sidebar {
    width: 240px;
    transform: translateX(-100%);
    top: 0; /* sidebar starts from very top, overlaps header */
  }
  .orh-sidebar.orh-sidebar--open {
    transform: translateX(0);
  }
  .orh-sidebar__brand-name,
  .orh-sidebar__nav .orh-nav-label,
  .orh-sidebar__copy {
    opacity: 1;
    pointer-events: auto;
    width: auto;
  }
  .orh-sidebar__brand { padding: 20px 18px 16px; justify-content: flex-start; }
  .orh-sidebar__nav a { justify-content: flex-start; padding: 10px 12px; }

  /* Main content: push down for fixed header */
  .orh-main {
    margin-left: 0;
    padding-top: 56px; /* height of mobile header */
  }

  /* Hide the page header search on mobile (using mobile header search instead) */
  .orh-page-header .orh-search-wrap { display: none; }

  /* Adjust padding on inner content areas */
  .orh-page-header { padding: 20px 16px 16px; }
  .orh-page-header h1 { font-size: 22px; }
  .orh-trending { padding: 12px 16px; }
  .orh-content { padding: 16px; }
  .orh-station-hero { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 24px 16px; }
  .orh-station-hero__info { display: flex; flex-direction: column; align-items: center; }
  .orh-station-tags { justify-content: center; display: flex; flex-wrap: wrap; }
  .orh-station-hero__logo { width: 90px; height: 90px; }
  .orh-card { width: 110px; }
  .orh-card-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 12px 8px; }
}

@media (max-width: 480px) {
  .orh-card { width: 90px; }
  .orh-card-grid { grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); }
  .orh-mobile-header__name { font-size: 13px; }
}
