.foundation-news {
  padding-bottom: 120px;
}

.foundation-news__header {
  position: relative;

  img {
    width: 100%;
    height: auto;
  }
}

.foundation-news__back-button {
  margin: 0 0 40px 40px;
  padding: 13px 20px;
  background: #000000;
  width: fit-content;
  position: absolute;
  top: 120px;

  a {
    color: #ffffff;
  }

  img {
    margin-right: 8px;
    width: unset;
    height: unset;
  }
}

.foundation-news__container {
  position: relative;
}

.foundation-news__card {
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foundation-news__share,
.foundation-news__card {
  background: #008E6D;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  color: #FFFFFF;
}

.foundation-news__share-inner {
  display: flex;
  column-gap: 16px;
  align-items: center;
}

.foundation-news__share-list {
  display: flex;
  column-gap: 16px;

  a {
    display: flex;
    align-items: center;
  }
}

.foundation-news__share-list img {
  width: 100%;
  height: 100%;
  max-width: 20px;
  max-height: 20px;
  filter: brightness(0) invert(1);
}

/* spacer giữ chỗ */
.foundation-news__spacer {
  height: 60px;
}

.foundation-news__title {
  color: #FFFFFF;
}

.foundation-news__location-icon {
  filter: brightness(0) invert(1);
  width: 16px;
  height: 16px;
}

.foundation-news__location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.foundation-news__tag {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid #FFFFFF;
  border-radius: 6px;

  display: flex;
  align-items: center;
  gap: 5px;
}

.foundation-news__tag-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.foundation-news__body {
  padding-bottom: 60px;
}

.foundation-news__date {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0;
  font-family: Arada-Headline-Regular;
}

.foundation-news__card,
.foundation-news__share {
  background: var(--tag-color);
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .foundation-news {
    padding-bottom: 80px;
  }

  .foundation-news__share {
    padding: 30px;
  }

  .foundation-news__container {
    width: 100%;
  }

  .foundation-news__card {
    padding: 32px 20px 40px;
    transform: translateY(-40px)
  }

  .foundation-news__back-button {
    margin: 0 0 0 12px;

    img {
      margin: 0;
    }

    span {
      display: none;
    }
  }

  .foundation-news__header {
    img {
      min-height: 314px;
    }
  }

  .foundation-news__back-button {
    img {
      min-height: unset;
    }
  }
}