/* SECTION NEWS */
.section__new {
  padding: 70px 0px;
  background: var(--lighter-grey-color);
}

@media screen and (max-width: 800px) {
  .section__new {
    padding: 50px 0px;
  }
}

.section__new .container__layout {
  padding: 0 70px;
}

@media screen and (max-width: 800px) {
  .section__new .container__layout {
    padding: 0 20px;
  }
}

.section__new .new__title {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

@media screen and (max-width: 800px) {
  .section__new .new__title {
    flex-direction: column;
  }
}

.section__new .new__title>h3 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  color: var(--dark-black-color);
}

@media screen and (max-width: 800px) {
  .section__new .new__title>h3 {
    font-size: 40px;
    line-height: 50px;
    align-self: flex-start;
  }
}

.section__new .new__title .see__all--new {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section__new .new__title .see__all--new>span {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--primary-color);
  position: relative;
}

.post__list {
  display: flex;
  width: 100%;
  gap: 24px;
  flex-wrap: wrap;
}

.post__list .post__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 16px);
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  min-height: 460px;
  cursor: pointer;
  transition: all 0.4s linear;
  border: 2px solid transparent;

  .card_comapny_name {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
  }
}

@media screen and (max-width: 1024px) {
  .post__list .post__item {
    width: calc(50% - 12px);
  }
}

@media screen and (max-width: 500px) {
  .post__list .post__item {
    width: 100%;
  }
}

.post__list .post__item:hover {
  border: 2px solid var(--primary-color);
}

.post__list .post__item.loadingAnisAll:hover {
  border: 2px solid transparent;
}

.post__item .post__img {
  width: 100%;
  max-height: 160px;
  height: 160px;
  display: block;
  overflow: hidden;
  position: relative;
}

.post__item .post__img img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post__item .post__img:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.post__item .post__img>svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.post__item .post__img:hover>svg>circle {
  transition: fill 0.3s ease;
}

.post__item .post__img:hover>svg>circle {
  fill: var(--soft-red-color);
}

.post__item .post__content {
  padding: 24px;
  background-color: var(--white-color);
  width: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post__content .contet__slug {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.post__content .contet__slug>p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: capitalize;
  white-space: nowrap;
}

.post__content .contet__slug>span {
  height: 4px;
  width: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--primary-color);
}

.post__content .content__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-inline-box;
  width: 100%;
  margin-bottom: 4px;
  color: var(--dark-black-color);
}

.one .post__content .content__title {
  max-height: 32px;
  -webkit-line-clamp: 1;
}

.two .post__content .content__title {
  max-height: 64px;
  -webkit-line-clamp: 2;
}

.three .post__content .content__title {
  max-height: 96px;
  -webkit-line-clamp: 3;
}

.post__content .content__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  min-height: 96px;
  max-height: 144px;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-inline-box;
  margin-bottom: 12px;
  color: var(--light-black-color);
}

.one .post__content .content__desc {
  max-height: 144px;
  -webkit-line-clamp: 6;
}

.two .post__content .content__desc {
  max-height: 120px;
  -webkit-line-clamp: 5;
}

.three .post__content .content__desc {
  max-height: 96px;
  -webkit-line-clamp: 4;
}

.post__content .content__learn--more {
  transition: border 0.3s ease;
  cursor: pointer;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
  align-items: flex-end;
}

.post__content .content__time {
  text-align: end;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--mid-light-grey-color);
  display: block;
  margin-bottom: 12px;
  margin-top: auto;
}

.post__content .content__time.video {
  margin-top: 32px;
}

.post__content .content__learn--more svg,
.section__new .new__title .see__all--new svg {
  object-fit: cover;
  position: relative;
  transition: all 0.4s ease-out;
}

.post__item .post__content .content__learn--more svg {
  width: 15px;
  height: 22px;
}

.post__item .post__content .content__learn--more {
  transition: all 0.4s ease-out;
}

.post__item:hover .post__content .content__learn--more svg {
  transform: translateX(12px);
}

.post__item .post__content .content__learn--more>span {
  font-size: 16px;
  line-height: 22px;
  color: var(--primary-color)
}