/* AR Studios News — design system
   1 Variables  2 Reset  3 Type  4 Layout  5 Header  6 Nav  7 Ticker
   8 Hero  9 Cards  10 Sections  11 Article  12 Ads  13 Footer
   14 A11y  15 Responsive  16 Utilities
*/

/* 1. Variables */
:root {
  --news-primary: #7a1f2b;
  --news-secondary: #15202b;
  --news-accent: #b0893e;
  --news-text: #1c1c1c;
  --news-muted: #5c6570;
  --news-background: #f6f3ee;
  --news-surface: #fffdf8;
  --news-border: #e2dcd1;
  --news-radius: 2px;
  --news-shadow: 0 10px 30px rgba(21, 32, 43, 0.08);
  --news-container: 1240px;
  --news-gap: 1.25rem;
  --news-header-height: 3.25rem;
  --news-header: #ffffff;
  --news-footer: #121820;
  --news-breaking: #7a1f2b;
  --news-font: "Noto Sans Telugu", "Nirmala UI", "Gautami", "Noto Sans", "Segoe UI", system-ui, sans-serif;
  --news-measure: 42rem;
}

/* 2. Reset / base */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--news-font);
  color: var(--news-text);
  background: var(--news-background);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overflow-wrap: anywhere;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
img { object-fit: cover; }
a { color: inherit; }
a:hover { color: var(--news-primary); }
h1, h2, h3, h4 { line-height: 1.25; letter-spacing: -0.01em; font-weight: 700; margin: 0 0 0.4em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
button, input, select { font: inherit; }

/* 3. Typography */
.ars-article__title,
.ars-hero-slide__title,
.ars-archive__title {
  font-weight: 700;
}

.ars-article__body {
  font-size: 1.0625rem;
  line-height: 1.85;
  max-width: var(--news-measure);
}

.ars-article__body p { margin-bottom: 1.15em; }

/* 4. Layout */
.ars-wrap {
  width: min(100% - 1.5rem, var(--news-container));
  margin-inline: auto;
}

.ars-main { min-height: 50vh; padding-bottom: 2.5rem; }

.ars-home-columns {
  display: grid;
  gap: var(--news-gap);
  margin-top: 1.5rem;
}

.ars-home-columns__side:empty { display: none; }

/* 5. Header */
.ars-site-header {
  background: var(--news-header);
  border-bottom: 1px solid var(--news-border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.ars-header-compact .ars-tagline { display: none !important; }
.ars-header-compact .ars-masthead__inner { min-height: 52px; }
.ars-header-compact .ars-logo img { max-height: 36px; }

.ars-site-header.is-sticky {
  box-shadow: 0 6px 18px rgba(21, 32, 43, 0.08);
}

.ars-utility {
  display: none;
  background: var(--news-secondary);
  color: #f4f1ea;
  font-size: 0.75rem;
}

.ars-utility a { color: inherit; }
.ars-utility__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 2rem;
}

.ars-utility__right,
.ars-utility__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ars-masthead__inner {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 56px;
  gap: 0.5rem;
}

.ars-masthead__brand { text-align: center; }
.ars-logo { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.ars-logo img { max-height: 42px; width: auto; }
.ars-logo__mobile { display: none; }
.ars-logo__desktop { display: block; }
.ars-logo__text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--news-secondary);
}

@media (max-width: 1023px) {
  .ars-logo:has(.ars-logo__mobile) .ars-logo__desktop { display: none; }
  .ars-logo__mobile { display: block; }
}
.ars-tagline { display: none; margin: 0; color: var(--news-muted); font-size: 0.8rem; }

.ars-masthead__tools {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
}

.ars-masthead__tools .ars-btn { display: none; }

.ars-icon-btn {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--news-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ars-icon-btn:focus-visible,
.ars-btn:focus-visible,
.ars-menu a:focus-visible,
.ars-slider-btn:focus-visible {
  outline: 2px solid var(--news-accent);
  outline-offset: 2px;
}

.ars-menu-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.ars-menu-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.ars-menu-toggle[aria-expanded="true"] .ars-menu-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ars-menu-toggle[aria-expanded="true"] .ars-menu-toggle__bars span:nth-child(2) { opacity: 0; }
.ars-menu-toggle[aria-expanded="true"] .ars-menu-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ars-btn,
.ars-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 0.9rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  background: var(--news-secondary);
  color: #fff;
}
.ars-btn:hover,
.ars-chip:hover { color: #fff; filter: brightness(1.08); }
.ars-btn--live,
.ars-chip--live { background: var(--news-primary); }
.ars-btn--epaper,
.ars-chip--epaper { background: var(--news-accent); color: #1c1408; }
.ars-btn--ghost {
  background: transparent;
  color: var(--news-secondary);
  border: 1px solid var(--news-border);
}
.ars-btn--ghost:hover { color: var(--news-secondary); filter: none; background: rgba(21, 32, 43, 0.06); }
.ars-chip { min-height: 1.6rem; padding: 0 0.55rem; font-size: 0.68rem; }

.ars-mobile-ctas {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 0.75rem;
}
.ars-mobile-ctas .ars-btn { flex: 1; }

/* 6. Navigation */
.ars-nav { display: none; border-top: 1px solid var(--news-border); }
.ars-menu { list-style: none; display: flex; gap: 0.15rem; flex-wrap: wrap; }
.ars-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.85rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--news-secondary);
  border-bottom: 2px solid transparent;
}
.ars-menu a:hover,
.ars-menu .current-menu-item > a,
.ars-menu .current-category-ancestor > a,
.ars-menu [aria-current="page"] {
  color: var(--news-primary);
  border-bottom-color: var(--news-primary);
}
.ars-menu .sub-menu {
  list-style: none;
  position: absolute;
  background: var(--news-surface);
  border: 1px solid var(--news-border);
  min-width: 12rem;
  padding: 0.35rem 0;
  display: none;
  z-index: 20;
}
.ars-menu li { position: relative; }
.ars-menu li:hover > .sub-menu,
.ars-menu li:focus-within > .sub-menu { display: block; }

.ars-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 32, 0.45);
  z-index: 80;
}
.ars-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88vw, 22rem);
  background: var(--news-surface);
  z-index: 90;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  overflow: auto;
  padding: 0.75rem 0 1.5rem;
}
.ars-drawer.is-open { transform: translateX(0); }
.ars-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem 0.5rem 1rem;
  font-weight: 700;
}
.ars-menu--mobile { flex-direction: column; }
.ars-menu--mobile .sub-menu { position: static; display: block; border: 0; padding-left: 0.75rem; }
.ars-nav-open,
.ars-search-open { overflow: hidden; }

.ars-drawer[hidden],
.ars-drawer-backdrop[hidden],
.ars-search-overlay[hidden] {
  display: none !important;
}

.ars-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 32, 0.72);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.ars-search-overlay__panel {
  width: min(100%, 36rem);
  background: var(--news-surface);
  padding: 1.25rem;
  position: relative;
}
.ars-search-form { display: flex; gap: 0.4rem; }
.ars-search-form__input,
.ars-search-form input[type="search"] {
  flex: 1;
  min-height: 48px;
  border: 1px solid var(--news-border);
  padding: 0 0.85rem;
  background: #fff;
}
.ars-search-close { position: absolute; top: 0.3rem; right: 0.3rem; }

/* 7. Ticker */
.ars-ticker {
  background: var(--news-breaking);
  color: #fff;
}
.ars-ticker__inner { display: flex; align-items: stretch; min-height: 2.4rem; padding-inline: 0; width: 100%; max-width: none; gap: 0; }
.ars-ticker .ars-wrap { display: flex; width: 100%; max-width: none; padding: 0; }
.ars-ticker__label {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  z-index: 1;
}
.ars-ticker__viewport {
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
  padding-inline-start: 0.85rem;
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 12px), transparent);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 12px), transparent);
}
.ars-ticker__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  animation: ars-ticker 32s linear infinite;
  width: max-content;
  padding: 0.55rem 1.25rem 0.55rem 0;
  margin: 0;
}
.ars-ticker__list li { flex: 0 0 auto; white-space: nowrap; }
.ars-ticker__list a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.ars-ticker:hover .ars-ticker__list,
.ars-ticker:focus-within .ars-ticker__list { animation-play-state: paused; }

@keyframes ars-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ars-ticker__list { animation: none; }
  html { scroll-behavior: auto; }
}

/* 8. Hero */
.ars-hero-band { padding-top: 1rem; }
.ars-hero-grid { display: grid; gap: 1rem; }
.ars-hero-slider { position: relative; background: var(--news-secondary); color: #fff; overflow: hidden; }
.ars-hero-slide { position: relative; }
.ars-hero-slide[hidden] { display: none !important; }
.ars-hero-slide__link { display: block; color: inherit; text-decoration: none; }
.ars-hero-slide__link:hover { color: inherit; }
.ars-hero-slide__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--news-secondary);
}
.ars-hero-slide__img,
.ars-hero-slide__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.ars-hero-slide__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.75rem 1rem 1.15rem;
  background: linear-gradient(transparent, rgba(8, 12, 18, 0.92));
}
.ars-hero-slide__copy .ars-kicker { color: var(--news-accent); }
.ars-hero-slide__title {
  font-size: 1.28rem;
  color: #fff;
  margin: 0.3rem 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ars-hero-slider .ars-date { color: #d7d2c8; font-size: 0.8rem; }
.ars-hero-slider__controls {
  position: absolute;
  inset: 42% 0.4rem auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.ars-slider-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}
.ars-hero-slider__dots {
  position: absolute;
  left: 0.85rem;
  bottom: 0.45rem;
  z-index: 2;
  display: flex;
  gap: 0.35rem;
  padding: 0;
}
.ars-hero-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}
.ars-hero-dot.is-active { width: 1.4rem; background: var(--news-accent); }

.ars-secondary {
  background: var(--news-surface);
  border-top: 3px solid var(--news-primary);
  padding: 0.85rem 1rem 0.4rem;
  display: flex;
  flex-direction: column;
}
.ars-secondary .ars-story { flex: 1; }
.ars-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--news-primary);
  margin: 0 0 0.65rem;
}

/* 9. Cards / stories */
.ars-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--news-primary);
  text-decoration: none;
  margin-bottom: 0.2rem;
}
.ars-story { padding: 0.7rem 0; border-bottom: 1px solid var(--news-border); }
.ars-story--row { display: grid; grid-template-columns: 96px 1fr; gap: 0.75rem; align-items: start; }
.ars-story__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}
.ars-story__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.ars-story__title {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ars-story__title a { text-decoration: none; }
.ars-story__title--lg { font-size: 1.28rem; -webkit-line-clamp: 4; }
.ars-story__excerpt { color: var(--news-muted); font-size: 0.92rem; margin: 0.35rem 0; }
.ars-date { color: var(--news-muted); font-size: 0.78rem; }
.ars-story--image { border: 0; padding: 0; }
.ars-story__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d9d3c8;
  margin-bottom: 0.55rem;
}
.ars-story__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.ars-story--feature { border: 0; padding: 0; }

.ars-list .ars-story:last-child { border-bottom: 0; }

/* 10. Category / homepage sections */
.ars-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 2px solid var(--news-secondary);
  margin: 1.5rem 0 0.85rem;
  padding-bottom: 0.35rem;
}
.ars-section-title { font-size: 1.2rem; margin: 0; }
.ars-section-title a { text-decoration: none; }
.ars-more { font-size: 0.8rem; font-weight: 700; text-decoration: none; color: var(--news-primary); }

.ars-trending__list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.ars-trending__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--news-border);
}
.ars-trending__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--news-accent);
  line-height: 1;
}

.ars-latest__grid,
.ars-archive__grid {
  display: grid;
  gap: 1.1rem;
}
.ars-archive__grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16.5rem), 1fr));
  justify-content: start;
}
.ars-cat-block__split { display: grid; gap: 1rem; }

.ars-video__grid { display: grid; gap: 1rem; }
.ars-video-card__play {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.ars-video-card__play img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.ars-video-card__icon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--news-primary);
  color: #fff;
  display: grid;
  place-items: center;
}
.ars-video-embed { aspect-ratio: 16 / 9; }
.ars-video-embed iframe { width: 100%; height: 100%; border: 0; }

.ars-epaper {
  margin: 1.5rem 0;
  background: var(--news-secondary);
  color: #f4f1ea;
  padding: 1.25rem;
}
.ars-epaper__inner { display: flex; flex-direction: column; gap: 0.85rem; }
.ars-epaper__kicker { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; color: var(--news-accent); margin: 0; }
.ars-epaper h2 { color: #fff; }

/* 11. Article */
.ars-article-layout { padding-top: 1.25rem; }
.ars-article__title { font-size: clamp(1.6rem, 4vw, 2.5rem); }
.ars-article__dek { font-size: 1.1rem; color: var(--news-muted); }
.ars-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  color: var(--news-muted);
  font-size: 0.88rem;
  margin: 0.75rem 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--news-border);
}
.ars-article__figure { margin: 0 0 1.25rem; }
.ars-article__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.ars-article__figure figcaption { color: var(--news-muted); font-size: 0.82rem; margin-top: 0.4rem; }
.ars-share { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.ars-share__label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.ars-share__btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--news-secondary);
  color: #fff;
  text-decoration: none;
}
.ars-share__btn:hover { color: #fff; background: var(--news-primary); }
.ars-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; }
.ars-tags a {
  text-decoration: none;
  border: 1px solid var(--news-border);
  padding: 0.25rem 0.55rem;
  font-size: 0.8rem;
}
.ars-post-nav {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--news-border);
}
.ars-post-nav a { text-decoration: none; font-weight: 700; }
.ars-breadcrumbs { font-size: 0.82rem; color: var(--news-muted); margin-bottom: 0.75rem; }
.ars-breadcrumbs a { text-decoration: none; }
.ars-archive { padding-top: 0.85rem; }
.ars-archive__head { margin-bottom: 0.75rem; }
.ars-archive__title { font-size: clamp(1.25rem, 2.4vw, 1.75rem); margin: 0; }
.ars-empty {
  max-width: 36rem;
  padding: 0.35rem 0 2rem;
}
.ars-empty__lead {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.ars-empty__hint {
  margin: 0 0 1rem;
  color: var(--news-muted);
}
.ars-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ars-404, .ars-page { padding-top: 1.5rem; }
.ars-pagination { margin: 1.5rem 0; }
.ars-pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 0.15rem;
  text-decoration: none;
  border: 1px solid var(--news-border);
}
.ars-pagination .current { background: var(--news-primary); color: #fff; border-color: var(--news-primary); }

/* 12. Ads */
.ars-ad {
  margin: 1rem 0;
  padding: 0.55rem 0.5rem;
  background: #f3efe8;
  min-height: 90px;
  display: grid;
  place-items: center;
  border: 1px solid var(--news-border);
}
.ars-ad__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8378;
  margin-bottom: 0.35rem;
}
.ars-ad__inner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-height: 50px;
}
.ars-ad__inner ins,
.ars-ad__inner iframe {
  max-width: 100%;
}
.ars-ad--sidebar { min-height: 250px; }
.ars-ad--article-top,
.ars-ad--article-bottom,
.ars-ad--article-middle { min-height: 100px; }
.ars-ad--header,
.ars-ad--homepage-top { min-height: 90px; }
.ars-ad--mobile-only { display: grid; }
.ars-ad--desktop-only { display: none; }

/* 13. Footer */
.ars-footer {
  background: var(--news-footer);
  color: #d8d3ca;
  margin-top: 2rem;
  padding: 2rem 0 0;
}
.ars-footer a { color: #f4f1ea; text-decoration: none; }
.ars-footer a:hover { color: var(--news-accent); }
.ars-footer__grid { display: grid; gap: 1.5rem; padding-bottom: 1.5rem; }
.ars-footer__title { color: #fff; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 0.4rem; }
.ars-footer__links { list-style: none; }
.ars-footer__links li { margin: 0.4rem 0; }
.ars-footer__contact { list-style: none; }
.ars-footer__contact li { margin: 0.45rem 0; }
.ars-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0 1.25rem;
  font-size: 0.82rem;
  text-align: center;
}
.ars-footer__legal-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.ars-social { display: flex; gap: 0.35rem; }
.ars-social__link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: inherit;
}
.ars-social--header .ars-social__link { width: 28px; height: 28px; background: rgba(255,255,255,0.12); }

/* 14. Accessibility */
.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
  z-index: 200;
  background: #fff;
  padding: 0.6rem 0.9rem;
  color: var(--news-secondary);
}

/* 15. Responsive */
@media (max-width: 359px) {
  .ars-story--row { grid-template-columns: 76px 1fr; }
  .ars-hero-slide__title { font-size: 1.15rem; }
}

@media (max-width: 1023px) {
  .ars-site-header { position: static; }
  .ars-masthead {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--news-header);
    border-bottom: 1px solid var(--news-border);
  }
  .ars-site-header.is-sticky .ars-masthead {
    box-shadow: var(--news-shadow);
  }
  .ars-logo__text { font-size: 1.05rem; line-height: 1.2; }
  .ars-ticker__label { font-size: 0.62rem; padding: 0 0.55rem; }
}

@media (min-width: 768px) {
  .ars-logo img { max-height: 52px; }
  .ars-hero-slide__title { font-size: 1.55rem; }
  .ars-latest__grid,
  .ars-video__grid { grid-template-columns: repeat(2, 1fr); }
  .ars-trending__list { grid-template-columns: 1fr 1fr; }
  .ars-footer__grid { grid-template-columns: 1fr 1fr; }
  .ars-article-layout:has(.ars-article-layout__side) { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 1.5rem; align-items: start; }
  .ars-more-news { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (min-width: 1024px) {
  .ars-utility { display: block; }
  .ars-menu-toggle { display: none; }
  .ars-nav { display: block; }
  .ars-mobile-ctas { display: none; }
  .ars-masthead__inner { grid-template-columns: auto 1fr auto; min-height: 72px; }
  .ars-masthead__tools .ars-btn { display: inline-flex; min-height: 40px; }
  .ars-masthead__brand { text-align: left; }
  .ars-logo__desktop { display: block; }
  .ars-logo__mobile { display: none; }
  .ars-tagline { display: block; }
  .ars-hero-grid { grid-template-columns: 7.2fr 4.8fr; align-items: stretch; }
  .ars-hero-slide__title { font-size: 1.7rem; }
  .ars-home-columns:has(.ars-home-columns__side) { grid-template-columns: minmax(0, 1fr) 300px; }
  .ars-cat-block__split { grid-template-columns: 1.15fr 0.85fr; }
  .ars-latest__grid { grid-template-columns: repeat(4, 1fr); }
  .ars-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
  .ars-ad--mobile-only { display: none; }
  .ars-ad--desktop-only { display: grid; }
  .ars-epaper__inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1280px) {
  .ars-hero-slide__title { font-size: 2.05rem; }
}

@media (min-width: 1440px) {
  body { font-size: 1.02rem; }
}

@media (min-width: 1600px) {
  :root { --news-gap: 1.5rem; }
}

/* 16. Utilities */
.ars-widget { margin-bottom: 1.25rem; }
.ars-widget-title { font-size: 1rem; border-bottom: 2px solid var(--news-primary); padding-bottom: 0.3rem; }
