/* CSS for News Page */
.featured-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62%;
  overflow: hidden;
}

.featured-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This prevents stretching */
  object-position: center;
}

.news-short-summary-box {
  border: 2px dashed #6c757e;
}

.news-summary-box {
  border-top: 1px solid #b3b3b3;
}

@media (max-width: 768px) {
  body {
      background: #FFF;
  }
  h1.main-title {
    margin-top: -5px;
    margin-bottom: 14px !important;
  }
  .featured-image-wrapper {
    padding-bottom: 70%;
    margin-bottom: 1rem;
  }
  .visit-site-btn-sm {
    text-align: center;
  }
  .visit-site-btn-sm .btn {
    width: 100%;
  }
  .news-summary-box {
    border-top: none;
    padding-top: 0 !important
  }
}