.new-bg {
  font-family: "Roboto";
}
.new-global {
  margin-top: 120px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  gap: 48px;
  flex-direction: column;
}
.new-header {
  align-items: end;
  justify-content: space-between;
}
.new-box {
  margin: 0;
}
.new-text {
  text-align: left;
}
.new-btn {
  display: flex;
  gap: 24px;
  height: 100%;
}
.new-left,
.new-right {
  border-radius: 70px !important;
  padding: 16px 16px;
  border: 1px solid #1570ef;
}
.new-left img {
  transform: rotate(180deg);
}
.new-left img,
.new-right img {
  width: 24px !important;
  height: 24px !important;
}
.new-left:hover,
.new-right:hover {
  background-color: #1570ef;
}
.new-left:hover img,
.new-right:hover img {
  filter: invert(1) saturate(100%) brightness(1000%) contrast(1000%);
}

.new-content {
  display: flex;
  gap: 18px;
}

.new-post,
.new-list {
  width: 50%;
}
.new-post {
  display: flex;
  flex-direction: column;
  border: 1px solid #eaecf0;
  gap: 24px;
  border-radius: 20px !important;
  padding: 12px;
  cursor: pointer;
  background-color: #fff;
}
.new-post, .new-item{
	cursor: pointer;
}
.new-post:hover .new-post-title , .new-item:hover .new-item-content-title{
	 color: #1570ef !important;
}


.new-post-img img {
  width: 100%;
  border-radius: 18px !important;
  height: 318px !important;
  object-fit: cover;
  backdrop-filter: blur(40px);
  box-shadow: 0px 6.4px 12.8px -3.2px #00000014;
}

.new-item:hover img,
.new-post:hover img {
  transform: scale(1.15);
}

.new-item img,
.new-post img {
  transition: transform 1s ease;
}

.new-item-img,
.new-post-img{
	overflow: hidden;
	border-radius: 18px !important;
}

.new-date {
  display: flex;
  gap: 8px;
  align-items: center;
}
.new-date-text,
.new-date-icon i {
  font-size: var(--text-size-1);
  color: #667085;
}
.new-post-title {
  font-weight: 500;
  font-size: var(--text-size-4);
  display: block;
  color: #000 !important;
}
.new-item-content,
.new-post-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.new-post-desc {
  font-size: 16px;
}
.new-list {
  gap: 18px;
  flex-direction: column;
}
.new-item {
  display: flex;
  background-color: #fff;
  border: 1px solid #eaecf0;
  gap: 18px;
  padding: 12px;
  border-radius: 20px;
}

.new-item-img {
  border-radius: 18px !important;
  height: 100% !important;
  backdrop-filter: blur(40px);
  box-shadow: 0px 6.4px 12.8px -3.2px #00000014;
}

.new-item-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 18px !important;
}

.new-item-content-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.new-item-content-title {
  font-weight: 500;
  font-size: var(--text-size-2);
  display: block;
  color: #000 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.new-item-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #667085;
  margin-bottom: 12px;
}


@media (min-width: 1440px) {
  .new-item-img {
    width: 263px !important;
  }
  .new-item-content {
    width: calc(100% - 263px - 16px) !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .new-btn {
    justify-content: center;
  }
  .new-content {
    flex-direction: column;
  }

  .new-header {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .new-header .base-title {
    width: 100%;
    align-items: center;
  }
  .new-post,
  .new-list {
    width: 100%;
  }

  .new-item-img {
    width: 150px !important;
    height: 150px !important;
  }
  .new-item-content {
    width: calc(100% - 150px - 16px) !important;
  }
  .new-post-img img {
    height: 300px !important;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .new-item-img {
    width: 150px !important;
  }
  .new-item-content {
    width: calc(100% - 150px - 16px);
  }
}
@media (min-width: 1025px) and (max-width: 1300px) {
  .new-item-img {
    width: 150px;
  }
  .new-item-content {
    width: calc(100% - 150px - 16px);
  }
}
@media (max-width: 768px) {
  .new-global {
    padding: 33px 0;
    margin: 0;
    gap: 32px;
  }
  .new-header {
    width: 100% !important;
    flex-direction: column;
    align-items: center;
  }
  .new-box {
    margin: 0 auto;
  }
  .new-btn {
    justify-content: center;
  }
  .new-content {
    flex-direction: column;
  }
  .new-post,
  .new-list {
    width: 100%;
  }
  .new-post {
    gap: 18px;
  }
  .new-post-img img {
    height: 300px !important;
  }
  .new-date-text {
    font-size: 12px;
  }
  .new-post-content {
    gap: 14px;
  }
  .new-post-title {
    font-size: var(--text-size-2);
  }
  .new-post-desc {
    font-size: var(--text-size-1);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .new-item {
    gap: 12px;
  }
  .new-item-img {
    height: 113px !important;
    width: 113px !important;
  }
  .new-item-content {
    gap: 12px;
    width: calc(100% - 113px - 12px);
  }
  .new-item-content-title {
    font-size: 16px;
  }

  .new-item-desc {
    font-size: var(--text-size-1);
    margin: 0;
  }
}
@media (max-width: 576px){
    .new-post-img img {
    height: 179px;
  }
}