/* 기본 */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif;
  background: #f5f6f8;
  color: #222;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 26px;
  margin-bottom: 6px;
}

.header p {
  color: #666;
}

/* 카드 그리드 */
.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

/* 카드 */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  text-decoration: none;
  color: #222;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
}

.card:active {
  transform: translateY(-2px);
}

.card img {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin-bottom: 8px;
}

.card span {
  font-weight: 700;
  font-size: 14px;
  color: #777;
  margin-bottom: 4px;
}

.card strong {
  font-size: 15px;
  line-height: 1.4;
}

/* 상세 영역 */
.section {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-top: 24px;
}

.section h2 {
  margin-top: 0;
  font-size: 20px;
}