.container.main {
  /* 중앙 큰 제목 */
  .title {
    margin: 3rem 0 1.5rem;
    text-align:center;
    font-size: 2rem;
    font-weight: 800;
  }
  .title:first-child {
    margin-top: 1rem;
  }


  /* 카드 영역 */
  .grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    justify-items: center;
  }

  .card {
    width: 100%;
    background: #222;
    color: #fff;
    border-radius: 0.25rem;
    padding: 1rem;
    text-align:center;
    transition:transform .18s ease, box-shadow .18s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;

    &:hover {
      transform: translateY(-0.25rem);
    }

    h3 {
      font-size: 1.5rem;
    }

    .image-wrap {
      width: 100%;
    }
  }

  .muted {
    color: #8a8a8a;
    font-size: 0.85rem;
    line-height: 1.45;
  }

  /* 반응형 */
  @media (max-width:1000px){.grid{grid-template-columns:repeat(2,1fr)}}
  @media (max-width:560px){.grid{grid-template-columns:1fr}.title{font-size:28px}}
}
