@charset "UTF-8";
/*
Plugin Name: Team Members Display
Description: Add team members with pictures and bios using shortcode [team_members]
Version: 1.0
Author: photograficznie.pl - Krzysztof Mierzejewski
*/
@-webkit-keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.team-members-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto, 1fr);
}
@media (max-width: 768px) {
  .team-members-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
  }
}
@media (max-width: 480px) {
  .team-members-container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(auto, 1fr);
  }
}
.team-members-container .team-member-item {
  border: none;
  overflow: hidden;
}
.team-members-container .team-member-image {
  overflow: hidden;
  background-color: #333;
}
.team-members-container .team-member-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.team-members-container .team-member-info {
  padding: 20px;
}
.team-members-container .team-member-info h3 {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  color: #333;
}
.team-members-container .team-member-info a {
  display: block;
}
.team-members-container .team-member-bio {
  color: #666;
  line-height: 1.6;
}

.team-members-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 1024px) {
  .team-members-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .team-members-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .team-members-gallery {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
}

.team-member-gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.team-member-gallery-item img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.team-member-gallery-item .white-space {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f3f3f3, #fff);
  -webkit-animation: shimmer 2s infinite linear;
          animation: shimmer 2s infinite linear;
}
.team-member-gallery-item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.team-member-gallery-item:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.team-member-gallery-item:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.team-member-gallery-item:nth-child(4) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.team-member-gallery-item:nth-child(5) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.team-member-gallery-item:nth-child(6) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.team-member-gallery-item:nth-child(7) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.team-member-gallery-item:nth-child(8) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.team-member-admin-item {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
.team-member-admin-item .team-member-admin-bio {
  grid-column: 2/span 2;
  grid-row: 2;
}
.team-member-admin-item .team-member-admin-image-wrapper {
  grid-column: 1/span 1;
  grid-row: 2;
}
.team-member-admin-item .button {
  grid-column: 5/span 1;
  grid-row: 2;
  width: 150px;
}

.team-group-admin-item {
  background-color: #d9d9d9;
  padding: 20px 40px;
  margin-bottom: 20px;
}
.team-group-admin-item .group-slug {
  margin-left: 20px;
  display: inline-block;
  background-color: #fff;
  padding: 10px 20px;
  color: #006fb9;
  font-weight: 700;
}
.team-group-admin-item .group-slug:before {
  content: "Klasa do stylowania groupy elementów ";
  color: #ccc;
  margin-right: 10px;
  font-weight: 100;
}
.team-group-admin-item .team-members-group-container {
  background-color: #fff;
  padding: 20px 40px;
}
.team-group-admin-item button {
  display: inline-block !important;
  margin-top: 20px !important;
  position: relative;
}
.team-group-admin-item .team-member-admin-image-wrapper {
  padding-bottom: 50px;
  position: relative;
}
.team-group-admin-item .team-member-admin-image-wrapper label {
  display: none;
}
.team-group-admin-item .team-member-admin-image-wrapper .upload-image-button {
  position: absolute;
  bottom: 0;
}
.team-group-admin-item .team-member-admin-image-wrapper img {
  width: 100% !important;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.team-group-admin-item .team-member-admin-bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.team-group-admin-item .team-member-admin-bio .team-member-admin-name-wrapper,
.team-group-admin-item .team-member-admin-bio .team-member-admin-bio-wrapper {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
}
.team-group-admin-item .team-member-admin-bio label {
  display: block;
}
.team-group-admin-item .team-member-admin-bio input {
  width: 100%;
}

.team-container .owner-wrap {
  position: absolute !important;
  top: 10px;
  right: 0;
  font-size: 8px;
  width: 200px;
}
.team-container .owner-wrap a {
  display: block;
}

.team-group-header {
  margin-bottom: 20px;
}
.team-group-header input[type=text] {
  padding: 5px 10px;
}

.team-members-debug-controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-members-debug-controls .debug-button {
  background: #006fb9;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.team-members-debug-controls .debug-button:hover {
  background: #005086;
}
.team-members-debug-controls .debug-button.paused {
  background: #ff4444;
}
.team-members-debug-controls .debug-button.paused:hover {
  background: #ff1111;
}
.team-members-debug-controls .debug-status {
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
}

.tab-content {
  margin-top: 20px;
}
.tab-content.active {
  display: block;
}

#display-settings-section {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
}
#display-settings-section .form-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
#display-settings-section .form-table th {
  text-align: left;
  padding: 15px 10px 15px 0;
  width: 200px;
  vertical-align: top;
}
#display-settings-section .form-table td {
  padding: 10px;
}
#display-settings-section .form-table td input[type=number] {
  width: 100px;
}
#display-settings-section .form-table td select {
  min-width: 200px;
}
#display-settings-section .form-table td .description {
  color: #666;
  font-style: italic;
  margin-top: 5px;
}
#display-settings-section .form-table td .duration-range-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
#display-settings-section .form-table td .duration-range-inputs .duration-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
#display-settings-section .form-table td .duration-range-inputs .duration-field label {
  font-weight: normal;
  min-width: 40px;
}
#display-settings-section .form-table td .duration-range-inputs .duration-field input {
  width: 80px;
}
#display-settings-section .form-table td .duration-range-inputs .duration-field span {
  color: #666;
}
#display-settings-section h3 {
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f3f3;
}

.team-members-gallery.static-gallery .team-member-gallery-item {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.team-members-gallery.static-gallery .team-member-gallery-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.team-members-gallery.static-gallery .team-member-gallery-item img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.team-members-gallery.static-gallery .team-member-gallery-item img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.team-members-gallery.static-gallery .team-member-gallery-item .white-space {
  background: linear-gradient(45deg, #f3f3f3, #fff);
}/*# sourceMappingURL=team-members.css.map */