/* Banner */
.diocese-banner .banner-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.diocese-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 40px;
  /*background: rgba(0,0,0,0.5);*/
	background: white;
  padding: 16px 32px;
  border-radius: 6px;
}

.banner-text h1 {
  color: #0d6efd;
  font-size: 2.4rem;
  margin: 0;
}

/* Grid */
.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

/* News Card */
.news-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.news-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-meta {
  padding: 16px;
}

.news-date {
  font-size: 0.85rem;
  color: #005baa;
  display: block;
  margin-bottom: 8px;
}

.news-title {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
}

.news-excerpt {
  font-size: 0.95rem;
  color: #666;
}

/* Pagination */
.news-pagination {
  margin-top: 40px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Read More Hover Animation */
/* Read More Bar */
.news-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Read More Bar */
.read-more-bar {
  position: relative;
  height: 60px;
  background-color: transparent;
  overflow: hidden;
  margin-top: auto;
}

.read-more-bar span {
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #f7c600;
  color: #000;
  font-size: 1.0 rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.4s ease;
}

.news-item:hover .read-more-bar span {
  left: 0;
}

.news-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news-item {
  min-height: 400px;
}

.news-thumb {
  height: 250px; /* or 220px, depending on your layout */
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.diocese-news-grid.container {
  padding-left: 40px;
  padding-right: 40px;
}