.schrijvers__container {
  margin-top: 45px;
  margin-bottom: 45px;
}

.schrijvers__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background-color: var(--wp--preset--color--contrast);
  border-radius: 15px;
  height: 125px;
}

.schrijvers__cell {
  padding: 10px 30px 10px 30px;
  vertical-align: middle;
  border: none;
}

.share-wrapper {
  margin-left: 30px;
  position: relative;
}

.share-toggle {
  background: transparent;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  fill: white;
}

.share-menu {
  position: absolute;
  top: 110%;
  width: 250px;
  left: 0;
  background: white;
  color: black;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 10;
}

.share-menu.show {
  display: flex;
}

.share-menu a,
.copy-link-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 14px;
  color: #333;
  background: none;
  border: none;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.share-menu a:hover,
.copy-link-button:hover {
  background: #f0f0f0;
}

.share-menu svg {
  fill: currentColor;
  flex-shrink: 0;
}

.autheurs {
  display: flex;
  gap: 0;
  position: relative;
  align-items: center;
}

.autheurs img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  margin-left: -15px;
  transition: transform 0.3s ease;
}

.autheurs img:first-child {
  margin-left: 0;
  z-index: 2;
}

.autheurs img:hover {
  transform: scale(1.1);
  z-index: 3;
}

h4 {
  color: var(--wp--preset--color--base) !important;
  margin: 0;
}

.schrijvers__button {
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
}

.profile-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

@media (max-width: 768px) {
  .schrijvers__table {
    display: block;
    height: auto;
  }
  .schrijvers__table tr {
    display: block;
  }
  .schrijvers__cell {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }
  .share-wrapper {
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
  .schrijvers__button {
    justify-content: center;
    margin-right: 0;
  }
  .autheurs {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .autheurs img {
    width: 56px;
    height: 56px;
    margin-left: 0;
  }
  h4 {
    margin-top: 8px;
  }
  .profile-cell {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .share-menu {
    left: 50%;
    transform: translateX(-50%);
    width: min(250px, 100vw - 32px);
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .schrijvers__table {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .schrijvers__table tr {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .schrijvers__cell {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .schrijvers__table {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    grid-template-areas: "share share" "profile button";
    align-items: center;
    gap: 12px 24px;
    height: auto;
  }
  .schrijvers__table tr {
    display: contents;
  }
  .schrijvers__cell {
    display: block;
    width: auto;
    padding: 16px 24px;
    text-align: center;
  }
  .share-cell {
    grid-area: share;
    display: flex;
    justify-content: center;
  }
  .profile-cell {
    grid-area: profile;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  .button-cell {
    grid-area: button;
    display: flex;
    justify-content: center;
  }
  .schrijvers__button {
    justify-content: flex-end;
  }
  .share-wrapper {
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
  .autheurs {
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-bottom: 5px;
  }
  .autheurs img {
    width: 64px;
    height: 64px;
    margin-left: -10px;
  }
  .share-menu {
    left: 50%;
    transform: translateX(-50%);
    width: min(250px, 100vw - 32px);
  }
}

/*# sourceMappingURL=style.css.map */
