.c-news-2col {
  max-width: 1184px;
  margin-inline: auto;
  padding-inline: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .c-news-2col {
    grid-template-columns: 55fr 45fr;
    gap: 64px;
  }
}
.c-news-2col__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-news-2col__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.c-news-2col__item {
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .c-news-2col__left {
    gap: 0;
  }
  .c-news-2col__left .c-news-2col__item {
    border-bottom: 1px solid #e8ecef;
    padding: 24px 0;
  }
  .c-news-2col__left .c-news-2col__item:first-child {
    padding-top: 0;
  }
  .c-news-2col__left .c-news-2col__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .c-news-2col__left .c-news-card {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }
  .c-news-2col__left .c-news-card__image-link {
    width: 200px;
    min-width: 200px;
    border-radius: var(--radius-box);
    overflow: hidden;
  }
  .c-news-2col__left .c-news-card__image {
    width: 200px;
    height: 134px;
    object-fit: cover;
  }
  .c-news-2col__left .c-news-card__content {
    padding: 0;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }
  .c-news-2col__left .c-news-card__meta {
    font-size: var(--font-size-sm);
  }
  .c-news-2col__left .c-news-card__title {
    font-size: var(--font-size-xl);
    line-height: 1.35;
  }
  .c-news-2col__left .c-news-card__description {
    -webkit-line-clamp: 4;
    font-size: var(--font-size-base);
    line-height: 1.6;
  }
}
.c-news-2col__right .c-news-card {
  flex-direction: column;
}
.c-news-2col__right .c-news-card__image-link {
  width: 100%;
  border-radius: var(--radius-box);
  overflow: hidden;
}
.c-news-2col__right .c-news-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.c-news-2col__right .c-news-card__content {
  padding: 16px 0 0;
  gap: 12px;
}
.c-news-2col__right .c-news-card__title {
  font-size: var(--font-size-2xl);
  line-height: 1.3;
}
.c-news-2col__right .c-news-card__description {
  -webkit-line-clamp: 2;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-info);
}

.c-news-tabs {
  display: none;
}

.pager {
  max-width: 1184px;
  margin-inline: auto;
  padding-inline: 16px;
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager__items {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pager__item {
  margin: 0;
}
.pager__item a,
.pager__item button,
.pager__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-primary);
  text-decoration: none;
  border: 1px solid var(--color-primary);
  background: #fff;
  cursor: pointer;
  margin-left: -1px;
  position: relative;
  transition: background 0.15s ease, color 0.15s ease;
}
.pager__item a:hover,
.pager__item button:hover,
.pager__item span:hover {
  background: var(--color-secondary);
  z-index: 1;
}
.pager__item--first, .pager__item--last {
  display: none;
}
.pager__item--previous + .pager__item a, .pager__item--previous + .pager__item button, .pager__item--previous + .pager__item span, .pager__item:first-child:not(.pager__item--previous):not(.pager__item--next):not(.pager__item--first):not(.pager__item--last) a, .pager__item:first-child:not(.pager__item--previous):not(.pager__item--next):not(.pager__item--first):not(.pager__item--last) button, .pager__item:first-child:not(.pager__item--previous):not(.pager__item--next):not(.pager__item--first):not(.pager__item--last) span {
  border-radius: 8px 0 0 8px;
  margin-left: 0;
}
.pager__item:has(+ .pager__item--next) a, .pager__item:has(+ .pager__item--next) button, .pager__item:has(+ .pager__item--next) span, .pager__item:has(+ .pager__item--last):not(.pager__item--next) a, .pager__item:has(+ .pager__item--last):not(.pager__item--next) button, .pager__item:has(+ .pager__item--last):not(.pager__item--next) span, .pager__item:last-child:not(.pager__item--previous):not(.pager__item--next):not(.pager__item--first):not(.pager__item--last) a, .pager__item:last-child:not(.pager__item--previous):not(.pager__item--next):not(.pager__item--first):not(.pager__item--last) button, .pager__item:last-child:not(.pager__item--previous):not(.pager__item--next):not(.pager__item--first):not(.pager__item--last) span {
  border-radius: 0 8px 8px 0;
}
.pager__item.is-active a,
.pager__item.is-active button,
.pager__item.is-active span, .pager__item--active a,
.pager__item--active button,
.pager__item--active span {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  z-index: 1;
  pointer-events: none;
}
.pager__item.is-active a:hover,
.pager__item.is-active button:hover,
.pager__item.is-active span:hover, .pager__item--active a:hover,
.pager__item--active button:hover,
.pager__item--active span:hover {
  background: var(--color-primary);
  color: #fff;
}
.pager__item--previous a,
.pager__item--previous button,
.pager__item--previous span, .pager__item--next a,
.pager__item--next button,
.pager__item--next span {
  border-radius: 8px;
  margin-left: 0;
}
.pager__item--previous a,
.pager__item--previous button, .pager__item--next a,
.pager__item--next button {
  font-size: 0;
  color: transparent;
}
.pager__item--previous a span,
.pager__item--previous button span, .pager__item--next a span,
.pager__item--next button span {
  display: none;
}
.pager__item--previous a::after,
.pager__item--previous button::after, .pager__item--next a::after,
.pager__item--next button::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-color: var(--color-primary);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.pager__item--previous {
  margin-right: 64px;
}
.pager__item--previous a::after, .pager__item--previous button::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M5 1L1 5l4 4' stroke='%231557B5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M5 1L1 5l4 4' stroke='%231557B5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pager__item--next {
  margin-left: 64px;
}
.pager__item--next a::after, .pager__item--next button::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M1 1l4 4-4 4' stroke='%231557B5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M1 1l4 4-4 4' stroke='%231557B5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pager__item--ellipsis a, .pager__item--ellipsis button, .pager__item--ellipsis span {
  border: none;
  background: transparent;
  cursor: default;
  color: var(--color-info);
  font-size: 14px;
  font-weight: 400;
  pointer-events: none;
}
.pager__item--ellipsis a:hover, .pager__item--ellipsis button:hover, .pager__item--ellipsis span:hover {
  background: transparent;
  color: var(--color-info);
}