.news {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  display: grid;
  background-color: #f6f1ed;
  justify-items: center;
  /* overflow-x: hidden; */
}

.news-card-container {
  display: grid;
  padding-top: 5rem;
  padding-right: 20px;
  padding-left: 20px;

  grid-template-columns: 1fr 1fr;
  grid-column: 1/5;
  grid-row: 1;
  place-items: start;
  gap: 10rem;
}

.news-card {
  /* display: grid; */
  height: fit-content;
  width: 100%;
}
.news-header-title {
  position: relative;
  top: -50px;
}

.news-header-title h2 {
  font-family: stolzl, sans-serif;
  font-size: 48px;
}

.news-card-wrapper {
  position: relative;
  right: -52px;
  top: -34px;
  /* padding-right: 2rem; */
}

.news-card-desc {
  font-family: stolzl, sans-serif;
  display: flex;
  width: 100%;
  position: relative;
  min-height: 20%;
  background: #000000;
  padding: 5px;

  color: #ffffff;
}

.news-arrow {
  padding-top: 28px;
}

.news-card-title {
  width: 100%;
  padding: 26px;
  font-size: clamp(1rem, 0.5536rem + 0.8929vw, 1.625rem);
  line-height: 35px;
  letter-spacing: 1.2px;
  font-weight: 600;
  cursor: pointer;
}
.news-card-title a {
  font-size: 26px;
}
.news-card img {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.news-card * {
  grid-column: 1;
  grid-row: 1;
}

.news-card a {
  height: fit-content;
  place-self: center center;
  text-decoration: none;
  color: #ffffff;
}

.news-card-square {
  grid-column: 1;
  grid-row: 1;
  width: 40px;
  height: 40px;
  background-color: var(--white);
}

.square-top-right {
  place-self: start end;
}

.square-bottom-left {
  place-self: end start;
}

.news-card-stroke {
  border: 1px solid white;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  place-self: center;
  margin: 2rem;
}
.news-grid-top {
  display: none;
}
.news-grid-bottom {
  display: none;
}

.news-card .gradient-button {
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #ffe53b 16.98%, #ff2525 82.96%);
  padding: 25px;
  transition: color 0.2s;
  letter-spacing: 1px;
  width: 244px;
  margin-right: 40px;
  margin-top: 2rem;
}
.news-card .gradient-button:hover {
  color: #000000;
}

.news-card .gradient-button a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.news-card {
  max-width: 539px;
}

.card-01 {
  margin-top: 48px;
}
.card-02 {
  margin-top: 330px;
}

@media screen and (max-width: 1320px) {
  .news-card-container {
    gap: 5rem;
  }
}

@media screen and (max-width: 1260px) {
  .news {
    aspect-ratio: unset;
    /* max-height: 2000px; */
  }
  .news-card-container {
    grid-template-columns: 1fr;
    gap: 10rem;
    /* padding-top: 10rem; */
  }
  .card-01 {
    margin-top: revert;
  }
  /* .card-02 {
    margin-top: 0;
  } */
}
@media screen and (max-width: 660px) {
  .news-card-container {
    grid-template-columns: 1fr;
    gap: 26rem;
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
  .news-card-title {
    padding: 18px;
    line-height: 29px;
  }
  .news-card-wrapper {
    position: relative;
    right: 0;
    top: 0;
    padding-right: 0;
  }
  .news-card img {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .card-02 {
    margin-top: 0;
  }
}

@media screen and (max-width: 599px) {
  .news-card-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1475px) {
  .news-grid-top {
    display: block;
    grid-column: 1/5;
    grid-row: 1;
    place-self: start end;
  }
  .news-grid-top #filled {
  }
}

@media screen and (min-width: 1475px) {
  .news-grid-bottom {
    display: block;
    grid-column: 1/5;
    grid-row: 1;
    place-self: end end;
  }
}
