@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  background-color: #000000;
  color: #ffffff;
  padding-top: 50px;
}

h1 {
  text-transform: uppercase;
}

.span1 {
  font-weight: 400;
}

main {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  width: 100%;
}

/* News Hero Section (Header) */
.news-hero {
  width: 100%;
  background-color: #000000;
  padding: 80px 50px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-hero__container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  position: relative;
}

.news-hero__title {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-hero__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-hero__meta {
  font-size: 14px;
  font-weight: 400;
  color: #b3b3b3;
  text-align: center;
  margin: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-hero__meta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-hero__share {
  position: absolute;
  bottom: -55px;
  left: 95%;
  margin-top: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.6s ease, opacity 0.6s ease;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.news-hero__share.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.news-hero__share:hover {
  background-color: #f0f0f0;
  transform: translateX(-50%) translateY(0) scale(1.1);
}

.news-hero__share i {
  font-size: 25px;
  color: #ffffff;
}

/* News Content Section */
.news-content {
  width: 100%;
  background-color: #ffffff;
  padding: 50px 50px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-content__container {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-content__image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.news-content__image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-content__heading {
  font-size: clamp(24px, 3vw, 25px);
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-content__heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-content__paragraph {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-content__paragraph.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-content__quote {
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
  padding: 25px 30px;
  margin: 20px 0;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-content__quote.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-content__quote-text {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}

.news-content__quote-author {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
}

/* More Articles Section */
.more-articles {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-articles__container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.more-articles__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin: 0;
}

.more-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.more-articles__card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.more-articles__card:hover {
  transform: translateY(-5px);
}

.more-articles__image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e0e0e0;
  border-radius: 5px;
  margin-bottom: 15px;
}

.more-articles__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.more-articles__date {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 8px;
}

  .more-articles__title-text {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

.more-articles__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.more-articles__link:hover {
  color: #666666;
}

.more-articles__link-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.more-articles__link:hover .more-articles__link-icon {
  transform: translateX(5px);
}

/* Tablet Responsive Styles */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .news-hero {
    padding: 60px 35px 50px;
  }

  .news-hero__container {
    gap: 18px;
  }

  .news-hero__share {
    width: 45px;
    height: 45px;
    bottom: -25px;
  }

  .news-hero__share i {
    font-size: 18px;
  }

  .news-content {
    padding: 80px 35px 60px;
  }

  .news-content__container {
    gap: 35px;
  }

  .more-articles {
    padding: 60px 35px;
  }

  .more-articles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .more-articles__image-wrapper {
    height: 180px;
  }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 767px) {
  .news-hero {
    padding: 50px 25px 40px;
  }

  .news-hero__container {
    gap: 15px;
  }

  .news-hero__meta {
    font-size: 14px;
  }

  .news-hero__share {
    width: 40px;
    height: 40px;
    bottom: -20px;
  }

  .news-hero__share i {
    font-size: 14px;
  }

  .news-content {
    padding: 60px 25px 50px;
  }

  .news-content__container {
    gap: 30px;
  }

  .news-content__paragraph {
    font-size: 14px;
  }

  .news-content__quote {
    padding: 20px 25px;
  }

  .news-content__quote-text {
    font-size: 14px;
  }

  .more-articles {
    padding: 50px 25px;
  }

  .more-articles__container {
    gap: 30px;
  }

  .more-articles__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .more-articles__image-wrapper {
    height: 200px;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  .news-hero {
    padding: 40px 20px 35px;
  }

  .news-hero__share {
    width: 35px;
    height: 35px;
    bottom: -18px;
  }

  .news-hero__share i {
    font-size: 14px;
  }

  .news-content {
    padding: 50px 25px 40px;
  }

  .news-content__container {
    gap: 25px;
  }

  .news-content__paragraph {
    font-size: 14px;
  }

  .more-articles {
    padding: 40px 25px;
  }

  .more-articles__grid {
    gap: 20px;
  }
}
