:root {
  --box-shadow: 0px 8px 40px rgba(155, 155, 155, 0.25);
  --gradient-purple-pink: linear-gradient(90deg, #380594 0%, #eb5af6 100%);
  --gradient-grape-aqua: linear-gradient(90deg, #6529f6 0%, #42fbfe 100%);
  --viewportWidth: calc(100vw - var(--scrollbarWidth));
  --component-spacing: 80px;
  --navigation-height: 97px;
}
@media (min-width: 768px) {
  :root {
    --component-spacing: 95px;
  }
}
@media (min-width: 1024px) {
  :root {
    --component-spacing: 130px;
    --navigation-height: 164px;
  }
}
@media (min-width: 1280px) {
  :root {
    --navigation-height: 153px;
  }
}

.block-news .text-wrapper {
  max-width: 600px;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 32px;
}
.block-news .text-wrapper h2 {
  margin-bottom: 6px;
}
.block-news .text-wrapper p:first-of-type {
  margin-top: 0;
}
.block-news .text-wrapper p:last-of-type {
  margin-bottom: 0;
}
.block-news .article-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
.block-news .card-article-block .image-wrapper .image-inner {
  position: relative;
  padding-bottom: 108%;
  width: 100%;
  height: 0;
  background-color: #f6f3fa;
  background-image: url("/wp-content/themes/sessy/images/sessy-logo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 60%;
  border-radius: 12px;
}
.block-news .card-article-block .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.block-news .card-article-block .meta {
  margin-top: 8px;
  margin-bottom: 0;
  color: #eb5af6;
  font-size: 14px;
  line-height: 1.72;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.block-news .card-article-block .title {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.22px;
  color: #333333;
  text-decoration: none;
  margin-top: 6px;
}
.block-news .card-article-block .title:hover {
  text-decoration: underline;
}
@media (min-width: 480px) {
  .block-news .article-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .block-news .text-wrapper {
    margin-bottom: 60px;
  }
  .block-news .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .block-news .card-article-block:nth-of-type(2) {
    margin-top: 36px;
  }
  .block-news .card-article-block .meta {
    margin-top: 19px;
  }
}
@media (min-width: 1024px) {
  .block-news .card-article-block:nth-of-type(2) {
    margin-top: 72px;
  }
}