* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
  text-decoration: none;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: clamp(39px, 9.75vw, 78px) clamp(48px, 11.7vw, 97px);
  width: clamp(273px, 43vw, 390px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #aaa;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card img {
  width: clamp(78px, 15.6vw, 156px);
  height: clamp(78px, 15.6vw, 156px);
  object-fit: contain;
  border-radius: 16px;
}

.card span {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
