.smallNewsBlock {
  width: 100%;
  background: #5c7f9e;
}
.snb__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 115px 0 155px 0;
}
.snb__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 28px 0;
}
.snb__intro {
  max-width: 760px;
}
.snb__top-text {
  color: #fff;
  font: 600 14px/150% "Roboto", sans-serif;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 0 6px 0;
}
.snb__title {
  color: #fff;
  font: 800 36px/120% "Roboto", sans-serif;
  margin: 0 0 10px 0;
}
.snb__text {
  color: #fff;
  font: 400 16px/150% "Roboto", sans-serif;
}
.snb__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 30px;
  background: #0a2740;
  color: #fff;
  text-decoration: none;
  font: 500 14px/150% "Roboto", sans-serif;
  white-space: nowrap;
  border: 1px solid #0a2740;
}
.snb__button:hover {
  background: #fff;
  color: #0a2740;
  border: 1px solid #0a2740;
}

.snb__slider {
  position: relative;
}
.snb__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px * 2) / 3);
  gap: 32px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.snb__slide {
  display: block;
}
.snb__card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.snb__image-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  display: block;
}
.snb__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.snb__content {
  padding: 12px 0 0 0;
}
.snb__post-title {
  color: #fff;
  font: 700 20px/130% "Roboto", sans-serif;
  margin: 0 0 6px 0;
  text-decoration: none;
  display: inline-block;
}
.snb__excerpt {
  color: #fff;
  font: 400 14px/150% "Roboto", sans-serif;
  margin: 0 0 10px 0;
}
.snb__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font: 600 14px/150% "Roboto", sans-serif;
  margin: 0 0 10px 0;
}
.snb__read-more:hover {
  text-decoration: underline;
}
.snb__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.snb__author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.snb__author-name {
  display: block;
  color: #fff;
  font: 700 14px/130% "Roboto", sans-serif;
}
.snb__author-role {
  display: block;
  color: #fff;
  font: 400 12px/130% "Roboto", sans-serif;
}

.snb__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.snb__post-date {
  color: #fff;
  font: 400 12px/130% "Roboto", sans-serif;
}

/* Controls: arrows bottom-right, dots bottom-left */
.snb__controls {
  position: absolute;
  right: 0;
  bottom: -40px;
  display: inline-flex;
  gap: 12px;
}
.snb__prev,
.snb__next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.snb__prev:hover,
.snb__next:hover {
  background: #0a2740;
  color: #fff;
}
.snb__pagination {
  position: absolute;
  left: 0;
  bottom: -36px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.snb__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  opacity: 0.2;
}
.snb__dot:hover {
  background: #fff;
  border: 2px solid #fff;
  opacity: 1;
}
.snb__dot.is-active {
  background: #fff;
  border: 2px solid #fff;
  opacity: 1;
}

@media (max-width: 900px) {
  .snb__track {
    grid-auto-columns: calc((100% - 20px * 1) / 2);
    gap: 20px;
  }
  .snb__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .snb__track {
    grid-auto-columns: 100%;
    gap: 16px;
  }
  .snb__controls {
    bottom: 0px;
  }
  .snb__pagination {
    bottom: -32px;
  }
}
