    * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0b0f14;
  color: #f5f7fa;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.wrap {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #0b0f14;
  border-bottom: 1px solid #26303a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.brand span {
  color: #ff765c;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #dce3ea;
  font-weight: 600;
}

.nav-links a:hover {
  color: #ff765c;
}

.menu {
  display: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

main {
  overflow: hidden;
}

.hero {
  padding: 40px 0 50px;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy .eyebrow {
  color: #ff765c;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin: 24px 0;
}

.hero h1 em {
  color: #ffffff;
}

.hero p {
  color: #b8c1ca;
  font-size: 1.2rem;
  max-width: 720px;
}

.hero-panel {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid #26303a;
  background: #10161d;
  border-radius: 18px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #ff765c;
  background: #ff765c;
  color: #0b0f14;
  font-weight: 800;
}

.btn:hover {
  opacity: 0.9;
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: #b8c1ca;
  font-size: 0.95rem;
}

.section {
  padding: 80px 0;
}

.eyebrow {
  color: #ff765c;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  margin: 10px 0;
}

.count {
  color: #8e9aa6;
}

.live {
  color: #ff765c;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid article {
  padding: 28px;
  border: 1px solid #26303a;
  background: #10161d;
  border-radius: 16px;
}

.grid article h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.grid article p {
  color: #aeb8c2;
}

.band {
  padding: 70px 0;
  background: #111820;
  border-top: 1px solid #26303a;
  border-bottom: 1px solid #26303a;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topics a {
  padding: 10px 16px;
  border: 1px solid #35414d;
  border-radius: 999px;
  color: #dce3ea;
}

.topics a:hover {
  border-color: #ff765c;
  color: #ff765c;
}

.about {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.muted {
  color: #aeb8c2;
}

.large {
  font-size: 1.3rem;
}

.text-link {
  color: #ff765c;
  font-weight: 700;
}

footer {
  border-top: 1px solid #26303a;
  padding: 40px 0;
  color: #8e9aa6;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .nav {
    min-height: 70px;
  }

  .menu {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: #0b0f14;
    border-bottom: 1px solid #26303a;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: 90%;
  }

  .brand {
    font-size: 1.35rem;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .grid article {
    padding: 20px;
  }
}
#stories img {
  width: 100%;
  max-width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@media (max-width: 600px) {
  #stories img {
    height: 240px;
  }
}
/* AUTHOR / ABOUT CARD */
.about-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: 20px;
}

.about-photo {
  width: 280px;
  height: 280px;
  overflow: hidden;
  border-radius: 18px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  min-width: 0;
}

.about-content .eyebrow {
  margin-bottom: 8px;
}

.about-content h2 {
  margin: 0 0 16px;
}

.about-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.about-content p {
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 700px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .about-photo {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 600px) {

  .site-header {
    padding: 18px 20px;
    min-height: 110px;
  }

  .site-header .brand {
    font-size: 1.8rem;
  }

  .site-header .menu {
    margin-top: 18px;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.05;
  }

  .hero p {
    font-size: 1.15rem;
    line-height: 1.6;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions a,
  .hero-actions button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .site-header {
    padding: 24px 20px;
    min-height: auto;
  }

  .brand {
    font-size: 1.5rem;
  }

  .menu {
    margin-top: 20px;
  }

  .hero {
    padding: 70px 20px 50px;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 3.2rem;
    line-height: 1;
  }

  .hero p {
    font-size: 1.15rem;
    line-height: 1.6;
  }
}
@media (max-width: 600px) {
  .site-header {
    padding: 20px 16px !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .hero {
    padding: 40px 20px 50px !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .hero h1 {
    font-size: 3rem !important;
    line-height: 1.05 !important;
    margin-top: 20px !important;
  }

  .hero p {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 600px) {
  .site-header {
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .nav {
    min-height: 76px !important;
  }

  .hero {
    padding: 20px 20px 50px !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .hero-copy {
    margin-top: 0 !important;
  }
}
.about-content h3:first-of-type {
  font-size: 2rem;
  font-weight: 800;
  color: #ff7058;
  margin-top: 30px;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
/* Politiviral About Section Headings */
.about-content h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ff7058;
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.ai-button {
  display: inline-block;
  margin: 25px auto;
  padding: 14px 24px;
  background: #ff7058;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.ai-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
