/**
 * Butz Magazin Tag Links
 * Styles match the filter-button from magazin-overview.
 */

.butz-magazin-tag-links-widget {
  max-width: 100%;
}

.butz-magazin-tag-links-header {
  font-size: 24px;
  font-weight: 400;
  color: #082808;
  margin: 0 0 50px 0;
  padding: 0;
  font-family: "Manrope", Sans-serif;
}

.butz-magazin-tag-links-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

/* Tag link - same look as .filter-button in magazin-overview */
.butz-magazin-tag-link {
  cursor: pointer;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(18, 34, 59, 0.19);
  padding: 0 24px;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Manrope", Sans-serif;
  background-color: #ffffff;
  color: #082808;
  text-decoration: none;
  box-sizing: border-box;
}

.butz-magazin-tag-link:hover {
  border-color: #8baa8d;
  color: #082808;
}

/* Responsive */
@media (max-width: 880px) {
  .butz-magazin-tag-links-header {
    margin: 0 0 30px 0;
    font-size: 18px;
  }

  .butz-magazin-tag-link {
    padding: 8px 16px;
    font-size: 16px;
    height: auto;
    min-height: 44px;
  }
}
