  @font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  }

  * {
    font-family: 'GmarketSansMedium', sans-serif !important;
  }

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "GmarketSansMedium", sans-serif;
  --font-serif: "GmarketSansMedium", serif;
}

* {
  box-sizing: border-box;
}
.box-card h1,
.box-card h2,
.box-card h3 {
  margin: 0;
  padding: 0;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.box-page-content {
  display: grid;
  grid-gap: 1em;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 100px;
  font-family: var(--font-sans);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (min-width: 600px) {
  .box-page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 800px) {
  .box-page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.box-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 90%;
  margin: 0 auto; /* 수평 가운데 정렬 */
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
  .box-card {
    height: 350px;
  }
}

.box-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 30% center; 
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.box-card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.009) 11.7%,
    rgba(0, 0, 0, 0.034) 22.1%,
    rgba(0, 0, 0, 0.072) 31.2%,
    rgba(0, 0, 0, 0.123) 39.4%,
    rgba(0, 0, 0, 0.182) 46.6%,
    rgba(0, 0, 0, 0.249) 53.1%,
    rgba(0, 0, 0, 0.32) 58.9%,
    rgba(0, 0, 0, 0.394) 64.3%,
    rgba(0, 0, 0, 0.468) 69.3%,
    rgba(0, 0, 0, 0.54) 74.1%,
    rgba(0, 0, 0, 0.607) 78.8%,
    rgba(0, 0, 0, 0.668) 83.6%,
    rgba(0, 0, 0, 0.721) 88.7%,
    rgba(0, 0, 0, 0.762) 94.1%,
    rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.box-card:nth-child(1):before {
  background-image: url(../img/4card1.jpg);
}
.box-card:nth-child(2):before {
  background-image: url(../img/4card2.jpg);
}
.box-card:nth-child(3):before {
  background-image: url(../img/4card3.jpg);
}
.box-card:nth-child(4):before {
  background-image: url(../img/4card4.jpg);
}

.box-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.box-content > * + * {
  margin-top: 1rem;
}

.box-title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.box-copy {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.box-btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
}

.box-btn:hover {
  background-color: #0d0d0d;
}

.box-btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .box-card:after {
    transform: translateY(0);
  }

  .box-content {
    transform: translateY(calc(100% - 4.5rem));
  }

  .box-content > *:not(.box-title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .box-card:hover,
  .box-card:focus-within {
    align-items: center;
  }

  .box-card:hover:before,
  .box-card:focus-within:before {
    transform: translateY(-4%);
  }

  .box-card:hover:after,
  .box-card:focus-within:after {
    transform: translateY(-50%);
  }

  .box-card:hover .box-content,
  .box-card:focus-within .box-content {
    transform: translateY(0);
  }

  .box-card:hover .box-content > *:not(.box-title),
  .box-card:focus-within .box-content > *:not(.box-title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .box-card:focus-within:before,
  .box-card:focus-within:after,
  .box-card:focus-within .box-content,
  .box-card:focus-within .box-content > *:not(.box-title) {
    transition-duration: 0s;
  }
}
