.hero-news-section {
  background: rgb(232, 234, 239);
}

.hero-news {
  display: flex;
  justify-content: space-around;
  gap: 4rem;
  padding: 4rem;
}

.hero-image {
  width: 40%;
  height: auto;
  min-width: 200px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.breadcrumbs,
.breadcrumbs a {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #1b325f;
  text-decoration: none;
  text-align: center;
}

.hero-text h1 {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-text p {
  color: #b53253;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.blog-content {
  display: flex;
  gap: 1rem;
  width: 90%;
  margin-bottom: 5rem;
}

.blog-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 75%;
  padding: 2rem;

  text-align: left;
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.sidebar {
  width: 25%;
  padding: 2rem;
}

.socialmedia {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 2rem;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
}

.sidebar h2 {
  color: #16163f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.socialmedia .icons .fab,
.socialmedia .icons .fas {
  font-weight: 400;
  padding: 5px;
  border-radius: 50%;
  color: #fff;
  font-size: 1em;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
  gap: 0.3rem;
}

.icons a {
  text-decoration: none;
}

.fa-facebook {
  background-color: #3b5998;
}

.fa-twitter {
  background-color: #55acee;
}

.fa-linkedin {
  background-color: #007bb5;
}

.fa-reddit {
  background-color: #ff4500;
}

.fa-whatsapp {
  background-color: #25d366;
}

.icons .fa-envelope {
  background-color: #ea4335;
}

.fa-vk {
  background-color: #45668e;
}

.morepost {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 2rem;
}

.morepost-flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.morepost-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  gap: 1em;
}

.morepost-item img {
  width: 80px;
  height: 50px;
}

.morepost-text h3 {
  line-height: 1;
}

.morepost-text h3 a {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
}

.morepost-text p {
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.pagination-section {
  margin-top: auto;
  background: #7b1222;
}

.pagination {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 3rem;
  padding-inline: 1rem;
  margin-inline: auto;
}

.pagination a {
  text-decoration: none;
}

.pagebtn {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.pagebtn h4 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 0.5;
}

.pagebtn p {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

.pagebtn-next {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.pagebtn-prev {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

@media (width <=900px) {
  .hero-news {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-text {
    width: 100%;
    gap: 1rem;
  }

  .blog-content {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .blog-text {
    width: 100%;
  }
}
