.npl-news-section {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0px, 880px) minmax(15px, 1fr) 240px;
  gap: 40px 0;
  margin: 0px 45px 90px 11%;
  max-width: 1185px;
}

.npl-news-title-and-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.npl-news-date button a {
  font-size: var(--eighteen);
  color: var(--7b);
  font-weight: var(--xl);
  font-family: var(--barlow);
}

.npl-news-date button img {
  width: var(--smButton);
  height: var(--smButton);
  object-fit: cover;
}

.npl-news-container {
  max-width: 740px;
  margin: 0 0 0 2.5%;
  /* background-color: var(--7a); */
  border: 1px solid var(--7a);
  padding: 22px;
  overflow-y: clip;
  grid-column: 1;
  height: 212px;
}

.npl-news-date button {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  opacity: 1;
}

.npl-news-date button:hover {
  opacity: 0.85;
}

.npl-news-content {
  /* width: 90%; */
  display: flex;
  flex-direction: column;
  /* gap: 15px; */
  height: 100%;
}

.npl-news-title {
  font-size: var(--fifteen);
  font-family: var(--barlow);
  font-weight: var(--normalWeight);
  line-height: var(--barlowHeight);
  text-transform: uppercase;
}

.npl-news-inside-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  height: 100%;
}

.npl-news-inside-content h2 {
  color: black;
  font-size: var(--twentyTwo);
  font-family: var(--libre);
  line-height: var(--libreHeight);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: clip;
}

@media screen and (max-width: 500px) {
  .npl-news-inside-content h2 {
    font-size: var(--fourteen);
  }
}

.npl-news-title-subtitle {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 1024px) {
  .npl-news-section {
    grid-template-columns: 1fr;
    width: 90%;
    max-width: 740px;
    margin: 0px auto;
  }

  .npl-news-line,
  .npl-read-npl-news-overflow,
  .npl-news-container:hover .npl-read-npl-news-overflow {
    display: none;
  }

  .npl-news-container {
    height: auto;
    margin: 0;
    max-width: 100%;
  }
}

.npl-news-items:hover .npl-news-dummy {
  transform: translateY(-110%);
  transition: 0.3s cubic-bezier(0.7, 0, 0.33, 1);
}

.npl-news-container:hover .npl-news-line {
  background-color: var(--df);
  animation: npl-news-Slide 0.3s ease forwards;
  cursor: pointer;
  /* animation-delay: 0.3s; */
}

.npl-news-container:hover .npl-read-npl-news-overflow {
  transform: translateY(0);
  opacity: 1;
  transition: opacity, transform 0.3s ease-in-out;
  transition-delay: 0.1s;
}

.npl-news-original.read-show {
  transform: translateY(0) !important;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.33, 1) !important;
}

/* date npl-news- */
.npl-news-date-container {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 5px;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .npl-news-_content h2 {
    align-items: start;
  }

  .npl-blog-glass-plate {
    height: auto;
  }
}

.ex {
  margin-top: 25px;
}

.npl-news-date {
  width: 100%;
  /* transition: 0.35s linear; */
  /* cursor: pointer; */
}

.npl-news-date p {
  font-size: var(--fifteen);
  color: black;
  font-family: var(--barlow);
  font-weight: var(--sm);
  line-height: var(--barlowHeight);
  text-transform: uppercase;
}

.npl-read-npl-news-overflow {
  font-size: 15px;
  position: absolute;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  bottom: -6px;
  overflow: clip;
  opacity: 0;
  transform: translateY(30px);
  color: var(--df);
  font-family: var(--libre);
  font-weight: var(--normalWeight);
  font-style: italic;
  font-size: var(--fifteen);
}

.npl-news-original {
  opacity: 1;
  transform: translateY(150%);
  transition: 0.3s cubic-bezier(0.7, 0, 0.33, 1);
}

.npl-read-npl-news-overflow:hover .npl-news-dummy {
  transform: translateY(-110%);
  transition: 0.3s cubic-bezier(0.7, 0, 0.33, 1);
}

@media screen and (max-width: 1024px) {
  .npl-news-original {
    opacity: 1;
    transform: translateY(0);
  }

  .npl-news-dummy {
    display: none;
  }
}

.npl-news-dummy {
  position: absolute;
  top: 0;
  transform: translateY(0px);
  transition: 0.3s cubic-bezier(0.7, 0, 0.33, 1);
}

.npl-news-line {
  height: 1px;
  width: 0;
  margin-top: 5px;
}

@keyframes npl-news-Slide {
  0% {
    width: 0;
  }

  100% {
    width: 95%;
  }
}

/* load */
/* load button */
.npl-news-load {
  width: fit-content;
  /* margin-top: 60px; */
  grid-column: 1;
}

.npl-news-load button {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.npl-news-load-content {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0.8;
}

.npl-news-load-content:hover {
  opacity: 1;
}

.npl-news-load-content p {
  font-size: var(--twentyFive);
  font-weight: var(--xl);
  font-family: var(--barlow);
  color: var(--gray2);
}

.npl-news-load-content div {
  width: var(--medButton);
  height: var(--medButton);
}

.npl-news-load-content div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.npl-news-intro {
  padding: 110px 1.8% 0px 13.2%;
}

.npl-news-intro h1 {
  font-size: 3.125rem;
  font-style: italic;
  font-weight: 500;
  color: #bea16d;
  font-family: "libre baskerville";
}

@media screen and (max-width: 1250px) {
  .npl-news-section,
  .npl-update-header-grid,
  .npl-blog-section {
    grid-template-columns: 1fr;
    max-width: 740px;
  }
}
