
.kaefer-locations {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black2-color, #323c46);
}
.kaefer-locations .kaefer-locations__header {
  display: contents;
}
.kaefer-locations .kaefer-locations__legend-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.kaefer-locations .kaefer-locations__legend {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.kaefer-locations .kaefer-locations__search {
  background: var(--primary-color-red, #e63719);
  padding: 1.5rem;
  border-radius: 0;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.kaefer-locations .kaefer-locations__search label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kaefer-locations .kaefer-locations__search-row {
  display: flex;
  gap: 0;
  margin-bottom: 0.5rem;
  position: relative;
}

.kaefer-locations .kaefer-locations__search-row input {
  flex: 1;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  background: #fff;
}

.kaefer-locations .kaefer-locations__search-row input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.kaefer-locations .kaefer-locations__search-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3rem;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.2s ease;
  border-radius: 0;
}

.kaefer-locations .kaefer-locations__search-btn:hover {
  background: #E4E7E8;
}
.kaefer-locations .kaefer-locations__search-btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.2s ease;
}
.kaefer-locations .kaefer-locations__search-btn:hover::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e63719" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>');
}

.kaefer-locations .kaefer-locations__search-hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.kaefer-locations .kaefer-locations__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--black2-color, #323c46);
  font-weight: 500;
}

.kaefer-locations .kaefer-locations__marker {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.kaefer-locations .kaefer-locations__marker--branch {
  background-image: url("../svg/pin-branch.svg");
}

.kaefer-locations .kaefer-locations__marker--prefab {
  background-image: url("../svg/pin-prefab.svg");
}

.kaefer-locations .kaefer-locations__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.kaefer-locations .kaefer-locations__left-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kaefer-locations .kaefer-locations__search {
  margin-bottom: 20px;
  flex-shrink: 0;
}
.kaefer-locations .kaefer-locations__accordion-wrapper {
  flex: 1;
  min-height: 0;
}

.kaefer-locations .kaefer-locations__right-column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.kaefer-locations .kaefer-locations__map {
  flex: 1;
  min-height: 400px;
  width: 85%;
}

.kaefer-locations .kaefer-locations__map-inner {
  position: relative !important;
  width: 100% !important;
  display: block !important;
}

.kaefer-locations .kaefer-locations__map-inner svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  pointer-events: all !important;
}

.kaefer-locations .kaefer-svg-marker {
  cursor: pointer;
  pointer-events: all !important;
  transform: scale(0.7);
  transform-origin: center bottom;
  transform-box: fill-box;
}

.kaefer-locations .kaefer-svg-marker .kaefer-svg-hitarea {
  pointer-events: all;
}

.kaefer-locations .kaefer-svg-marker .kaefer-svg-pin {
  transition: transform 0.2s ease, fill 0.2s ease;
  transform-origin: center bottom;
  transform-box: fill-box;
  pointer-events: all;
}

.kaefer-locations .kaefer-svg-marker:hover .kaefer-svg-pin,
.kaefer-locations .kaefer-svg-marker.is-active .kaefer-svg-pin {
  transform: scale(1.3);
  fill: #fff !important;
}

.kaefer-locations .kaefer-svg-marker .kaefer-svg-label-group {
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.kaefer-locations .kaefer-svg-label-group[data-label-for] {
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  transform: scale(0.85);
  transform-origin: center top;
  transform-box: fill-box;
}

.kaefer-locations .kaefer-svg-label-group.is-visible {
  opacity: 1;
}

@media (max-width: 900px) {
  .kaefer-locations .kaefer-svg-label-group[data-label-for] {
    transform: scale(1.3);
  }
}

@media (max-width: 600px) {
  .kaefer-locations .kaefer-svg-label-group[data-label-for] {
    transform: scale(1.6);
  }
}

.kaefer-locations .kaefer-svg-marker:hover .kaefer-svg-label-group,
.kaefer-locations .kaefer-svg-marker.is-active .kaefer-svg-label-group {
  opacity: 1;
}

.kaefer-locations .kaefer-svg-marker:hover,
.kaefer-locations .kaefer-svg-marker:focus,
.kaefer-locations .kaefer-svg-marker.is-active {
  outline: none;
}

@media (max-width: 900px) {
  .kaefer-locations .kaefer-svg-marker {
    transform: scale(1.6);
  }
  
  .kaefer-locations .kaefer-svg-marker.is-active {
    transform: scale(1.6);
  }
}

@media (max-width: 600px) {
  .kaefer-locations .kaefer-svg-marker {
    transform: scale(2.2);
  }
  
  .kaefer-locations .kaefer-svg-marker.is-active {
    transform: scale(2.2);
  }
}
@media (max-width: 900px) {
  .kaefer-locations .kaefer-locations__layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .kaefer-locations .kaefer-locations__right-column {
    position: relative;
    top: auto;
    max-height: none;
    align-items: stretch;
  }
  
  .kaefer-locations .kaefer-locations__map {
    width: 100%;
  }
  
  .kaefer-locations .kaefer-locations__left-column {
    order: 2;
  }
  
  .kaefer-locations .kaefer-locations__right-column {
    order: 1;
  }
}

.kaefer-locations .kaefer-accordion-group-header {
  display: none !important;
}

.kaefer-locations .kaefer-accordion-item {
  margin-bottom: 12px !important;
  list-style: none !important;
}

.kaefer-locations .kaefer-accordion-trigger {
  width: 100% !important;
  padding: 0.9rem 1.1rem !important;
  background: #fff !important;
  border: none !important;
  text-align: left !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  align-items: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  border-radius: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  position: relative !important;
}

.kaefer-locations .kaefer-accordion-trigger:hover {
  background: var(--primary-color-red, #e63719) !important;
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-trigger:hover .kaefer-accordion-title {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-title {
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #333 !important;
  flex: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.kaefer-locations .kaefer-accordion-trigger::after {
  content: '+' !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  transition: transform 0.2s ease !important;
  flex-shrink: 0 !important;
  width: 24px !important;
  text-align: center !important;
  color: #333 !important;
}

.kaefer-locations .kaefer-accordion-trigger:hover::after {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item.is-open .kaefer-accordion-trigger {
  background: var(--primary-color-red, #e63719) !important;
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item.is-open .kaefer-accordion-trigger::after {
  content: '−' !important;
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item.is-open .kaefer-accordion-title {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-badge {
  font-size: 0.75rem !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 999px !important;
  border: 1px solid var(--tertiary-color-silver, #929ea5) !important;
  color: var(--secondary-color-greysilver, #2c414a) !important;
  background: #fff !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

.kaefer-locations .kaefer-accordion-panel {
  padding: 1.5rem !important;
  background: #fff !important;
  overflow: hidden !important;
  border: none !important;
  border-radius: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
}
.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-accordion-panel {
  background: #929EA5 !important;
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-accordion-trigger {
  background: #929EA5 !important;
  color: #fff !important;
}
.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"].is-open .kaefer-accordion-trigger {
  background: var(--primary-color-red, #e63719) !important;
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-accordion-title {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-accordion-trigger::after {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-accordion-content {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-accordion-address {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-accordion-contact {
  background: transparent !important;
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-contact-info strong {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-contact-info a {
  color: #fff !important;
  transition: color 0.2s ease !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-contact-info a:hover {
  color: var(--primary-color-red, #e63719) !important;
}

.kaefer-locations .kaefer-accordion-item[data-location-type="vorfertigung"] .kaefer-contact-role {
  color: #fff !important;
}

.kaefer-locations .kaefer-accordion-content {
  font-size: 0.875rem !important;
  color: #333 !important;
  animation: kaefer-accordion-fade 0.2s ease-out;
}

@keyframes kaefer-accordion-fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kaefer-locations .kaefer-accordion-contact {
  display: flex !important;
  gap: 1rem !important;
  align-items: flex-start !important;
  margin-bottom: 1.5rem !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.kaefer-locations .kaefer-accordion-contact:last-child {
  margin-bottom: 1.5rem !important;
}

.kaefer-locations .kaefer-contact-photo {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.kaefer-locations .kaefer-contact-info {
  flex: 1 !important;
  min-width: 0 !important;
}

.kaefer-locations .kaefer-contact-info strong {
  display: block !important;
  margin-bottom: 0.25rem !important;
  color: #333 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.kaefer-locations .kaefer-contact-role {
  display: block !important;
  margin-bottom: 0.75rem !important;
  font-size: 0.875rem !important;
  color: #333 !important;
  font-weight: 400 !important;
}

.kaefer-locations .kaefer-contact-info a {
  color: #333 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  display: block !important;
  margin-bottom: 0.25rem !important;
}

.kaefer-locations .kaefer-contact-info a:hover {
  color: var(--primary-color-red, #e63719) !important;
}
.kaefer-locations .kaefer-accordion-address {
  margin: 0 !important;
  line-height: 1.6 !important;
  color: #333 !important;
  padding: 0 !important;
  font-size: 0.875rem !important;
}
.kaefer-locations .kaefer-related-locations {
  display: none !important;
}

.kaefer-locations .kaefer-accordion-related {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.kaefer-locations .kaefer-related-locations h4 {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.75rem !important;
  padding: 0 !important;
  color: #333 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.kaefer-locations .kaefer-related-locations ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.kaefer-locations .kaefer-related-locations li {
  margin: 0 0 0.25rem !important;
  padding: 0 !important;
  color: #333 !important;
  font-size: 0.875rem !important;
}
.kaefer-locations__sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
}

.kaefer-locations__sheet--visible {
  display: block;
  animation: kaefer-sheet-slide-up 0.3s ease-out;
}

@keyframes kaefer-sheet-slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.kaefer-locations__sheet-inner {
  background: #E4E7E8;
  border-radius: 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  max-height: 70vh;
  overflow: auto;
  padding: 1.5rem 1.25rem;
}

.kaefer-locations__sheet-close {
  border: none !important;
  background: transparent !important;
  font-size: 1.75rem !important;
  line-height: 1 !important;
  float: right !important;
  cursor: pointer !important;
  padding: 0.25rem !important;
  color: var(--primary-color-red, #e63719) !important;
  transition: color 0.2s ease !important;
  font-weight: 300 !important;
}

.kaefer-locations__sheet-close:hover {
  color: #333 !important;
  background: transparent !important;
}

.kaefer-locations__sheet-content {
  clear: both;
  margin-top: 0.5rem;
}

.kaefer-locations__sheet-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.kaefer-locations__sheet-content p {
  margin: 0 0 0.75rem;
  color: #333;
  line-height: 1.6;
}

.kaefer-locations__sheet-content a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kaefer-locations__sheet-content a:hover {
  color: var(--primary-color-red, #e63719);
}

@media (min-width: 768px) {
  .kaefer-locations__sheet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .kaefer-locations .kaefer-locations__layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  
  .kaefer-locations {
    padding: 15px;
    padding-bottom: 120px;
  }

  /* Mobile Reihenfolge via Order:
     1. PLZ-Suche
     2. Legende
     3. Karte
     4. Accordion */
  
  .kaefer-locations .kaefer-locations__search {
    order: 1;
    margin-bottom: 0;
  }

  .kaefer-locations .kaefer-locations__legend-wrapper {
    order: 2;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .kaefer-locations .kaefer-locations__map {
    order: 3;
    width: 100%;
  }

  .kaefer-locations .kaefer-locations__accordion-wrapper {
    order: 4;
  }

  .kaefer-locations .kaefer-locations__accordion {
    order: 4;
  }

  
  .kaefer-locations .kaefer-locations__accordion .kaefer-accordion-item[data-location-type="niederlassung"] {
    display: none !important;
  }

  .kaefer-locations .kaefer-locations__accordion .kaefer-accordion-item[data-location-type="vorfertigung"] {
    display: block !important;
  }
  
  .kaefer-locations .kaefer-accordion-group-header + .kaefer-accordion-item[data-location-type="vorfertigung"] {
    margin-top: 12px !important;
  }

  .kaefer-locations__sheet-inner {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
  
  .kaefer-locations .kaefer-locations__search {
    width: 100%;
    padding: 1.25rem;
    margin: 0;
  }

  
  .kaefer-locations .kaefer-accordion-trigger {
    padding: 0.75rem 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .kaefer-locations .kaefer-accordion-title {
    font-size: 14px !important;
  }

  .kaefer-locations .kaefer-accordion-panel {
    padding: 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .kaefer-locations .kaefer-accordion-item {
    margin-bottom: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .kaefer-locations .kaefer-accordion-content {
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
  }

  
  .kaefer-locations .kaefer-contact-photo {
    width: 60px !important;
    height: 60px !important;
  }

  
  .kaefer-locations .kaefer-locations__map-inner {
    max-width: 100% !important;
    width: 100% !important;
    position: relative !important;
    display: block !important;
  }

  
  .kaefer-locations .kaefer-contact-info a,
  .kaefer-locations .kaefer-accordion-address {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
}
@media (max-width: 900px) and (min-width: 768px) {
  .kaefer-locations .kaefer-locations__header {
    gap: 1.5rem;
  }

  .kaefer-locations .kaefer-locations__layout {
    gap: 1.5rem;
  }
}
.kaefer-plz-standalone {
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
}

.kaefer-plz-standalone *,
.kaefer-plz-standalone *::before,
.kaefer-plz-standalone *::after {
  box-sizing: border-box;
}

.kaefer-plz-standalone__search {
  background: var(--primary-color-red, #e63719) !important;
  padding: 1.5rem !important;
  color: #fff !important;
  max-width: 100% !important;
  width: 100% !important;
  animation: kaefer-plz-fade-in 0.3s ease-out;
  box-sizing: border-box !important;
}

.kaefer-plz-standalone__search[hidden] {
  display: none;
}

.kaefer-plz-standalone__search label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kaefer-plz-standalone__search-row {
  display: flex;
  gap: 0;
  width: 100%;
}

.kaefer-plz-standalone__search-row input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.kaefer-plz-standalone__search-row input:focus {
  box-shadow: inset 0 0 0 2px #2c414a;
}

.kaefer-plz-standalone__search-btn {
  background: #fff;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c414a;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.kaefer-plz-standalone__search-btn svg {
  display: block;
  width: 20px;
  height: 20px;
}

.kaefer-plz-standalone__search-btn:hover {
  background: #2c414a;
  color: #fff;
}

.kaefer-plz-standalone__hint {
  margin: 0.5rem 0 0 0;
  font-size: 0.875rem;
  opacity: 0.9;
}
.kaefer-plz-standalone__result {
  background: #2c414a;
  color: #fff;
  padding: 1.5rem;
  max-width: 100%;
  width: 100%;
  animation: kaefer-plz-fade-in 0.3s ease-out;
  min-height: 190px;
}

.kaefer-plz-standalone__result[hidden] {
  display: none;
}
@keyframes kaefer-plz-fade-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kaefer-plz-standalone__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.kaefer-plz-standalone__back:hover {
  opacity: 1;
}

.kaefer-plz-standalone__back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.kaefer-plz-standalone__result-header {
  margin-bottom: 1.25rem;
}

.kaefer-plz-standalone__result-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.kaefer-plz-standalone__result-location {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.kaefer-plz-standalone__result-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kaefer-plz-standalone__contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.kaefer-plz-standalone__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #3d5560;
}

.kaefer-plz-standalone__photo--placeholder {
  background: #3d5560;
}

.kaefer-plz-standalone__info {
  flex: 1;
  min-width: 0;
}

.kaefer-plz-standalone__name {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  margin-bottom: 0.125rem;
}

.kaefer-plz-standalone__role {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.kaefer-plz-standalone__icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}

.kaefer-plz-standalone__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #e63719;
  color: #fff !important;
  border-radius: 50%;
  position: relative;
}

.kaefer-plz-standalone__icon-link:hover {
  background: #e63719;
  color: #fff !important;
}

.kaefer-plz-standalone__icon-link::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #2c414a;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  margin-bottom: 8px;
  pointer-events: none;
  z-index: 100;
}

.kaefer-plz-standalone__icon-link:hover::after {
  opacity: 1;
  visibility: visible;
}

.kaefer-plz-standalone__icon-link svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .kaefer-plz-standalone__photo {
    width: 100px;
    height: 100px;
  }
}
