.card-wrapper {
  padding: 4rem 1rem;
  width: 100%;
}
.card-wrapper__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.card-wrapper__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 641px) and (max-width: 1024px) {
  .card-wrapper__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .card-wrapper {
    padding: 2rem 1rem;
  }
  .card-wrapper__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.card-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.card-item:hover .card-item__image img {
  transform: scale(1.05);
}
.card-item__image {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}
.card-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card-item__content {
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  gap: 1.25rem;
}
.card-item__title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  color: #1a1a1a;
}
.card-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e6cb6;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.3s ease, color 0.3s ease;
}
.card-item__link:hover {
  gap: 0.75rem;
  color: #154d82;
}
.card-item__link-text {
  font-style: italic;
}
.card-item__link svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 640px) {
  .card-item__content {
    padding: 1.25rem 1rem 1.5rem;
  }
  .card-item__title {
    font-size: 1.125rem;
  }
}

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