.news {
  padding: 56px 0 72px;
}

.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.news__title {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
  color: #231638;
}

.news__subtitle {
  margin: 0 0 20px;
  max-width: 540px;
  font-size: 13px;
  line-height: 1.6;
  color: #7a7388;
}

/* сетка 2×N */

.news__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

/* карточка */

.news-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 16px;
  align-items: stretch;
}

.news-card__img img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.news-card__body {
  display: flex;
  flex-direction: column;
}

/* дата */

.news-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #9b93ac;
  margin-bottom: 6px;
}

.news-card__meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7d4cf4;
}

/* текст */

.news-card__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #231638;
}

.news-card__text {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #5f5869;
  flex: 1;
}

/* кнопка */

.news-card__btn {
  align-self: flex-start;
  display: inline-block;
  padding: 9px 20px;
  border-radius: 8px;
  background: #ffba1a;
  color: #3b2500;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* кнопка "Больше новостей" */

.news__more-wrap {
  margin-top: 18px;
  text-align: center;
}

.news__more {
  padding: 10px 30px;
  border-radius: 8px;
  border: none;
  background: #ffba1a;
  color: #3b2500;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* адаптив */

@media (max-width: 900px) {
  .news__grid {
    grid-template-columns: 1fr;
  }
}

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

  .news-card__img img {
    height: 170px;
  }
}
.article {
  padding: 32px 0 72px;
}



/* хлебные крошки */

.article-breadcrumbs {
  font-size: 13px;
  color: #a19ab3;
  margin-bottom: 10px;
  display: flex;
}
.article-breadcrumbs li::marker {
  content: "→ "; /* Inserts a right arrow character followed by a space */
  color: #000;  /* Optional: change the arrow color */
  font-size: 1em; /* Optional: adjust the arrow size */
}
  

.article-breadcrumbs a {
  color: #a19ab3;
  text-decoration: none;
}

.article-breadcrumbs span {
  margin: 0 3px;
}
.breadcrumb-item-active {
   color: #4C306F;
}
/* заголовок и лид */

.article__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #231638;
}

.article__lead {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #6d6678;
}

/* большая картинка */

.article__hero {
  margin: 0 0 18px;
  border-radius: 16px;
  overflow: hidden;
}

.article__hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* основной текст */

.article__text p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #4b4457;
}

/* две картинки в ряд */

.article__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 10px 0 18px;
}

.article__gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.article__gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* адаптив */

@media (max-width: 700px) {
  .article__title {
    font-size: 22px;
  }

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