.releases {
  padding: 50px 0;
  background-image: url("/assets/releases-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.realeases-header {
  color: white;
  padding: 30px 0;
}
.realeases-container {
  width: 80%;
  margin: auto;
}
.realeases-cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.realeases-card {
  width: 100%;
  height: 350px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--blue-color);
  border: 1px solid white;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
}
.realeases-card:hover {
  background-color: var(--orange-color);
  border: 1px solid var(--orange-color);
  color: white;
}
.realeases-card:hover a {
  color: white;
}
.realeases-card span {
  color: white;
}
.realeases-card h3 {
  margin-top: 0px;
  font-size: 25px;
  font-family: var(--satoshi-medium);
  color: white;
  margin-top: 20px;
}
.realeases-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--blue-color);
  color: white;
  gap: 15px;
}
.realeases-card-first {
  background-color: var(--orange-color);
  background-color: transparent;
  border: 1px solid var(--orange-color);
  border: 1px solid white;

  color: white;
}
.realeases-card-first a {
  color: white;
}
.releases-action {
  display: none;
}
@media (min-width: 2000px) {
  .realeases-container {
    width: 60%;
  }
}
@media (max-width: 1250px) {
  .realeases-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 840px) {
  .realeases-cards {
    grid-template-columns: 1fr 1fr;
  }
  .realeases-card h3 {
    font-size: 23px;
  }
}
@media (max-width: 700px) {
  .realeases-cards {
    grid-template-columns: 1fr;
  }
  .realeases-card {
    height: 300px;
  }
  .realeases-card-content span {
    font-size: 13px;
  }
  .realeases-card h3 {
    font-size: 23px;
  }
  /* .realeases-cards > :nth-child(n + 4):nth-child(-n + 6) {
    display: none;
  } */
  .card-hide {
    display: none;
  }
  .releases-action {
    display: block;
    width: 80%;
    margin: auto;
    text-align: right;
    padding: 20px 0 0;
    color: white;
  }
  .releases-action span {
    cursor: pointer;
  }
}
