.product-news-section {
  --product-news-ink: #111820;
  --product-news-muted: #65707d;
  --product-news-line: rgba(17, 24, 32, 0.12);
  --product-news-accent: #087ca7;
  padding: 88px 40px 96px;
  color: var(--product-news-ink);
  background: #f4f6f8;
}

.product-news-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.product-news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.product-news-eyebrow {
  margin: 0 0 8px;
  color: var(--product-news-accent);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 760;
  text-transform: uppercase;
}

.product-news-title {
  margin: 0;
  color: var(--product-news-ink);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 780;
  letter-spacing: 0;
}

.product-news-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  color: #075f80;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 720;
  text-decoration: none;
}

.product-news-all:hover {
  color: #043d53;
}

.product-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.product-news-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--product-news-line);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(12, 20, 30, 0.06);
  overflow: hidden;
  animation: productNewsEnter 260ms ease both;
}

.product-news-card[hidden] {
  display: none !important;
}

.product-news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-news-card-media {
  position: relative;
  aspect-ratio: 40 / 17;
  overflow: hidden;
  background: #fff;
}

.product-news-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.product-news-card-link:hover .product-news-card-media img {
  opacity: 0.94;
}

.product-news-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  color: #fff;
  background: #087ca7;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 720;
}

.product-news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 248px;
  padding: 22px 22px 20px;
}

.product-news-card time {
  margin-bottom: 10px;
  color: var(--product-news-muted);
  font-size: 12px;
  line-height: 1.4;
}

.product-news-card h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--product-news-ink);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 740;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-news-card p {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: #56616e;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-news-card-more {
  margin-top: auto;
  color: #066d96;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 720;
}

.product-news-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-height: 42px;
  margin-top: 28px;
}

.product-news-controls[hidden] {
  display: none !important;
}

.product-news-control {
  display: inline-grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--product-news-ink);
  background: #fff;
  border: 1px solid var(--product-news-line);
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-size: 27px;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-news-control:hover:not(:disabled) {
  color: #fff;
  background: #111820;
  border-color: #111820;
}

.product-news-control:disabled {
  cursor: default;
  opacity: 0.34;
}

.product-news-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 52px;
}

.product-news-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  background: #b8c1c9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.product-news-dot[aria-current="true"] {
  width: 20px;
  background: #087ca7;
  border-radius: 4px;
}

@keyframes productNewsEnter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 640px) {
  .product-news-section {
    padding: 64px 20px 70px;
  }

  .product-news-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
  }

  .product-news-title {
    font-size: 28px;
  }

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

  .product-news-card-body {
    min-height: 224px;
  }

  .product-news-controls {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-news-card {
    animation: none;
  }

  .product-news-card-media img {
    transition: none;
  }
}
