:root {
  --news-bg: #d9dde5;
  --paper: #fbf8f1;
  --paper-line: #d6cdbf;
  --ink: #1d2b3b;
  --muted: #5b6675;
  --accent: #0d315e;
  --border: #c9bfad;
  --shadow: 0 22px 50px rgba(18, 27, 41, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
  background: var(--news-bg);
  background: url("../imagenes/patron.webp");
  overflow-x: hidden;
}

.news-layout {
  margin: 132px auto 2rem;
  padding: 0 0.75rem;
  max-width: 1760px;
}

.news-options {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}

.news-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  border-radius: 999px;
  padding: 0.56rem 1.1rem;
  text-decoration: none;
  border: 1px solid #21466f;
  color: #21466f;
  background: #f2f6fb;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 180ms ease;
}

.news-option:hover {
  transform: translateY(-1px);
  background: #e8eff9;
}

.news-option.is-active {
  color: #fff;
  background: #21466f;
}

.news-option.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.news-paper {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.012) 0,
      rgba(0, 0, 0, 0.012) 1px,
      transparent 1px,
      transparent 26px
    ),
    var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1rem 1rem 1.35rem;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
}

.news-paper__head {
  border-top: 4px solid var(--ink);
  border-bottom: 3px double var(--ink);
  padding: 0.7rem 0 0.9rem;
  margin-bottom: 1rem;
}

.news-paper__kicker {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: #314356;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.news-paper__name {
  margin: 0;
  text-align: center;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 6vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: #113a68;
}

.news-paper__meta {
  margin-top: 0.5rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(18, 44, 76, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  justify-content: center;
  font-size: 0.78rem;
  color: #4c5a69;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.news-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 0.95rem;
}

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

.news-collage__main,
.news-collage__side {
  min-width: 0;
}

.news-collage__side {
  display: grid;
  gap: 0.8rem;
  grid-template-rows: none;
  grid-auto-rows: auto;
  align-content: stretch;
  align-self: stretch;
}

.news-collage .news-lead {
  margin-bottom: 0;
}

.news-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: start;
}

.news-lead__right {
  min-width: 0;
  display: grid;
  gap: 0.78rem;
  align-content: start;
}

.news-lead__left {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--paper-line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  position: relative;
}

.news-lead__headline {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.52rem;
  font-family: "Source Serif 4", Georgia, serif;
  color: #101a26;
  font-size: clamp(1.25rem, 3.3vw, 2.55rem);
  line-height: 1.07;
}

.news-lead__headline-text {
  min-width: 0;
}

.news-lead__deck {
  margin: 0.65rem 0 0.9rem;
  color: #425160;
  font-size: 1rem;
  line-height: 1.45;
  font-style: italic;
}

.news-lead__body p {
  margin: 0 0 0.85rem;
  line-height: 1.64;
  color: #1f2e40;
  font-size: 1.01rem;
  text-align: justify;
  text-wrap: pretty;
}

.news-lead__body p:first-child::first-letter {
  float: left;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.9;
  margin-right: 0.35rem;
  margin-top: 0.15rem;
  color: #113a68;
  font-weight: 700;
}

.news-lead__media {
  min-width: 0;
  align-self: start;
  height: fit-content;
}

@media (min-width: 901px) {
  .news-lead--short .news-media--lead,
  .news-lead--short .news-gallery.news-media--lead {
    aspect-ratio: 16 / 7;
    max-height: clamp(240px, 26vw, 360px);
  }
}

.news-lead__stack {
  display: grid;
  gap: 0.78rem;
}

.news-section-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.58rem;
  height: 1.58rem;
  border-radius: 999px;
  background: #153f6e;
  color: #fff;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.news-section-no--lead {
  width: 2.02rem;
  height: 2.02rem;
  font-size: 0.92rem;
  margin-top: 0.08rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.65rem;
  padding-top: 0.8rem;
  border-top: 2px solid rgba(24, 45, 71, 0.2);
  align-items: start;
}

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

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

.news-grid--feature .news-article:first-child {
  grid-column: span 1;
}

@media (min-width: 1201px) {
  .news-grid:not(.news-grid--single):not(.news-grid--double) > .news-article:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

.news-article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--paper-line);
  border-radius: 10px;
  padding: 0.7rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 0;
  align-self: start;
  overflow: hidden;
}

@media (min-width: 901px) {
  .news-grid {
    align-items: stretch;
  }

  .news-grid > .news-article {
    align-self: stretch;
    height: 100%;
  }
}

.news-article__title {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  line-height: 1.2;
  color: #1a2736;
  border-bottom: 2px solid #1e3c5f;
  padding-bottom: 0.45rem;
}

.news-article__title-text {
  min-width: 0;
}

.news-lead__headline-text,
.news-article__title-text,
.news-lead__body p,
.news-article__body p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.news-article__media {
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
}

.news-article__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: start;
}

.news-article.no-media .news-article__content {
  display: block;
}

.news-article__body {
  min-width: 0;
}

.news-article__body p {
  margin: 0 0 0.7rem;
  color: #243345;
  font-size: 0.95rem;
  line-height: 1.56;
  text-align: justify;
}

.news-article.has-media .news-article__body.has-columns {
  column-count: 1;
}

.news-article--compact {
  padding: 0.6rem 0.65rem 0.7rem;
  height: auto;
  min-height: 0;
}

.news-collage__side .news-article--compact {
  height: auto;
}

.news-collage--side-1 .news-collage__side {
  grid-auto-rows: auto;
  align-content: start;
}

.news-collage--side-1 .news-collage__side .news-article--compact {
  height: auto;
}

.news-collage__side .news-article--compact .news-article__content {
  height: auto;
  align-content: start;
}

.news-collage__side .news-article__body--compact p {
  -webkit-line-clamp: 12;
}

.news-article--bridge .news-article__body--compact p {
  -webkit-line-clamp: 11;
}

.news-article__body--bridge p {
  margin: 0 0 0.64rem;
  font-size: 0.93rem;
  line-height: 1.5;
  text-align: left;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}

@media (min-width: 901px) {
  .news-lead__stack > .news-article--bridge-primary:first-child .news-article__content {
    grid-template-columns: minmax(220px, 55%) minmax(0, 45%);
    gap: 0.68rem;
    align-items: stretch;
  }

  .news-lead__stack > .news-article--bridge-primary:first-child .news-article__media {
    min-width: 0;
    align-self: stretch;
    justify-self: start;
    display: flex;
    overflow: hidden;
    width: 100%;
  }

  .news-lead__stack > .news-article--bridge-primary:first-child .news-media--article,
  .news-lead__stack > .news-article--bridge-primary:first-child .news-gallery.news-media--article {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-left: 0;
    margin-right: 0;
  }

  .news-lead__stack > .news-article--bridge-primary:first-child .news-media img,
  .news-lead__stack > .news-article--bridge-primary:first-child .news-gallery__slide {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: left center;
  }

  .news-lead__stack > .news-article--bridge-primary:first-child .news-article__body,
  .news-lead__stack > .news-article--bridge-primary:first-child .news-article__title-text {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .news-lead__stack > .news-article--bridge-primary:first-child .news-article__body {
    margin-left: -35;
    padding-left: 0;
  }

  .news-lead__stack > .news-article--bridge-primary:first-child .news-article__title {
    gap: 0.38rem;
    padding-right: 0;
  }
}

.news-article--compact .news-article__title {
  font-size: clamp(0.98rem, 1.1vw, 1.2rem);
  margin-bottom: 0.15rem;
}

.news-article--compact .news-article__content {
  grid-template-columns: 1fr;
  gap: 0.7rem;
  align-items: start;
}

.news-article--compact .news-media--article,
.news-article--compact .news-gallery.news-media--article {
  aspect-ratio: 4 / 3;
  height: auto;
  width: 100%;
}

.news-article__body--compact p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

@media (min-width: 1201px) {
  .news-collage__main .news-lead__body {
    column-count: 2;
    column-width: 18rem;
    column-gap: 1.2rem;
    column-rule: 1px solid rgba(20, 47, 78, 0.16);
    column-fill: balance;
  }

  .news-collage__main .news-lead__body p {
    break-inside: avoid;
    margin-bottom: 0.78rem;
    text-align: left;
    hyphens: auto;
  }
}

@media (min-width: 1500px) {
  .news-collage__main .news-lead__body {
    column-count: 2;
    column-width: 19rem;
    column-gap: 1.25rem;
  }
}

.news-article__body.has-columns {
  column-count: 2;
  column-gap: 1rem;
}

.news-author-end {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid rgba(23, 54, 88, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(209, 223, 241, 0.82), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 248, 253, 0.98) 56%, rgba(229, 238, 248, 0.96) 100%);
  box-shadow:
    0 16px 36px rgba(16, 31, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  padding: 1.2rem 1.4rem 1.1rem;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  gap: 1.15rem 1.5rem;
  align-items: center;
}

.news-author-end::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0d315e 0%, #1d4f86 52%, #4f86bd 100%);
}

.news-author-end::after {
  content: "";
  position: absolute;
  top: -76px;
  right: -68px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 56, 95, 0.1) 0%, rgba(18, 56, 95, 0.03) 48%, transparent 72%);
  z-index: -1;
}

.news-author-end__portrait {
  position: relative;
  width: 228px;
  height: 228px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff 0%, #e4eef8 100%);
  box-shadow:
    inset 0 1px 8px rgba(255, 255, 255, 0.95),
    0 14px 28px rgba(16, 31, 50, 0.13);
}

.news-author-end__portrait::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(32, 74, 121, 0.26);
}

.news-author-end img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(32, 74, 121, 0.32);
  position: relative;
  z-index: 1;
}

.news-author-end__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.46rem;
  padding-left: 1.35rem;
  border-left: 1px solid rgba(18, 56, 95, 0.14);
}

.news-author-end__content::before {
  content: "Autor del blog";
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #1f568d;
}

.news-author-end h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  color: #12385f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

.news-author-end p {
  margin: 0;
  max-width: 62ch;
  font-size: 0.96rem;
  color: #3c5168;
  line-height: 1.58;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.news-author-end__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  align-items: center;
  margin-top: 0.1rem;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(18, 56, 95, 0.12);
}

.news-author-end__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 56, 95, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #edf2f7 100%);
  color: #12385f;
  box-shadow: 0 6px 14px rgba(17, 43, 69, 0.1);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.news-author-end__social-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #163e6a 0%, #204a79 100%);
  border-color: rgba(18, 56, 95, 0.22);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(17, 43, 69, 0.16);
}

.news-author-end__social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.news-article__body.has-columns p {
  break-inside: avoid;
}

.news-media,
.news-gallery {
  border: 1px solid #c9c0b2;
  border-radius: 10px;
  overflow: hidden;
  background: #f1ece2;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.news-media {
  position: relative;
  margin: 0;
}

.news-media--lead,
.news-gallery.news-media--lead {
  aspect-ratio: 16 / 10;
}

.news-media--article,
.news-gallery.news-media--article {
  aspect-ratio: 4 / 3;
  background: white;
}

/* Estilo periodico: alternar orden texto/imagen y variar proporciones en grilla */
@media (min-width: 901px) {
  .news-grid .news-article.has-media .news-article__content {
    min-height: 100%;
  }

  .news-grid .news-article:nth-child(even).has-media .news-article__body {
    order: 1;
  }

  .news-grid .news-article:nth-child(even).has-media .news-article__media {
    order: 2;
  }

  .news-grid .news-article:nth-child(3n + 1) .news-media--article,
  .news-grid .news-article:nth-child(3n + 1) .news-gallery.news-media--article {
    aspect-ratio: 16 / 10;
    background: white;
  }

  .news-grid .news-article:nth-child(3n + 2) .news-media--article,
  .news-grid .news-article:nth-child(3n + 2) .news-gallery.news-media--article {
    aspect-ratio: 4 / 3;
    background: white;
  }

  .news-grid .news-article:nth-child(3n) .news-media--article,
  .news-grid .news-article:nth-child(3n) .news-gallery.news-media--article {
    aspect-ratio: 1 / 1;
    background: white;
  }
}

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

.news-lead__body img,
.news-article__body img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0.4rem 0;
  border-radius: 8px;
}

.news-media--placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.news-media--placeholder span {
  color: #5e6c7c;
  font-size: 0.92rem;
}

.news-gallery {
  position: relative;
}

.news-gallery__track {
  display: flex;
  height: 100%;
  width: 100%;
  min-width: 0;
  transition: transform 320ms ease;
}

.news-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(20, 41, 67, 0.72);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.news-gallery__btn--prev {
  left: 0.55rem;
}

.news-gallery__btn--next {
  right: 0.55rem;
}

.news-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.32rem;
  z-index: 2;
}

.news-gallery__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.news-gallery__dot.is-active {
  background: #fff;
}

.news-empty {
  border: 1px dashed var(--paper-line);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  color: #4e5e70;
}

.news-empty h2 {
  margin: 0 0 0.4rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
}

.news-paper__footer {
  margin-top: 1rem;
  padding-top: 0.7rem;
  border-top: 3px double #20354f;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2b4462;
  font-size: 0.8rem;
}

@media (max-width: 1200px) {
  .news-collage {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .news-collage__side {
    grid-template-rows: none;
  }

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

  .news-grid--feature .news-article:first-child {
    grid-column: span 1;
  }
}

@media (max-width: 1060px) {
  .news-collage {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .news-layout {
    margin-top: 112px;
    padding: 0 0.7rem;
  }

  .news-paper {
    padding: 0.75rem;
  }

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

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

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

  .news-grid--feature .news-article:first-child {
    grid-column: span 1;
  }

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

  .news-article--compact .news-article__content {
    grid-template-columns: 1fr;
  }

  .news-article--compact .news-media--article,
  .news-article--compact .news-gallery.news-media--article {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .news-article__body--compact p {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
  }

  .news-article__body.has-columns {
    column-count: 1;
  }
}

@media (max-width: 600px) {
  .news-layout {
    margin-top: 92px;
    padding: 0 0.5rem;
  }

  .news-paper {
    padding: 0.6rem;
  }

  .news-options {
    gap: 0.45rem;
    margin-bottom: 0.75rem;
  }

  .news-option {
    min-width: 0;
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
  }

  .news-paper__kicker {
    font-size: 0.68rem;
  }

  .news-paper__meta {
    font-size: 0.72rem;
    gap: 0.3rem 0.6rem;
  }

  .news-lead__left,
  .news-article {
    padding: 0.65rem;
  }

  .news-article__title {
    font-size: 0.94rem;
    line-height: 1.15;
  }

  .news-article__content {
    gap: 0.55rem;
  }

  .news-lead__deck {
    font-size: 0.92rem;
  }

  .news-lead__body p,
  .news-article__body p {
    font-size: 0.9rem;
  }

  .news-author-end {
    grid-template-columns: 1fr;
    padding: 0.85rem;
    gap: 0.8rem;
    text-align: center;
  }

  .news-author-end::after {
    top: -60px;
    right: -48px;
    width: 138px;
    height: 138px;
  }

  .news-author-end__portrait {
    width: 106px;
    height: 106px;
    margin: 0 auto;
  }

  .news-author-end img {
    width: 82px;
    height: 82px;
  }

  .news-author-end__content {
    width: 100%;
    padding-left: 0;
    padding-top: 0.75rem;
    border-left: 0;
    border-top: 1px solid rgba(18, 56, 95, 0.12);
    align-items: center;
  }

  .news-author-end h3 {
    font-size: 1.16rem;
  }

  .news-author-end p {
    max-width: none;
    font-size: 0.84rem;
  }

  .news-author-end__social {
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
  }

  .news-author-end__social-link {
    width: 2rem;
    height: 2rem;
  }

  .news-author-end__social-link svg {
    width: 1rem;
    height: 1rem;
  }

  .news-gallery__btn {
    width: 30px;
    height: 30px;
  }

  .news-gallery__btn--prev {
    left: 0.35rem;
  }

  .news-gallery__btn--next {
    right: 0.35rem;
  }

  .news-lead__body p:first-child::first-letter {
    float: none;
    font-size: inherit;
    line-height: inherit;
    margin-right: 0;
    margin-top: 0;
    color: inherit;
    font-weight: inherit;
  }
}

@media (max-width: 420px) {
  .news-layout {
    margin-top: 290px;
    padding: 0 0.35rem;
  }

  .news-paper {
    padding: 0.52rem;
  }

  .news-lead__left,
  .news-article {
    padding: 0.55rem;
  }

  .news-lead__headline {
    font-size: clamp(1rem, 6.1vw, 1.28rem);
  }

  .news-author-end {
    padding: 0.78rem 0.72rem;
  }

  .news-author-end__portrait {
    width: 96px;
    height: 96px;
  }

  .news-author-end img {
    width: 74px;
    height: 74px;
  }

  .news-author-end__content::before {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .news-author-end h3 {
    font-size: 1.02rem;
  }

  .news-author-end p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .news-author-end__social-link {
    width: 1.9rem;
    height: 1.9rem;
  }

  .news-article__title {
    font-size: 0.88rem;
  }

  .news-gallery__btn {
    width: 28px;
    height: 28px;
  }

  .news-gallery__dots {
    bottom: 0.35rem;
  }
}
