.info-card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 60px auto;
}

.info-card {
  position: relative;
  background-color: #283954;
  padding: 28px 24px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  cursor: pointer;
  text-wrap: wrap;
}

.info-card:hover {
  background-color: #3d506e;
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  font-family: 'suit-semibold';
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 600;
  color: white;
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: solid 2px white;
}

.info-card p {
  font-family: 'suit-regular';
  color: white;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.5;
  margin: 0;
}

.info-card .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #999;
  transition: color 0.2s ease, transform 0.2s ease;
}

.info-card:hover .arrow {
  color: #000;
  transform: translateY(-50%) translateX(4px);
}