/* Resources page */
.resources__list {
  padding-bottom: 4rem;
  background-color: #FFFFFF;
}
.resources__list .resources__heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.resources__list .resources__heading .tagline {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.25rem;
}
.resources__list .resources__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0;
  color: #101323;
}
.resources__list .resources__grid {
  row-gap: 1.75rem;
}
.resources__list .article-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #FAFAFF;
  border: 1px solid #D5D9EB;
  border-radius: 40px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background-color 0.2s;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(16, 19, 35, 0.04);
}
.resources__list .article-card:hover {
  border-color: #AFB5D9;
  box-shadow: 0 14px 30px rgba(16, 19, 35, 0.06);
  transform: translateY(-4px);
  background-color: #FFFFFF;
}
.resources__list .article-card__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.resources__list .article-card__image-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.resources__list .article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.resources__list .article-card__image-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 19, 35, 0) 40%, rgba(16, 19, 35, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.resources__list .article-card:hover .article-card__image {
  filter: brightness(0.99) saturate(1.02);
  transform: none;
}
.resources__list .article-card:hover .article-card__image-accent {
  opacity: 0.55;
}
.resources__list .article-card__content {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.65rem;
}
.resources__list .article-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #535862;
  letter-spacing: 0.01em;
  font-style: normal;
  font-weight: 400;
  line-height: 22.8px;
  margin-bottom: 0px;
}
.resources__list .article-card__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D5D7DA;
  display: inline-flex;
}
.resources__list .article-card__title {
  margin: 0;
  flex-grow: 1;
  transition: color 0.2s;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
.resources__list .article-card__preview {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #252B37;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.resources__list .article-card:hover .article-card__title {
  color: #8259E8;
}
@media (max-width: 767px) {
  .resources__list .resources__title {
    font-size: 1.875rem;
  }
  .resources__list .article-card__image-wrap {
    height: 180px;
  }
}

.blog-hero {
  background-color: #F4F3FF;
  text-align: center;
}
.blog-hero .container {
  display: flex;
  max-width: 1100px;
  padding: 4rem 1rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}
.blog-hero h1 {
  color: #111325;
  text-align: center;
  font-family: Inter;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.625rem;
  margin: 0;
  padding: 0;
}
.blog-hero .lead {
  color: #535862;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=blog.css.map */
