:root {
  --news-purple: #6d28d9;
  --news-violet: #8b5cf6;
  --news-pink: #ec4899;
  --news-gold: #f59e0b;
  --news-ink: #261442;
  --news-muted: #6b6475;
}

.sy-news-page {
  min-height: 70vh;
  padding: 34px 14px 58px;
  background:
    radial-gradient(circle at 10% 0%, rgba(124, 58, 237, 0.13), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.09), transparent 28%),
    linear-gradient(180deg, #f4f0fb 0%, #fbfaff 48%, #f2eef9 100%);
}

.sy-news-wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.sy-news-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(124, 58, 237, 0.13);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(251, 191, 36, 0.25), transparent 28%),
    radial-gradient(circle at 15% 100%, rgba(236, 72, 153, 0.24), transparent 34%),
    linear-gradient(135deg, #32125f 0%, #5b21b6 46%, #8b2fc9 100%);
  box-shadow: 0 22px 48px rgba(76, 29, 149, 0.18);
}

.sy-news-hero::after {
  content: "SY";
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  top: 50%;
  transform: translateY(-52%);
  font-size: clamp(7rem, 18vw, 13rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.sy-news-hero__eyebrow,
.sy-news-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sy-news-hero__eyebrow {
  color: #fff5c7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.sy-news-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  word-break: normal;
  overflow-wrap: anywhere;
  text-shadow: 0 3px 16px rgba(35, 8, 73, 0.32);
}

.sy-news-hero h1 span {
  color: #ffd65c;
}

.sy-news-hero__lead {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.sy-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.sy-news-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 22px;
  color: var(--news-ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(76, 29, 149, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sy-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(76, 29, 149, 0.15);
}

.sy-news-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #2e1065;
}

.sy-news-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(30, 10, 60, 0.55));
}

.sy-news-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sy-news-card:hover .sy-news-card__media img {
  transform: scale(1.04);
}

.sy-news-card__category {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff9db, #ffd65c);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sy-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.sy-news-card__meta,
.sy-news-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 12px;
  color: #83798e;
  font-size: 12px;
}

.sy-news-card__meta span + span::before,
.sy-news-article__meta span + span::before {
  content: "•";
  margin-right: 12px;
  color: #c4b5fd;
}

.sy-news-card h2,
.sy-news-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.35;
  color: #4c1d95;
  word-break: normal;
  overflow-wrap: anywhere;
}

.sy-news-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--news-muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sy-news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--news-purple);
  font-size: 14px;
  font-weight: 700;
}

.sy-news-card__more::after {
  content: "→";
  transition: transform 0.2s ease;
}

.sy-news-card:hover .sy-news-card__more::after {
  transform: translateX(4px);
}

.sy-news-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--news-purple);
  font-weight: 700;
  text-decoration: none;
}

.sy-news-article {
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(76, 29, 149, 0.11);
}

.sy-news-article__hero {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 290px;
  overflow: hidden;
  background: #2e1065;
}

.sy-news-article__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 5, 45, 0.72) 0%, rgba(20, 5, 45, 0.32) 62%, rgba(20, 5, 45, 0.12) 100%),
    linear-gradient(180deg, rgba(20, 5, 45, 0.04) 20%, rgba(20, 5, 45, 0.92) 100%);
}

.sy-news-article__hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sy-news-article__heading {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 5vw, 58px);
  right: clamp(20px, 5vw, 58px);
  bottom: clamp(22px, 4vw, 48px);
  color: #fff;
}

.sy-news-article__heading .sy-news-card__category {
  position: static;
  display: inline-flex;
  margin-bottom: 12px;
}

.sy-news-article__heading h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  word-break: normal;
  overflow-wrap: anywhere;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.78),
    0 1px 2px rgba(0, 0, 0, 0.9);
}

.sy-news-article__meta {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.sy-news-article__content {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0;
  color: #40384a;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.85;
}

.sy-news-article__content h2 {
  margin: 34px 0 12px;
  color: #4c1d95;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.35;
}

.sy-news-article__content p {
  margin: 0 0 16px;
}

.sy-news-article__content ul,
.sy-news-article__content ol {
  margin: 8px 0 20px;
  padding-left: 24px;
}

.sy-news-article__content li {
  margin: 7px 0;
}

.news-lead {
  color: #3f2763;
  font-size: 1.12em;
  font-weight: 500;
}

.news-callout {
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-left: 5px solid var(--news-gold);
  border-radius: 14px;
  color: #4a2e0a;
  background: linear-gradient(135deg, #fffbea, #fff7d1);
}

.news-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 10px;
}

.news-fact-grid div {
  padding: 14px 10px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  text-align: center;
  background: #faf8ff;
}

.news-fact-grid span,
.news-fact-grid strong {
  display: block;
}

.news-fact-grid span {
  color: #84788f;
  font-size: 12px;
}

.news-fact-grid strong {
  margin-top: 3px;
  color: #5b21b6;
}

.news-caption {
  color: #8b8193;
  font-size: 12px;
}

.sy-news-related {
  margin-top: 26px;
}

.sy-news-related h2 {
  margin: 0 0 14px;
  color: var(--news-ink);
}

@media (max-width: 900px) {
  .sy-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sy-news-page {
    padding: 20px 10px 42px;
  }

  .sy-news-hero,
  .sy-news-article {
    border-radius: 20px;
  }

  .sy-news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sy-news-article__hero {
    aspect-ratio: 4 / 5;
    min-height: 420px;
  }

  .sy-news-article__heading {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }
}
