/* ########################################################################## */
/*                         engagement-plattform-list                          */
/* ########################################################################## */

.engagement-plattform-list__container {
  margin: auto;
  max-width: 1200px;
  margin-top: 4rem;

  /* Color Tokens */
  --engagement-plattform-foreground: #535b5c;
  --engagement-plattform-muted-foreground: #8a9495;

  --engagement-plattform-primary: #709fbc;
  --engagement-plattform-primary-light: #8bb5cc;
  --engagement-plattform-primary-dark: #5a8aa8;
  --engagement-plattform-primary-foreground: #fff;

  --engagement-plattform-secondary: #84ad65;
  --engagement-plattform-secondary-light: #a3c78a;
  --engagement-plattform-secondary-foreground: #fff;

  --engagement-plattform-accent: #84ad65;
  --engagement-plattform-accent-light: #f5f7f7;

  --engagement-plattform-bg: #fafbfc;
  --engagement-plattform-surface: #ffffff;
  --engagement-plattform-border: #e2e8eb;

  /* Spacing */
  --engagement-plattform-space-xs: 0.15rem;
  --engagement-plattform-space-sm: 0.35rem;
  --engagement-plattform-space-md: 0.75rem;
  --engagement-plattform-space-lg: 1.1rem;
  --engagement-plattform-space-xl: 1.5rem;

  /* Typography */
  --engagement-plattform-font-sm: 0.8rem;
  --engagement-plattform-font-base: 0.92rem;
  --engagement-plattform-font-lg: 1.05rem;
  --engagement-plattform-font-xl: 1.15rem;

  /* Effects */
  --engagement-plattform-radius-sm: 3px;
  --engagement-plattform-radius-md: 6px;
  --engagement-plattform-radius-lg: 8px;
  --engagement-plattform-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== FILTER FORM ===== */
.engagement-plattform-list__filter-form {
  background: var(--engagement-plattform-surface);
  border-radius: var(--engagement-plattform-radius-lg);
  overflow: hidden;
  border: 1px solid var(--engagement-plattform-border);
  margin-bottom: var(--engagement-plattform-space-xl);
}

/* ===== HEADER ===== */
.engagement-plattform-list__filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--engagement-plattform-space-lg)
    var(--engagement-plattform-space-xl);
  background: linear-gradient(
    135deg,
    var(--engagement-plattform-primary) 0%,
    var(--engagement-plattform-primary-dark) 100%
  );
  color: var(--engagement-plattform-primary-foreground);
}

.engagement-plattform-list__filter-title {
  font-size: var(--engagement-plattform-font-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--engagement-plattform-space-sm);
  color: var(--engagement-plattform-primary-foreground);
}

.engagement-plattform-list__filter-title::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.293A1 1 0 013 6.586V4z'/%3E%3C/svg%3E")
    no-repeat center;
  opacity: 0.9;
}

.engagement-plattform-list__mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  padding: var(--engagement-plattform-space-sm)
    var(--engagement-plattform-space-md);
  border-radius: var(--engagement-plattform-radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--engagement-plattform-font-sm);
  font-weight: 500;
  transition: var(--engagement-plattform-transition);
  align-items: center;
  gap: var(--engagement-plattform-space-xs);
}

.engagement-plattform-list__mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.engagement-plattform-list__mobile-toggle svg {
  transition: var(--engagement-plattform-transition);
}

/* ===== FILTER BODY ===== */
.engagement-plattform-list__filter-body {
  padding: var(--engagement-plattform-space-lg);
}

/* ===== FILTER SEARCH ===== */
.engagement-plattform-list__filter-search {
  margin-bottom: var(--engagement-plattform-space-md);
}

.engagement-plattform-list__filter-search-input {
  width: 100%;
  padding: var(--engagement-plattform-space-sm)
    var(--engagement-plattform-space-md);
  padding-left: 36px;
  border: 1px solid var(--engagement-plattform-border);
  border-radius: var(--engagement-plattform-radius-sm);
  font-family: inherit;
  font-size: var(--engagement-plattform-font-sm);
  transition: var(--engagement-plattform-transition);
  background: var(--engagement-plattform-bg)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238a9495' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E")
    no-repeat 10px center;
  background-size: 18px;
}

.engagement-plattform-list__filter-search-input:focus {
  outline: none;
  border-color: var(--engagement-plattform-primary);
  background-color: var(--engagement-plattform-surface);
}

.engagement-plattform-list__filter-search-input::placeholder {
  color: var(--engagement-plattform-muted-foreground);
}

/* ===== FILTER BLOCKS (Accordion Sections) ===== */
.engagement-plattform-list__filter-block {
  border: 1px solid var(--engagement-plattform-border);
  border-radius: var(--engagement-plattform-radius-md);
  margin-bottom: var(--engagement-plattform-space-md);
  overflow: hidden;
  transition: var(--engagement-plattform-transition);
}

.engagement-plattform-list__filter-block:last-of-type {
  margin-bottom: 0;
}

.engagement-plattform-list__filter-block:hover {
  border-color: var(--engagement-plattform-primary-light);
}

.engagement-plattform-list__filter-block--open {
  border-color: var(--engagement-plattform-primary);
}

/* Section Header/Toggle */
.engagement-plattform-list__filter-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--engagement-plattform-space-md)
    var(--engagement-plattform-space-lg);
  background: var(--engagement-plattform-bg);
  cursor: pointer;
  user-select: none;
  transition: var(--engagement-plattform-transition);
}

.engagement-plattform-list__filter-block-header:hover {
  background: var(--engagement-plattform-accent-light);
}

.engagement-plattform-list__filter-block--open
  .engagement-plattform-list__filter-block-header {
  background: var(--engagement-plattform-accent-light);
  border-bottom: 1px solid var(--engagement-plattform-border);
}

.engagement-plattform-list__filter-block-title {
  font-size: var(--engagement-plattform-font-base);
  font-weight: 600;
  color: var(--engagement-plattform-foreground);
  display: flex;
  align-items: center;
  gap: var(--engagement-plattform-space-sm);
}

/* Count Badge */
.engagement-plattform-list__filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 var(--engagement-plattform-space-xs);
  background: var(--engagement-plattform-primary);
  color: var(--engagement-plattform-primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--engagement-plattform-transition);
}

.engagement-plattform-list__filter-count--active {
  opacity: 1;
  transform: scale(1);
}

/* Toggle Icon */
.engagement-plattform-list__filter-block-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--engagement-plattform-surface);
  border-radius: var(--engagement-plattform-radius-sm);
  transition: var(--engagement-plattform-transition);
}

.engagement-plattform-list__filter-block-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--engagement-plattform-muted-foreground);
  transition: var(--engagement-plattform-transition);
}

.engagement-plattform-list__filter-block--open
  .engagement-plattform-list__filter-block-toggle {
  background: var(--engagement-plattform-primary);
}

.engagement-plattform-list__filter-block--open
  .engagement-plattform-list__filter-block-toggle
  svg {
  stroke: white;
  transform: rotate(180deg);
}

/* Section Content */
.engagement-plattform-list__filter-block-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.engagement-plattform-list__filter-block--open
  .engagement-plattform-list__filter-block-content {
  max-height: 400px;
}

.engagement-plattform-list__filter-block-inner {
  padding: var(--engagement-plattform-space-md)
    var(--engagement-plattform-space-lg);
  display: grid;
  gap: var(--engagement-plattform-space-xs);
  max-height: 280px;
  overflow-y: auto;
}

/* Custom scrollbar */
.engagement-plattform-list__filter-block-inner::-webkit-scrollbar {
  width: 6px;
}

.engagement-plattform-list__filter-block-inner::-webkit-scrollbar-track {
  background: var(--engagement-plattform-bg);
  border-radius: 10px;
}

.engagement-plattform-list__filter-block-inner::-webkit-scrollbar-thumb {
  background: var(--engagement-plattform-border);
  border-radius: 10px;
}

.engagement-plattform-list__filter-block-inner::-webkit-scrollbar-thumb:hover {
  background: var(--engagement-plattform-muted-foreground);
}

/* ===== CHECKBOX STYLING ===== */
.engagement-plattform-list__checkbox-item {
  display: flex;
  align-items: center;
  gap: var(--engagement-plattform-space-sm);
  padding: var(--engagement-plattform-space-sm)
    var(--engagement-plattform-space-md);
  border-radius: var(--engagement-plattform-radius-sm);
  cursor: pointer;
  transition: var(--engagement-plattform-transition);
}

.engagement-plattform-list__checkbox-item:hover {
  background: var(--engagement-plattform-bg);
}

.engagement-plattform-list__checkbox-item:has(input:checked) {
  background: var(--engagement-plattform-accent-light);
}

.engagement-plattform-list__checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--engagement-plattform-border);
  border-radius: 5px;
  cursor: pointer;
  transition: var(--engagement-plattform-transition);
  position: relative;
  flex-shrink: 0;
}

.engagement-plattform-list__checkbox-item input[type="checkbox"]:hover {
  border-color: var(--engagement-plattform-primary-light);
}

.engagement-plattform-list__checkbox-item input[type="checkbox"]:checked {
  background: var(--engagement-plattform-primary);
  border-color: var(--engagement-plattform-primary);
}

.engagement-plattform-list__checkbox-item
  input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.engagement-plattform-list__checkbox-item input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--engagement-plattform-accent);
  outline-offset: 2px;
}

.engagement-plattform-list__checkbox-item label {
  font-size: var(--engagement-plattform-font-sm);
  color: var(--engagement-plattform-foreground);
  cursor: pointer;
  line-height: 1.4;
}

/* ===== ACTIVE FILTER PILLS ===== */
.engagement-plattform-list__active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--engagement-plattform-space-sm);
  padding: 0 var(--engagement-plattform-space-lg)
    var(--engagement-plattform-space-lg);
}

.engagement-plattform-list__active-filters:empty {
  display: none;
}

.engagement-plattform-list__filter-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--engagement-plattform-space-xs);
  padding: var(--engagement-plattform-space-xs)
    var(--engagement-plattform-space-sm);
  background: var(--engagement-plattform-accent-light);
  border: 1px solid var(--engagement-plattform-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--engagement-plattform-foreground);
  animation: engagement-plattform-pillAppear 200ms ease-out;
}

@keyframes engagement-plattform-pillAppear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.engagement-plattform-list__filter-pill-remove {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--engagement-plattform-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 12px;
  line-height: 1;
  transition: var(--engagement-plattform-transition);
}

.engagement-plattform-list__filter-pill-remove:hover {
  background: var(--engagement-plattform-primary);
}

/* ===== FILTER ACTIONS ===== */
.engagement-plattform-list__filter-actions {
  display: flex;
  gap: var(--engagement-plattform-space-md);
  padding: var(--engagement-plattform-space-lg);
  padding-top: 0;
}

.engagement-plattform-list__btn {
  flex: 1;
  padding: var(--engagement-plattform-space-md)
    var(--engagement-plattform-space-lg);
  font-family: inherit;
  font-size: var(--engagement-plattform-font-base);
  font-weight: 600;
  cursor: pointer;
  transition: var(--engagement-plattform-transition);
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--engagement-plattform-space-sm);
}

.engagement-plattform-list__btn--primary {
  background: linear-gradient(
    135deg,
    var(--engagement-plattform-primary) 0%,
    var(--engagement-plattform-primary-dark) 100%
  );
  color: var(--engagement-plattform-primary-foreground);
  border: none;
}

.engagement-plattform-list__btn--primary:active {
  background-color: var(--engagement-plattform-primary);
}

.engagement-plattform-list__btn--primary:hover {
  background-color: var(--engagement-plattform-secondary);
}

.engagement-plattform-list__btn--secondary {
  background: var(--engagement-plattform-surface);
  color: var(--engagement-plattform-muted-foreground);
  border: 1px solid var(--engagement-plattform-border);
}

.engagement-plattform-list__btn--secondary:hover {
  background: var(--engagement-plattform-bg);
  color: var(--engagement-plattform-foreground);
  border-color: var(--engagement-plattform-muted-foreground);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .engagement-plattform-list__filter-form {
    max-width: 100%;
    border-radius: var(--engagement-plattform-radius-md);
  }

  .engagement-plattform-list__filter-header {
    padding: var(--engagement-plattform-space-md)
      var(--engagement-plattform-space-lg);
  }

  .engagement-plattform-list__mobile-toggle {
    display: flex;
  }

  .engagement-plattform-list__filter-body {
    display: none;
    padding: var(--engagement-plattform-space-md);
  }

  .engagement-plattform-list__filter-body--visible {
    display: block;
    animation: engagement-plattform-slideDown 300ms ease-out;
  }

  @keyframes engagement-plattform-slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .engagement-plattform-list__filter-actions {
    padding: var(--engagement-plattform-space-md);
    padding-top: 0;
    flex-direction: column;
  }

  .engagement-plattform-list__filter-block-header {
    padding: var(--engagement-plattform-space-md);
  }

  .engagement-plattform-list__filter-block-inner {
    padding: var(--engagement-plattform-space-sm)
      var(--engagement-plattform-space-md);
    max-height: 220px;
  }

  .engagement-plattform-list__active-filters {
    padding: 0 var(--engagement-plattform-space-md)
      var(--engagement-plattform-space-md);
  }
}

/* ===== DESKTOP SIDEBAR LAYOUT ===== */

.engagement-plattform-list__wrapper {
  list-style-type: none;
  margin-top: 5rem;
}

.engagement-plattform-list__item {
  margin-bottom: 3rem;
}

.engagement-plattform-list__item-layout {
  display: flex;
  gap: 2rem;
}

.engagement-plattform-list__item:nth-child(odd)
  .engagement-plattform-list__item-layout {
  flex-direction: row;
}

.engagement-plattform-list__item:nth-child(even)
  .engagement-plattform-list__item-layout {
  flex-direction: row-reverse;
}

.engagement-plattform-list__item-layout-left {
  flex: 1;
}

.engagement-plattform-list__item-layout-right {
  flex: 1;

  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 768px) {
  .engagement-plattform-list__item-layout-right {
    display: none;
  }
}

.engagement-plattform-list__item:nth-child(odd)
  .engagement-plattform-list__item-layout-right {
  justify-content: flex-end;
}

.engagement-plattform-list__item:nth-child(even)
  .engagement-plattform-list__item-layout-right {
  justify-content: flex-start;
}

.engagement-plattform-list__item-image-wrapper {
  position: relative;
}

.engagement-plattform-list__item-image-wrapper::before {
  content: "";
  position: absolute;

  width: 100%;
  height: 100%;
  background-color: var(--engagement-plattform-primary);
  z-index: -1; /* keep it behind the img */
}

.engagement-plattform-list__item:nth-child(odd)
  .engagement-plattform-list__item-image-wrapper::before {
  top: -1.5rem; /* vertical offset */
  left: 1.5rem; /* horizontal offset */
}

.engagement-plattform-list__item:nth-child(even)
  .engagement-plattform-list__item-image-wrapper::before {
  top: -1.5rem; /* vertical offset */
  left: -1.5rem; /* horizontal offset */
}

.engagement-plattform-list__item img {
  display: block;
  position: relative;
  z-index: 1;

  object-fit: contain;

  max-height: 360px;
}

.engagement-plattform-list__item h6 {
  text-align: left;
  margin: 0 0 0.5rem 0;
  text-align: left;
  font-size: 1.520875rem;
  line-height: 1.8rem;
  font-weight: 600;
  font-family: Cabin, sans-serif;
  color: var(--engagement-plattform-primary);
}

.engagement-plattform-list__item p {
  margin: 0;
}

.engagement-plattform-list__item a {
  display: inline-block;

  padding: 0.5rem 1.5rem;
  margin-top: 1rem;

  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;

  border: 1px solid var(--engagement-plattform-primary);
  color: var(--engagement-plattform-primary-foreground);
  background-color: var(--engagement-plattform-primary);

  transition: color 0.2s, background-color 0.2s, border-color 0.2s ease;

  cursor: pointer;
}

.engagement-plattform-list__item a:hover {
  border-color: #84ad65;
  background-color: #84ad65;
  color: #fff !important;
}

/* ########################################################################## */
/*                         engagement-plattform-detail                        */
/* ########################################################################## */

.engagement-plattform-detail__container {
  margin: auto;
  max-width: 1200px;
  margin-top: 4rem;

  --engagement-plattform-foreground: #535b5c;
  --engagement-plattform-muted-foreground: #8a9495;

  --engagement-plattform-primary: #709fbc;
  --engagement-plattform-primary-foreground: #fff;
  --engagement-plattform-secondary: #84ad65;
  --engagement-plattform-secondary-foreground: #fff;
}

/* Header */

.engagement-plattform-detail__header-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.engagement-plattform-detail__header {
  font-size: 2em;
  font-weight: bold;

  text-align: left;
  width: max-content;

  position: relative;

  margin-top: 0;
  margin-bottom: 0;
  margin-right: 1rem;
  margin-left: 1rem;

  color: var(--engagement-plattform-foreground);

  hyphens: auto;
  overflow-wrap: break-word;
}

.engagement-plattform-detail__sub-header {
  margin: 0;

  color: var(--engagement-plattform-muted-foreground);
}

/* Tagline */

.engagement-plattform-detail__tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.engagement-plattform-detail__tagline_badge {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.45rem 0.85rem 0.35rem 0.85rem;
  border-radius: 2rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: default;
}

.engagement-plattform-detail__tagline_badge_primary {
  background-color: var(--engagement-plattform-primary);
  color: var(--engagement-plattform-primary-foreground);
}

.engagement-plattform-detail__tagline_badge_secondary {
  background-color: var(--engagement-plattform-secondary);
  color: var(--engagement-plattform-secondary-foreground);
}

/* Content Layout */

.engagement-plattform-detail__content {
  display: flex;
  width: 100%;
}

@media (max-width: 768px) {
  .engagement-plattform-detail__content {
    flex-direction: column;
  }
}

.engagement-plattform-detail__left-column,
.engagement-plattform-detail__right-column {
  padding: 10px;
  margin: 10px;
}

.engagement-plattform-detail__left-column {
  flex: 2;
}

.engagement-plattform-detail__right-column {
  flex: 1;
}

/* Image */

.engagement-plattform-detail__image-section img {
  width: 100%;
  height: auto;
}

/* About */

.engagement-plattform-detail__about {
}

.engagement-plattform-detail__about-divider {
  border: none;
  border-top: 1px solid #8a9495; /* your muted color */
  margin: 20px 0;
  opacity: 0.8; /* optional soft look */
}

/* Address */

.engagement-plattform-detail__address {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  margin-bottom: 2rem;

  padding: 0.5rem 1rem;

  background-color: var(--engagement-plattform-primary);
}

.engagement-plattform-detail__address svg {
  width: 2rem;
  height: 2rem;

  fill: var(--engagement-plattform-primary-foreground);
}

.engagement-plattform-detail__address div {
  margin: 0;
  line-height: 1.25;

  color: var(--engagement-plattform-primary-foreground);
}

.engagement-plattform-detail__volunteering {
  margin-bottom: 2rem;
}

.engagement-plattform-detail__volunteering-pretext {
  font-weight: 300;
  color: var(--engagement-plattform-muted-foreground);
  text-transform: uppercase;
  line-height: 1.1;

  text-align: left;
  margin: 1rem 0 0 0;
}

.engagement-plattform-detail__volunteering ul {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.engagement-plattform-detail__volunteering li {
  position: relative;
  list-style-type: none;
}

.engagement-plattform-detail__volunteering li::before {
  display: inline-block;
  font-size: 0.7rem;
  font-family: arberland20;
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.3rem;
}

/* Colors */
.engagement-plattform-detail__volunteering li:nth-child(odd)::before {
  color: var(--engagement-plattform-primary);
}

.engagement-plattform-detail__volunteering li:nth-child(even)::before {
  color: var(--engagement-plattform-secondary);
}

/* Contact */
.engagement-plattform-detail__contact-person {
  margin-bottom: 2rem;
}

.engagement-plattform-detail__contact-person p {
  margin: 0;
}

.engagement-plattform-detail__contact-person-pretext {
  font-weight: 300;
  color: var(--engagement-plattform-muted-foreground);
  text-transform: uppercase;
  line-height: 1.1;
}

.engagement-plattform-detail__contact-person-name {
  font-weight: 600;
}

.engagement-plattform-detail__contact-person-function {
  margin-bottom: 0.75rem;
  color: var(--engagement-plattform-muted-foreground);
  line-height: 1;
  font-size: 0.8rem;
}

.engagement-plattform-detail__contact-person-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.engagement-plattform-detail__contact-person-phone svg {
  width: 1.5rem;
  height: 1.5rem;

  fill: var(--engagement-plattform-secondary);
}

.engagement-plattform-detail__contact-person-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.engagement-plattform-detail__contact-person-email svg {
  width: 1.5rem;
  height: 1.5rem;

  fill: var(--engagement-plattform-secondary);
}

.engagement-plattform-detail__contact-person-website-url {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.engagement-plattform-detail__contact-person-website-url svg {
  width: 1.5rem;
  height: 1.5rem;

  fill: var(--engagement-plattform-secondary);
}

/* Gallery */

.engagement-plattform-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px; /* spacing between images */
  margin-top: 20px;
}

.engagement-plattform-detail__gallery figure {
  margin: 0;
  cursor: pointer;
}

.engagement-plattform-detail__gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

/* Print */

.engagement-plattform-detail__print {
  display: inline-block;

  padding: 0.5rem 1.5rem;

  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;

  border: 1px solid var(--engagement-plattform-primary);
  color: var(--engagement-plattform-primary-foreground);
  background-color: var(--engagement-plattform-primary);

  transition: color 0.2s, background-color 0.2s, border-color 0.2s ease;

  cursor: pointer;
}

.engagement-plattform-detail__print:hover {
  border-color: #84ad65;
  background-color: #84ad65;
  color: #fff !important;
}

