.poke-overview-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 1280px;
  margin-top: 80px;
}

.poke-overview-card-main {
  width: 320px;
  height: 320px;
  background-color: var(--green);
  color: white;
}
.poke-overview-card-main:hover {
  cursor: pointer;
  transition: 120ms ease-in-out;
  filter: brightness(120%);
}
.poke-overview-card-main:hover img {
  transition: 120ms ease-in-out;
  transform: scale(1.1);
}

.poke-overview-card-body {
  display: flex;
  justify-content: space-between;
}
.poke-overview-card-body-left {
  padding-top: 32px;
}
.poke-overview-card-body-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.poke-overview-card-body-right h3 {
  color: rgba(80, 80, 80, 0.8);
}

.poke-overview-card-img {
}

.poke-overview-card-img img {
  height: 200px;
  object-fit: cover;
  position: absolute;
  right: 0;
  bottom: 0;
}

.btn-section-body-main{
  padding-top: 16px;
}