.p-news-article {
  position: relative;
  width: 100%;
  padding: 48px 52px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-color: var(--color-bg-elevated);
  box-shadow: 0 40px 80px -48px rgba(47, 150, 224, 0.35);
  overflow: hidden;
}

.p-news-article::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 199, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 199, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 60% 90% at 100% 0%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 90% at 100% 0%, black 0%, transparent 70%);
  pointer-events: none;
}

.p-news-article::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-brand-green), transparent);
  opacity: 0.6;
}

.p-news-article__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 0 solid rgba(108, 199, 255, 0.4);
  pointer-events: none;
}

.p-news-article__corner--tl {
  top: 18px;
  left: 18px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.p-news-article__corner--br {
  bottom: 18px;
  right: 18px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.p-news-article__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-family-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.p-news-article__meta-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-brand-green);
  box-shadow: 0 0 8px 1px var(--color-brand-green);
  animation: p-news-article-pulse 1.8s ease-in-out infinite;
}

@keyframes p-news-article-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.p-news-article__body {
  position: relative;
  font-size: 1rem;
  line-height: 2;
}

.p-news-article__body p {
  margin-bottom: 1.6em;
}

.p-news-article__body p:last-child {
  margin-bottom: 0;
}

.p-news-article__body h2,
.p-news-article__body h3,
.p-news-article__body h4,
.p-news-article__body h5,
.p-news-article__body h6 {
  margin: 1.8em 0 0.9em;
  color: var(--color-text);
}

.p-news-article__body h2 {
  font-size: 1.4rem;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-border);
}

.p-news-article__body h3 {
  font-size: 1.2rem;
}

.p-news-article__body h4,
.p-news-article__body h5,
.p-news-article__body h6 {
  font-size: 1.05rem;
}

.p-news-article__body a {
  color: var(--color-accent-bright);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (any-hover: hover) {
  .p-news-article__body a:hover {
    text-decoration: none;
  }
}

.p-news-article__body ul,
.p-news-article__body ol {
  margin: 0 0 1.6em;
  padding-left: 1.4em;
}

.p-news-article__body ul {
  list-style: disc;
}

.p-news-article__body ol {
  list-style: decimal;
}

.p-news-article__body li {
  margin-bottom: 0.4em;
}

.p-news-article__body blockquote {
  margin: 0 0 1.6em;
  padding: 0.2em 1.2em;
  border-left: 3px solid var(--color-accent);
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .p-news-article__meta-dot {
    animation: none;
  }
}

@media (max-width: 640px) {
  .p-news-article {
    padding: 32px 24px;
  }

  .p-news-article__corner {
    display: none;
  }
}