.hashtag-button {
    display: inline-block;
    background-color: white;
    color: #f59b10;
    padding: 4px 10px;
    margin: 5px 5px 0 0;
    border: 2px solid #f59b10;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.2s, color 0.2s;
}

.hashtag-button:hover {
    background-color: #f59b10;
    color: white;
    text-decoration: none;
}
/* Kachel-Wrapper */
.pagetag {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  background: #d9e4e9;
  padding: 1rem;
  border-radius: 8px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 1rem auto;
  box-sizing: border-box;
  align-items: flex-start;
  position: relative;
}

/* Überschrift */
.pagetag-title {
  font-size: 1.8rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

/* Bild links */
.pagetag-image-wrapper {
  flex: 0 0 auto;
  width: 300px;
}

.pagetag-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Text + Button gemeinsam */
.pagetag-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center; /* Button vertikal mittig am Text */
  gap: 1rem;
  flex-wrap: wrap;
}

/* Text */
.pagetag-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Runder Button (wie gehabt) */
.pagetag-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #f59b10;
  border: 2px solid transparent;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pagetag-icon-button:hover {
  background-color: #fff;
  border-color: #f59b10;
}

.pagetag-icon-button:hover .pagetag-icon {
  fill: #f59b10;
}

.pagetag-icon {
  transition: fill 0.3s ease;
  fill: #fff;
}

/* Mobile Darstellung */
@media (max-width: 700px) {
  .pagetag {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pagetag-image-wrapper,
  .pagetag-content {
    width: 100%;
  }

  .pagetag-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
  }

  .pagetag-text {
    text-align: left;
  }
}
