.main-post {
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 0;
}

.front-page-post {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 420px;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-bottom: 5px;
  background-size: cover;
}

.front-page-post:hover,
.front-page-post:focus,
.front-page-post:after {
  text-decoration: none;
}

.front-page-post h2 {
  color: #fff;
  padding: 5px;
  line-height: 32px;
}

.front-page-post p {
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
  padding: 5px;
}

.post-text {
  padding: 10px;
  background: linear-gradient(
    to bottom,
    rgb(5 5 5 / 25%) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  shape-rendering: optimizespeed;
}

.nocomments{
    display: none;
}