
  
  .heroO {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 8%;
  background: #efe7db;
}
.heroO .leftT { flex: 1 }
.heroO h1 {
  font-size: 3.4REM;
        margin-top: 6%;
  font-weight: bold !important;
  transition: transform 0.3s ease;
}

.ctaA {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  font-size: 1.05rem;
  background: #3f3f3a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}
.ctaA:hover {
  transform: scale(1.02);
  background: #2c2c28;
}
.heroO img {
  width: 750px;
  max-width: 55%;
  border-radius: 10px;
          margin-top: 6%;
  object-fit: cover;
  transition: transform 0.4s ease;
}


  
  










    .news-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 84%;
  margin: 0 auto;
  margin-top: 6%;

}


@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.news-article {
  background: #efe7db;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.news-article:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.39);
  cursor: pointer;
  border: solid 1PX rgba(255, 255, 255, 0.164);
}


.news-article:nth-child(1) { animation-delay: 0.1s; }
.news-article:nth-child(2) { animation-delay: 0.3s; }
.news-article:nth-child(3) { animation-delay: 0.5s; }


.news-article .content {
  position: relative;
}

.news-article h3 {
  margin-bottom: 1rem;
  color: #3f3f3a;
  font-size: 30PX;
  transition: transform 0.3s ease, opacity 0.3s ease;
}




.news-article p {
  font-size: 1.2rem;
  color: #3f3f3ac4;
  transition: transform 0.3s ease;
}





.news-article .image-wrapper {
  display: flex;
  gap: 1rem;

  justify-content: flex-start;


}

.news-article .image-wrapper img {
  width: 650px;
  height: 450px;
    border-radius: 12PX !important;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.5s ease;
}


.news-article .image-wrapper img:hover {
  transform: scale(1.02);
}




@keyframes fadeInTimestamp {
  from {opacity: 0;}
  to {opacity: 1;}
}

.timestamp {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background-color: #2c2c2c;
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 5px;
  animation: fadeInTimestamp 1s ease forwards;
  opacity: 0;
  animation-delay: 0.8s;
}







@media (max-width: 768px) {
  .news-section {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 25% !important;
  }

  .news-article {
   padding: 1rem 1rem 2.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }

  .news-article h3 {
    font-size: 24px;
    text-align: center;
  }

  .news-article p {
    font-size: 1rem;
    text-align: center;
  }

  .news-article .image-wrapper {
    flex-direction: column;  
    justify-content: center; 
    gap: 1rem;               
  }

  .news-article .image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    object-fit: contain;
  }

.timestamp {
  bottom: -2rem;  
  right: 0.5rem;
  top: auto;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
}

}



.pagination-container {
  margin-top: 40px;
  text-align: center;
}

.pagination-btn {
  margin: 0 5px;
  padding: 12px 20px;
  border: none;
  background-color: #3f3f3a;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.pagination-btn:hover {
  background-color: #e2ddd6d0;
  color: rgb(0, 0, 0);
  transform: scale(1.05);
}

.pagination-btn.active {
  background-color: #efe7db;
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.pagination-btn:disabled {
  background-color: #f1f0ef;
  color: #666;
  cursor: not-allowed;
}
