.blog-title {
  padding: 0 16rem;
}

.article-container {
  display: flex;
/*   padding: 2.5rem; */
  width: 100%;
  gap: 10px;
  padding: 15px 16rem;
}

.article-left {
  display: flex;
  flex-direction: column;
/*   width: 65%; orig*/
  width: 60%;
}

.article-right {
/*   width: 35%; */
/*   display: flex; orig*/
  flex-direction: column;
  margin-left: 12px;
  gap: 10px;
}

.box {
  display: flex;
  flex-direction: column;
  flex: 1; /* Allows boxes to take up equal space */
}

.left-img {
  padding: 0;
}

.left-img img {
  width: 100%;
/*   flex: 1; */
}

.left-title {
/*   padding: 1rem; */
/*   border: 1px solid black; */
/*   background: #47e0349c; */
/*   background: linear-gradient(90deg, #7ef1b3, #40de26); */
}

.left-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.sub-info {
  display: flex;
  padding: 3px;
}

/* Added styles for right images */
.article-right img {
  {#width: 100%;
  height: auto;#}
  flex: 1;
  height: 10rem;
  margin-bottom: .5rem;
  max-height: 100%;
}

/* .article-right .title {
  border-bottom: 2px solid linear-gradient(90deg, #7ef1b3, #40de26);
  margin-bottom: 1rem;
  padding-bottom: .25rem;
} */
.article-right .title {
    position: relative; 
    margin-bottom: 1rem;
    padding-bottom: 10px; 
}

.article-right .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px; 
  background: linear-gradient(90deg, #7ef1b3, #40de26);
}

.article-right .see-more button,
.article-container .see-more button {
  background: linear-gradient(90deg, #7ef1b3, #40de26);
  border: #ffdead !important;
  border-radius: 50px !important;
  color: #000 !important;
  margin-top: 10px !important;
}

/* Media query for small screens */
@media only screen and (max-width: 480px) {
  .article-container {
    flex-direction: column; 
    padding: 15px !important; 
  }

  .article-left,
  .article-right {
    width: 100%; 
    margin-left: 0; 
  }

  .article-right {
    margin-top: 15px; 
  }
  
  .article-right img {
    height: 23rem;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .article-container {
    padding: 15px 3rem;
  }
  
  .blog-title {
    padding: 0 3rem;
  }
}

@media only screen and (max-width: 1024px) {
  .article-container {
    flex-direction: column; 
    padding: 15px !important; 
    text-align: center;
  }
  
  .article-left,
  .article-right {
    width: 100%; 
    margin-left: 0; 
  }
  
  .article-right img {
    height: 23rem;
  }
}

@media only screen (max-width: 768px) {
  .article-container {
    flex-direction: column; 
/*     padding: 15px;  */
    padding: 15px 3rem !important;
  }

  .article-left,
  .article-right {
    width: 100%; 
    margin-left: 0; 
  }

  .article-right {
    margin-top: 15px; 
  }
}

.article-container a {
  text-decoration: none;
  color: black;
}

.article-container a:hover {
  text-decoration: underline;
}

