.hole-card {
  display: flex;
  gap: 40px;
  background: transparent;
}
.hole-card .image {
  height: 272px;
  min-width: 260px;
  max-width: 25vw;
  border-radius: 10px 10px;
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.15);
}
.hole-card .image h3 {
  display: none;
  color: var(--Go-Green, #00e677);
}
.hole-card .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 480px;
  width: fit-content;
  color: var(--Go-Green, #00e677);
}
.hole-card .content h3 {
  padding-bottom: 40px;
  border-bottom: 5px solid var(--Go-Green, #00e677);
  margin: 0;
}
.hole-card .content .info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hole-card .content .info .metrics {
  display: flex;
  justify-content: space-between;
}
.hole-card .content .info .metrics .divider {
  width: 5px;
  height: 100%;
  background-color: var(--Go-Green, #00e677);
}
.hole-card .content .info .metrics span {
  color: var(--Go-Green, #00e677);
  font-family: Libre Franklin;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.3px;
}
.hole-card .content .info .metrics span b {
  color: var(--Go-Green, #00e677);
  font-family: Libre Franklin;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
}
.hole-card .content .info .writeup p {
  color: var(--White, #fff);
  font-family: Libre Franklin;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.2px;
}

@media (max-width: 1200px) {
  .hole-card .content {
    gap: 32px;
  }
  .hole-card .content h3 {
    padding-bottom: 32px;
  }
  .hole-card .content .info {
    gap: 32px;
  }
  .hole-card .content .info .metrics span {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
  .hole-card .content .info .metrics span b {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
  .hole-card .content .info .writeup p {
    font-size: 16px;
    letter-spacing: -0.16px;
  }
}
@media (max-width: 1024px) {
  .hole-card .content {
    gap: 24px;
    min-width: unset;
  }
  .hole-card .content h3 {
    position: relative;
    padding-bottom: 24px;
  }
  .hole-card .content .info {
    gap: 24px;
  }
  .hole-card .content .info .metrics {
    flex-direction: column;
    gap: 12px;
  }
  .hole-card .content .info .metrics .divider {
    width: 100%;
    height: 5px;
  }
}
@media (max-width: 768px) {
  .hole-card {
    flex-direction: column;
  }
  .hole-card .image {
    position: relative;
    width: 100%;
    max-width: unset;
  }
  .hole-card .image h3 {
    display: block;
    position: absolute;
    top: 0;
    left: 24px;
    height: 272px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin: 0;
    text-align: center;
  }
  .hole-card .content {
    gap: 24px;
    min-width: unset;
  }
  .hole-card .content h3 {
    display: none;
  }
  .hole-card .content .info {
    gap: 24px;
  }
  .hole-card .content .info .metrics {
    flex-direction: column;
    gap: 12px;
  }
  .hole-card .content .info .metrics .divider {
    width: 100%;
    height: 5px;
  }
}

/*# sourceMappingURL=holeCard.css.map */
