.feature-news-card {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Optional: set a maximum width */
  margin: 0 auto;
  overflow: hidden;
  height:550px;
}

.feature-news-card img {
  width: 100%;
  height: 550px !important;
  object-fit: cover;

}


.feature-news-card .content {
  position: absolute;
  top: 50%;
  right: 72px; 
  transform: translateY(-50%);
  background-color: #ffffff;
  padding: 24px;
  width: 350px;
  height: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.feature-news-card .content h3 {
  margin-top: 0;
}

.feature-news-card .content p {
  margin: 16px 0;
}

.feature-news-card .content a {
  position: absolute;
  bottom:24px;
  left:24px;
}

@media screen and (max-width: 400px) {
  .feature-news-card .content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust width as needed */
    height: auto; /* Adjust height as needed */
    padding: 16px;
  }
}