.mgbHomeFeed {
  width: min(1120px, 100%);
  margin: 0 auto 36px;
  display: grid;
  gap: 20px;
}

.mgbHomeFeed__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.mgbHomeFeed__kicker {
  margin: 0;
  color: #a86845;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mgbHomeFeed__filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 232px;
}

.mgbHomeFeed__filterLabel {
  color: #33483f;
  font-size: 0.86rem;
  font-weight: 700;
}

.mgbHomeFeed__select {
  padding: 12px 14px;
  border: 1px solid rgba(18, 61, 49, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #1f2d28;
}

.mgbHomeFeed__pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mgbHomeFeed__pager button {
  padding: 11px 16px;
  border: 1px solid rgba(18, 61, 49, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1f2d28;
  font-weight: 700;
  cursor: pointer;
}

.mgbHomeFeed__pager button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mgbHomeFeed__pageText {
  color: #33483f;
}

.mgbHomeFeed__status,
.mgbHomeFeed__empty {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  color: #33483f;
}

.mgbHomeFeed__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mgbHomeFeed__card {
  overflow: hidden;
  border: 1px solid rgba(18, 61, 49, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.mgbHomeFeed__cardLink {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.mgbHomeFeed__cardImageWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(18, 61, 49, 0.04);
  border-bottom: 1px solid rgba(18, 61, 49, 0.08);
}

.mgbHomeFeed__cardImage {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center center;
  background: rgba(255, 255, 255, 0.82);
}

.mgbHomeFeed__cardImageFallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 280px;
  padding: 20px;
  color: #6b776f;
  text-align: center;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

.mgbHomeFeed__cardContent {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 18px 22px;
}

.mgbHomeFeed__cardMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #56645c;
  font-size: 0.88rem;
}

.mgbHomeFeed__cardTitle {
  margin: 0;
  color: #1f2d28;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.42rem;
  line-height: 1.14;
}

.mgbHomeFeed__cardExcerpt {
  margin: 0;
  color: #33483f;
  line-height: 1.9;
  font-size: 1rem;
}

@media (max-width: 960px) {
  .mgbHomeFeed__head {
    flex-direction: column;
    align-items: stretch;
  }

  .mgbHomeFeed__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .mgbHomeFeed__pager {
    flex-direction: column;
    align-items: stretch;
  }

  .mgbHomeFeed__pager button,
  .mgbHomeFeed__select {
    width: 100%;
  }

  .mgbHomeFeed__cardImage,
  .mgbHomeFeed__cardImageFallback {
    height: 240px;
  }
}
