:root {
  --blue: #0284c7; /* Modern Blue */
  --blue-dark: #0369a1;
  --blue-light: #e0f2fe;
  --ink: #0f172a; /* Slate 900 */
  --muted: #64748b; /* Slate 500 */
  --line: #e2e8f0; /* Slate 200 */
  --paper: #ffffff;
  --soft: #f8fafc; /* Slate 50 */
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --radius-lg: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--blue);
}

.topbar,
.site-footer {
  background: #0f172a;
  color: #94a3b8;
}

.topbar-inner,
.header-inner,
.nav-inner,
.container,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
}

.site-header {
  border-bottom: 4px solid var(--blue);
  background: #1e293b;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, var(--blue));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
  font-family: 'Outfit', sans-serif;
  color: white;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  display: block;
}

.brand-kicker {
  color: #38bdf8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Search Form */
.search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2px 6px 2px 14px;
  transition: all 0.25s ease;
  width: 220px;
}

.search-form:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: #38bdf8;
  width: 280px;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.search-form input {
  background: transparent;
  border: 0;
  color: white;
  padding: 6px 0;
  font-size: 14px;
  width: 100%;
  outline: none;
}

.search-form input::placeholder {
  color: #94a3b8;
}

.search-btn {
  background: transparent;
  border: 0;
  color: #94a3b8;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.search-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav {
  background: #0f172a;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.nav-inner::-webkit-scrollbar {
  display: none; /* Safari & Chrome */
}

.nav a {
  padding: 14px 16px;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  border-bottom-color: var(--blue);
  color: white;
}

.breaking {
  background: var(--blue);
  color: white;
  font-weight: 500;
}

.breaking .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.breaking strong {
  background: #0f172a;
  color: #38bdf8;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}

.breaking .ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  flex-grow: 1;
}

.breaking a {
  display: inline-block;
  animation: ticker-slide 20s linear infinite;
  padding-left: 20px;
}

.breaking a:hover {
  text-decoration: underline;
  animation-play-state: paused;
}

@keyframes ticker-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-10%, 0, 0); }
}

.layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 48px;
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-main,
.card,
.side-box,
.article-page {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.hero-main {
  position: relative;
}

.hero-main:hover {
  box-shadow: var(--shadow-lg);
}

.hero-main img,
.card img,
.article-image {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #e2e8f0;
}

.hero-main img {
  aspect-ratio: 16 / 9;
}

.hero-copy {
  padding: 24px;
}

.hero-copy h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin: 10px 0;
  color: var(--ink);
}

.card-body {
  padding: 20px;
}

.tag {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  background: var(--blue-light);
  padding: 3px 8px;
  border-radius: 4px;
}

h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  margin: 8px 0;
}

h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
}

h2 {
  font-size: 22px;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 700;
}

.muted,
.meta {
  color: var(--muted);
  font-size: 14px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  border-bottom: 2px solid var(--line);
  margin: 10px 0 24px;
  padding-bottom: 10px;
  color: var(--ink);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--blue);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card img {
  aspect-ratio: 16 / 10;
}

.side-box {
  padding: 24px;
  margin-bottom: 24px;
}

.side-box h2 {
  font-size: 18px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 8px;
  margin-top: 0;
  margin-bottom: 16px;
  position: relative;
}

.side-box h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--blue);
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-list li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.side-list li:first-child {
  padding-top: 0;
}

.side-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.side-list a:hover {
  color: var(--blue);
}

/* Article Detail Page */
.article-page {
  padding: 32px;
}

.article-page h1 {
  margin: 12px 0 16px;
}

.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.meta-divider {
  color: var(--line);
}

.article-image {
  border-radius: var(--radius);
  margin-bottom: 28px;
  aspect-ratio: 16 / 9;
}

.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: #334155; /* Slate 700 for better reading contrast */
}

.article-body p {
  margin: 0 0 20px;
}

/* Share Buttons */
.share-buttons {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.share-buttons strong {
  font-size: 14px;
  color: var(--ink);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  color: white;
  opacity: 0.9;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #14171a; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.copy {
  border: 0;
  background: #475569;
  cursor: pointer;
  font-family: inherit;
}

/* Newsletter Form */
.newsletter-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-color: rgba(255, 255, 255, 0.05);
  color: white;
}

.newsletter-box h2 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.newsletter-box h2::after {
  background: #38bdf8;
}

.newsletter-box .muted {
  color: #94a3b8;
}

/* Opinion & Op-Ed */
.opinion-section {
  margin-top: 42px;
}

.opinion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.opinion-card {
  border-top: 4px solid var(--blue);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.opinion-card h3 {
  font-size: 19px;
  margin: 12px 0;
}

/* Ad Zones */
.ad-zone {
  margin-bottom: 24px;
  border: 1px dashed #94a3b8;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ad-zone a {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: inherit;
}

.ad-zone img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius);
}

.ad-zone strong {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: var(--ink);
}

.ad-zone small {
  color: var(--muted);
  font-size: 13px;
}

.ad-label {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ad-placeholder {
  min-height: 90px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    -45deg,
    rgba(2, 132, 199, 0.12),
    rgba(2, 132, 199, 0.12) 10px,
    rgba(2, 132, 199, 0.05) 10px,
    rgba(2, 132, 199, 0.05) 20px
  );
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.2em;
}

.ad-zone-wide {
  margin-top: 22px;
  margin-bottom: 0;
}

.ad-zone-wide a {
  grid-template-columns: minmax(160px, 260px) 1fr;
  align-items: center;
}

.ad-zone-inline {
  margin: 28px 0;
}

.ad-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.inline-check {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.inline-check input {
  width: auto;
}

.subscribe-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.subscribe-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  border-radius: var(--radius);
}

.subscribe-form input:focus {
  border-color: #38bdf8;
  outline: none;
}

/* Search Page Styles */
.search-hero {
  padding: 40px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.search-page-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.search-page-form input {
  flex-grow: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 12px 16px;
}

.search-page-form input:focus {
  border-color: var(--blue);
  outline: none;
}

.no-results {
  text-align: center;
  padding: 48px 24px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.page-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.page-link.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* Admin Dashboard CSS */
.admin-shell {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.admin-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-nav h1 {
  margin: 0;
  font-size: 28px;
}

.admin-card {
  border: 1px solid var(--line);
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Dashboard Stats Widget */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.stat-card .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-top: 6px;
}

.stat-card .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--blue);
  color: white;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--blue-dark);
  color: white;
  transform: translateY(-1px);
}

.btn.secondary {
  background: #334155; /* Slate 700 */
}
.btn.secondary:hover {
  background: #1e293b;
}

.btn.danger {
  background: #ef4444; /* Red 500 */
}
.btn.danger:hover {
  background: #dc2626;
}

.form-grid {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #334155;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px 14px;
  font: inherit;
  border-radius: var(--radius);
  background: white;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: none;
}

textarea {
  min-height: 240px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 12px;
  text-align: left;
  font-size: 14px;
}

th {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #334155;
  background: var(--soft);
}

tbody tr:hover {
  background: var(--soft);
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-inner .muted {
  font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .layout,
  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .opinion-grid {
    grid-template-columns: 1fr;
  }

  .ad-zone-wide a {
    grid-template-columns: 1fr;
  }

  .admin-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .search-form {
    width: 100%;
  }

  .search-form:focus-within {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

/* --- Osmanya Script Mode Styling --- */
body.osmanya-mode {
  font-family: 'Noto Sans Osmanya', 'Inter', -apple-system, sans-serif !important;
}

body.osmanya-mode h1,
body.osmanya-mode h2,
body.osmanya-mode h3,
body.osmanya-mode .brand-name,
body.osmanya-mode .brand-mark,
body.osmanya-mode th {
  font-family: 'Noto Sans Osmanya', 'Outfit', sans-serif !important;
}

.osmanya-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  outline: none;
}

.osmanya-toggle-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.osmanya-toggle-btn.active,
.darkmode-toggle-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* --- Dark Mode Toggle & Controls --- */
.topbar-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.darkmode-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  outline: none;
}

.darkmode-toggle-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* --- Dark Mode Theme Variables --- */
body.dark-mode {
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: #334155;
  --paper: #1e293b;
  --soft: #0f172a;
  --blue-light: rgba(2, 132, 199, 0.2);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

body.dark-mode .article-body {
  color: #cbd5e1;
}

body.dark-mode .search-hero,
body.dark-mode .hero-main,
body.dark-mode .card,
body.dark-mode .side-box,
body.dark-mode .article-page,
body.dark-mode .opinion-card,
body.dark-mode .ad-zone,
body.dark-mode .admin-card {
  background: var(--paper);
}

body.dark-mode .site-header,
body.dark-mode .nav,
body.dark-mode .topbar,
body.dark-mode .site-footer {
  background: #020617;
}

body.dark-mode .card:hover,
body.dark-mode .hero-main:hover {
  border-color: #475569;
}

body.dark-mode label,
body.dark-mode th,
body.dark-mode .share-buttons strong {
  color: var(--ink);
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--line);
}

body.dark-mode table th {
  background: var(--soft);
  color: var(--ink);
}

body.dark-mode table tbody tr:hover {
  background: var(--soft);
}

body.dark-mode .page-link {
  background: var(--paper);
  border-color: var(--line);
}

body.dark-mode .search-page-form input,
body.dark-mode .subscribe-form input {
  background: var(--soft);
  color: var(--ink);
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .topbar-controls {
    flex-wrap: wrap;
  }
}

/* Footer-ka Guud */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-top: 1px solid #222;
    margin-top: 50px;
}

/* Kala qeybinta khaanadaha (Grid) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

/* Tiirarka hoose - Ciwaanka weyn */
.footer-column h3 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

/* Linkiyada qoraalka yar */
.footer-column ul li a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Marka mouse-ka la mariyo linkiyada */
.footer-column ul li a:hover {
    color: #ffffff;
}

/* Qaybta xuquuqda (Bottom) */
.footer-bottom {
    padding-top: 20px;
    text-align: left;
}

.footer-bottom p {
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Habaynta Shaashadaha Yaryar (Moobaylka) */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column {
        border-bottom: 1px solid #111;
        padding-bottom: 15px;
    }

    .footer-column:last-child {
        border-bottom: none;
    }
}
