.hygge-blog-grid {
  color: #111;
  font-family: "Plus Jakarta Sans", "Montserrat", "Helvetica Neue", Arial,
    sans-serif;
}

.hygge-blog-grid__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.hygge-blog-card {
  width: calc(33.333% - 16px);
  gap: 18px;
  border-radius: 24px;
  background: #ebe6e0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hygge-blog-card:hover {
  box-shadow: 0 24px 48px rgba(26, 28, 24, 0.08);
}

.hygge-blog-card__image {
  position: relative;
  display: block;
  padding-top: 67%;
  overflow: hidden;
}

.hygge-blog-card__image span {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.hygge-blog-card:hover .hygge-blog-card__image span {
  transform: scale(1.06);
}

.hygge-blog-card__image--placeholder {
  background: linear-gradient(135deg, #d3d5cc, #f5f3ec);
}

.hygge-blog-card__content {
  display: grid;
  gap: 16px;
  padding: 24px 32px;
  font-family: "Source Serif 4";
  font-weight: 300;
}

.hygge-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hygge-blog-card__divider {
  color: currentColor;
}

.hygge-blog-card__category {
  color: #37584c;
  text-decoration: none;
  font-weight: 400;
}

.hygge-blog-card__category:hover {
  color: #1a1c18;
}

.hygge-blog-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 150%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hygge-blog-card__title a {
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

.hygge-blog-card__title a:hover {
  color: #37584c;
}

.hygge-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-decoration-line: underline !important;
  text-decoration-style: dotted !important;
  text-decoration-skip-ink: auto !important;
  text-decoration-thickness: auto !important;
  text-underline-offset: auto !important;
  text-underline-position: from-font !important;
}

.hygge-blog-card__link:hover {
  color: #37584c;
}

.hygge-blog-grid__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hygge-blog-grid__page {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hygge-blog-grid__page:hover,
.hygge-blog-grid__page.is-active {
  border-color: #37584c;
  background: #37584c;
  color: #fff;
}

.hygge-blog-grid__empty {
  margin: 0;
  padding: 32px;
  border-radius: 20px;
  background: #f6f4ed;
  text-align: center;
  font-size: 18px;
  color: #44483a;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
  .hygge-blog-card {
    width: calc(50% - 16px);
  }
}

@media (max-width: 480px) {
  .hygge-blog-card {
    width: 100%;
  }
  .hygge-blog-grid__cards {
    flex-direction: column;
  }
}
