/* Grid Wrapper */
.custom-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Responsive: Mobile 1 Spalte */
@media (max-width: 768px) {
  .custom-post-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Einzelnes Grid-Item */
.custom-post-grid .grid-item {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

/* Featured Image */
.custom-post-grid .post-thumb img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

/* Datum */
.custom-post-grid .post-date {
  color: var(--secondary);
  margin: 0;
}

/* Titel */
.custom-post-grid .post-title {
  margin: 0;
}

/* "Mehr lesen"-Link */
.custom-post-grid .read-more {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

.custom-post-grid .read-more span {
  position: relative;
}

/* Linie unter dem Text mit ::after */
.custom-post-grid .read-more span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Abstand unter dem Text */
  width: 100%;
  height: 2px; /* Linienstärke */
  background-color: var(--turquoise);
  transition: width 0.3s ease;
}

/* Hover: Linie wächst */
.custom-post-grid .read-more span:hover::after {
  width: 0;
}
