:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --text: #1a2332;
  --muted: #5c6b7f;
  --border: #e2e8f0;
  --accent: #c00101;
  --accent-soft: #fce8e8;
  --shadow: 0 12px 40px rgba(192, 1, 1, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  --transition: 0.22s ease;
}

[data-theme="dark"] {
  --bg: #0f1419;
  --surface: #171d26;
  --text: #eef2f7;
  --muted: #a7b4c5;
  --border: #273244;
  --accent: #ff5c5c;
  --accent-soft: #301818;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  transition: background-color var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1180px, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.brand-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weather-widget {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.25;
  min-width: 0;
  max-width: min(220px, 42vw);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.weather-widget:hover {
  box-shadow: var(--shadow);
}

.weather-widget-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.weather-widget--loading .weather-widget-desc {
  color: var(--muted);
  font-size: 0.8rem;
}

.weather-widget-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.weather-widget-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.weather-widget-temp {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.weather-widget-desc {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.weather-widget-place {
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.1rem;
}

.site-nav {
  width: 100%;
  order: 3;
}

@media (min-width: 960px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .site-nav {
    width: auto;
    order: 0;
    flex: 1;
    display: flex;
    justify-content: center;
  }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  justify-content: center;
}

.site-nav a {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
  text-decoration: none;
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--surface);
  background: var(--accent);
}

.page-stack {
  padding: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.layout-main {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 3rem;
}

@media (min-width: 1024px) {
  .layout-main {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.page-head {
  margin-bottom: 1.25rem;
}

.page-head h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  letter-spacing: -0.02em;
}

.page-head p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.featured-magazine {
  margin-bottom: 2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--surface);
}

.featured-magazine--full {
  width: min(1180px, 100% - 2rem);
  margin-inline: auto;
  margin-bottom: 2rem;
}

.ad-banner {
  margin: -0.5rem auto 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ad-banner__label {
  margin: 0;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ad-banner__slot {
  margin: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px dashed color-mix(in srgb, var(--muted) 45%, var(--border));
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}

[data-theme="dark"] .ad-banner__slot {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.ad-banner__img {
  width: 100%;
  height: auto;
  display: block;
}

.ticker-bar {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.ticker-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: #c00101;
  color: #fff;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
}

.ticker-track {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
}

.ticker-text {
  margin: 0;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-text a {
  color: inherit;
  text-decoration: none;
}

.ticker-text a:hover {
  color: var(--accent);
  text-decoration: none;
}

.ticker-nav {
  display: flex;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
}

.ticker-nav button {
  width: 2.65rem;
  border: none;
  margin: 0;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}

.ticker-nav button:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.ticker-nav button + button {
  border-left: 1px solid var(--border);
}

.magazine-grid {
  display: grid;
  gap: 2px;
  background: color-mix(in srgb, var(--border) 85%, var(--surface));
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(200px, auto);
}

@media (min-width: 768px) {
  .magazine-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: minmax(280px, 36vw) minmax(170px, 22vw);
  }

  .magazine-grid > .mag-cell:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .magazine-grid > .mag-cell:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;
  }

  .magazine-grid > .mag-cell:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
  }

  .magazine-grid > .mag-cell:nth-child(4) {
    grid-column: 4;
    grid-row: 2;
  }
}

.mag-cell {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 200px;
  color: #fff;
  text-decoration: none;
}

.mag-cell:hover {
  color: #fff;
  text-decoration: none;
}

.mag-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.mag-cell:hover img {
  transform: scale(1.06);
}

.mag-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.35) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}

.mag-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: #c00101;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.55rem;
  line-height: 1;
}

.mag-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.85rem 1rem 1rem;
}

.mag-title {
  display: block;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.mag-cell--lead .mag-title {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
}

.mag-cell--top .mag-title {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.mag-cell--sm .mag-title {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
}

.mag-meta {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  align-self: flex-start;
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(192, 1, 1, 0.25);
}

[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.news-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.card-body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.card-body time {
  font-size: 0.8rem;
  color: var(--muted);
}

.card-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--accent);
}

.card-excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.card-link {
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.widget h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widget li a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  display: block;
  line-height: 1.35;
}

.widget li a:hover {
  color: var(--accent);
}

.widget li span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.widget.widget-social .social-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

.widget.widget-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: var(--muted);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.widget.widget-social .social-link:hover {
  color: #fff;
  background: #c00101;
  border-color: #c00101;
  transform: translateY(-1px);
  text-decoration: none;
}

.widget.widget-social .social-link svg {
  width: 1rem;
  height: 1rem;
}

.widget.widget-ultimas {
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.widget.widget-ultimas h2 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget.widget-ultimas h2::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  flex-shrink: 0;
}

.widget .ultimas-list {
  gap: 0.7rem;
}

.ultimas-item--lead {
  padding: 1rem 1.05rem;
  margin-bottom: 0.15rem;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.ultimas-item--lead a {
  font-size: 1.02rem;
  line-height: 1.35;
}

.ultimas-item--lead span {
  font-weight: 600;
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  margin: 0;
  max-width: 42ch;
}

.social-nav {
  flex-shrink: 0;
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .social-list {
    justify-content: flex-end;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--muted);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.social-link:hover {
  color: #fff;
  background: #c00101;
  border-color: #c00101;
  transform: translateY(-2px);
  text-decoration: none;
}

.social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

[data-theme="dark"] .social-link:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.empty-state {
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

.article-layout__primary {
  min-width: 0;
}

@media (min-width: 1024px) {
  .layout-main.article-layout--solo {
    grid-template-columns: 1fr;
  }

  .sidebar--article {
    position: sticky;
    top: 5.75rem;
    align-self: start;
  }
}

.article-share {
  padding: 1rem 1.5rem 0.65rem;
  margin: 0;
  border-top: 1px solid var(--border);
}

.article-share-label {
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-share .share-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.share-list--inline > li {
  flex: 1 1 calc(50% - 0.2rem);
  min-width: min(100%, 6.75rem);
}

@media (min-width: 560px) {
  .share-list--inline > li {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.share-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    transform var(--transition);
  box-sizing: border-box;
}

.article-share .share-row,
.article-share .share-row.share-row--btn {
  gap: 0.32rem;
  padding: 0.28rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 8px;
}

.share-row:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
}

.share-row--btn:hover {
  color: var(--accent);
}

.share-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.share-row-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.article-share .share-row-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.article-share .share-row-icon svg {
  width: 0.82rem;
  height: 0.82rem;
}

.share-row-icon--linkedin {
  width: 1.35rem;
  height: 1.35rem;
  background: #0a66c2;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-family: system-ui, sans-serif;
  border-radius: 3px;
  line-height: 1;
}

.share-row-icon--whatsapp {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

.share-row-icon--telegram {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #229ed9;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

.article-share .share-row-icon--linkedin,
.article-share .share-row-icon--whatsapp,
.article-share .share-row-icon--telegram {
  width: 1.02rem;
  height: 1.02rem;
  font-size: 0.46rem;
}

.share-row-label {
  flex: 1;
  min-width: 0;
}

.share-toast {
  margin: 0.65rem 0 0;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.article-share .share-toast {
  margin-top: 0.45rem;
  font-size: 0.72rem;
}

.share-toast[hidden] {
  display: none !important;
}

.article-share .share-list a.share-row {
  display: flex;
  align-items: center;
  line-height: 1.25;
  color: var(--text);
}

.article-share .share-list a.share-row:hover {
  color: var(--accent);
}

.article-breadcrumb {
  padding: 1rem 1.5rem 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.article-breadcrumb a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.article-breadcrumb a:hover {
  color: var(--accent);
  text-decoration: none;
}

.article-breadcrumb-sep {
  margin: 0 0.2rem;
  opacity: 0.55;
}

.article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-header {
  padding: 1.5rem 1.5rem 0;
}

.article-meta {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.article-cover img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.article-body {
  padding: 1.5rem;
  font-size: 1.05rem;
}

.rich-text p {
  margin: 0 0 1rem;
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem 1.5rem;
}

.article-missing {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.section-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.related {
  margin-top: 2rem;
}

.related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.card.compact .card-excerpt {
  display: none;
}

.card.compact .card-title {
  font-size: 0.98rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
