/* Do not edit anything below */
.all-articles-section {
  background-color: #fff;
}
.all-articles-section .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2rem + 1 * (100vw - 48rem) / 27, 3rem);
}
.all-articles-section .cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem clamp(0.5rem, 0.5rem + 0.5 * (100vw - 48rem) / 27, 1rem);
  inline-size: 100%;
}
.all-articles-section .card {
  background-color: rgba(103, 30, 58, 0.04);
  display: flex;
  flex-direction: column;
  border-radius: clamp(0.5rem, 0.5rem + 0.25 * (100vw - 48rem) / 27, 0.75rem);
  overflow: hidden;
}
@media (width >= 768px) {
  .all-articles-section .card {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (width >= 768px) {
  .all-articles-section .card--featured {
    block-size: 30rem;
  }
}
@media (width >= 768px) {
  .all-articles-section .card--small {
    block-size: 20rem;
  }
}
.all-articles-section .card-image {
  background-color: rgba(103, 30, 58, 0.06);
  block-size: clamp(15rem, 17.5rem + -2.5 * (100vw - 48rem) / 27, 17.5rem);
  position: relative;
  overflow: hidden;
}
@media (width >= 768px) {
  .all-articles-section .card-image {
    flex: 1 0 0;
    align-self: stretch;
    min-inline-size: 0;
    block-size: auto;
  }
}
.all-articles-section .card-image img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.all-articles-section .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1rem, 1rem + 0.5 * (100vw - 48rem) / 27, 1.5rem);
}
@media (width >= 768px) {
  .all-articles-section .card-content {
    flex: 1 0 0;
    min-inline-size: 0;
  }
}
.all-articles-section .card-top {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.5rem + 0.5 * (100vw - 48rem) / 27, 1rem);
}
@media (width >= 768px) {
  .all-articles-section .card-top {
    flex: 1 0 0;
    min-block-size: 0;
  }
}
.all-articles-section .card-text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.25rem + 0.25 * (100vw - 48rem) / 27, 0.5rem);
}
.all-articles-section .title {
  color: #000;
  margin: 0;
  font-family: Libre Baskerville, serif;
  font-size: clamp(1.125rem, 1.125rem + 0.25 * (100vw - 48rem) / 27, 1.375rem);
  font-weight: 400;
  line-height: 1.4;
}
.all-articles-section .description {
  color: rgba(0, 0, 0, 0.4);
  font-family: "Geist", -apple-system, blinkmacsystemfont, "avenir next", "avenir, segoe ui", "helvetica neue", helvetica, ubuntu, roboto, noto, arial, sans-serif;
  font-size: clamp(0.875rem, 0.875rem + 0.125 * (100vw - 48rem) / 27, 1rem);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
.all-articles-section .meta {
  color: rgba(0, 0, 0, 0.4);
  font-family: "Geist", -apple-system, blinkmacsystemfont, "avenir next", "avenir, segoe ui", "helvetica neue", helvetica, ubuntu, roboto, noto, arial, sans-serif;
  font-size: clamp(0.75rem, 0.75rem + 0.125 * (100vw - 48rem) / 27, 0.875rem);
  line-height: 1.4;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.all-articles-section .meta-divider {
  background-color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  inline-size: 0.0625rem;
  block-size: 0.5rem;
}
.all-articles-section .category {
  color: #080c11;
}
.all-articles-section .card-link {
  color: #671e3a;
  font-family: "Geist", -apple-system, blinkmacsystemfont, "avenir next", "avenir, segoe ui", "helvetica neue", helvetica, ubuntu, roboto, noto, arial, sans-serif;
  font-size: clamp(0.75rem, 0.75rem + 0.125 * (100vw - 48rem) / 27, 0.875rem);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}
.all-articles-section .card-link svg {
  color: currentcolor;
  inline-size: clamp(0.875rem, 0.875rem + 0.125 * (100vw - 48rem) / 27, 1rem);
  block-size: clamp(0.875rem, 0.875rem + 0.125 * (100vw - 48rem) / 27, 1rem);
}
.all-articles-section .cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.5rem, 0.5rem + 0.5 * (100vw - 48rem) / 27, 1rem);
}
@media (width >= 768px) {
  .all-articles-section .cards-row {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .all-articles-section .cards-row .card {
    min-inline-size: 0;
  }
}