.members-main {
  min-width: 0;
}



.members-hero {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  min-height: 220px;
  padding: 34px;

  background-image:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.94),
      rgba(8, 8, 8, 0.72),
      rgba(8, 8, 8, 0.34)
    ),
    url("../images/hero.png");

  background-position: center 48%;
  background-size: cover;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);

  overflow: hidden;
}



.members-hero::after {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 20% 35%,
      rgba(249, 201, 47, 0.09),
      transparent 42%
    );

  content: "";
  pointer-events: none;
}



.members-hero > div {
  position: relative;
  z-index: 2;
}



.members-hero > div:first-child {
  width: min(650px, 100%);
}



.members-eyebrow {
  color: var(--yellow);

  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}



.members-hero h1 {
  margin: 8px 0 11px;

  color: var(--white);

  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}



.members-hero p {
  max-width: 580px;
  margin: 0;

  color: #d3cec5;
  font-size: 0.88rem;
  line-height: 1.75;
}



.members-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(95px, 1fr));
  gap: 10px;

  min-width: 360px;
}



.members-hero-stats div {
  display: grid;
  gap: 3px;

  min-height: 88px;
  padding: 16px;

  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;

  backdrop-filter: blur(10px);
}



.members-hero-stats strong {
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}



.members-hero-stats span {
  color: var(--muted);
  font-size: 0.65rem;
}



.member-search-panel {
  margin-top: 18px;
  padding: 22px;

  background:
    linear-gradient(
      145deg,
      #171717,
      #101010
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}



.member-search-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}



.member-search-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;

  min-height: 51px;
  padding-left: 16px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}



.member-search-field:focus-within {
  background: rgba(255, 255, 255, 0.072);
  border-color: rgba(249, 201, 47, 0.62);

  box-shadow:
    0 0 0 4px rgba(249, 201, 47, 0.08);
}



.member-search-field > span {
  color: var(--muted);
  font-size: 1.1rem;
}



.member-search-field input {
  min-width: 0;
  height: 49px;
  padding: 0 14px;

  color: var(--white);
  background: transparent;
  border: 0;
  outline: none;

  font-size: 0.82rem;
}



.member-search-field input::placeholder {
  color: #77736d;
}



.member-search-field button {
  align-self: stretch;

  min-width: 105px;
  padding: 0 21px;

  color: #171207;
  background: var(--yellow);
  border-radius: 999px;

  font-size: 0.71rem;
  font-weight: 900;

  cursor: pointer;

  transition:
    background-color 180ms ease,
    transform 180ms ease;
}



.member-search-field button:hover {
  background: var(--yellow-light);
  transform: translateY(-1px);
}



.mobile-filter-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 49px;
  padding: 0 18px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 850;

  cursor: pointer;
}



.member-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;

  margin-top: 18px;
}



.filter-group {
  display: grid;
  gap: 7px;
}



.filter-group label {
  color: #bdb7ae;
  font-size: 0.66rem;
  font-weight: 800;
}



.filter-group select {
  width: 100%;
  height: 44px;
  padding: 0 35px 0 12px;

  color: #e7e2da;
  background:
    linear-gradient(
      45deg,
      transparent 50%,
      #8f8981 50%
    )
    calc(100% - 16px)
    calc(50% - 2px)
    / 5px 5px
    no-repeat,

    linear-gradient(
      135deg,
      #8f8981 50%,
      transparent 50%
    )
    calc(100% - 11px)
    calc(50% - 2px)
    / 5px 5px
    no-repeat,

    rgba(255, 255, 255, 0.05);

  border: 1px solid var(--border);
  border-radius: 12px;

  font-size: 0.7rem;
  outline: none;

  appearance: none;

  cursor: pointer;

  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}



.filter-group select:hover {
  background-color: rgba(255, 255, 255, 0.07);
}



.filter-group select:focus {
  border-color: rgba(249, 201, 47, 0.58);

  box-shadow:
    0 0 0 3px rgba(249, 201, 47, 0.08);
}



.filter-group option {
  color: var(--white);
  background: #171717;
}



.member-filter-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;

  margin-top: 18px;
  padding-top: 17px;

  border-top: 1px solid rgba(255, 255, 255, 0.075);
}



.member-filter-options label {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--muted);
  font-size: 0.67rem;

  cursor: pointer;
}



.member-filter-options input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}



.member-filter-options label > span {
  position: relative;

  display: block;

  width: 34px;
  height: 19px;

  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;

  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}



.member-filter-options label > span::after {
  position: absolute;
  top: 3px;
  left: 3px;

  width: 11px;
  height: 11px;

  background: #89847c;
  border-radius: 50%;

  content: "";

  transition:
    background-color 180ms ease,
    transform 180ms ease;
}



.member-filter-options input:checked + span {
  background: rgba(249, 201, 47, 0.18);
  border-color: rgba(249, 201, 47, 0.48);
}



.member-filter-options input:checked + span::after {
  background: var(--yellow);
  transform: translateX(15px);
}



.member-filter-options input:focus-visible + span {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}



.member-filter-options button {
  margin-left: auto;
  padding: 7px 11px;

  color: var(--yellow);
  background: transparent;
  border-radius: 8px;

  font-size: 0.65rem;
  font-weight: 850;

  cursor: pointer;
}



.member-filter-options button:hover {
  background: rgba(249, 201, 47, 0.07);
}



.members-results {
  margin-top: 18px;
  padding: 22px;

  background:
    linear-gradient(
      145deg,
      #171717,
      #101010
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}



.members-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 20px;
}



.members-results-header > div:first-child {
  display: grid;
  gap: 3px;
}



.members-results-header h2 {
  margin: 0;

  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}



.members-results-header span {
  color: var(--muted);
  font-size: 0.68rem;
}



.members-view-buttons {
  display: flex;
  gap: 7px;
}



.members-view-buttons button {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 10px;

  font-size: 1rem;

  cursor: pointer;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}



.members-view-buttons button:hover,
.members-view-buttons button.active {
  color: #171207;
  background: var(--yellow);
  border-color: var(--yellow);
}



.members-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}



.member-result-card {
  min-width: 0;
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(31, 31, 31, 0.98),
      rgba(14, 14, 14, 0.99)
    );

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}



.member-result-card:hover {
  transform: translateY(-5px);

  border-color: rgba(249, 201, 47, 0.3);

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.3);
}



.member-result-photo {
  position: relative;

  display: grid;
  place-items: center;

  aspect-ratio: 0.88 / 1;

  overflow: hidden;
}



.member-photo-kevin {
  background:
    radial-gradient(
      circle at 44% 27%,
      #4d7274,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #273d3e,
      #111111
    );
}



.member-photo-steven {
  background:
    radial-gradient(
      circle at 44% 27%,
      #4c6c86,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #263d4c,
      #111111
    );
}



.member-photo-tom {
  background:
    radial-gradient(
      circle at 44% 27%,
      #80514f,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #422927,
      #111111
    );
}



.member-photo-robin {
  background:
    radial-gradient(
      circle at 44% 27%,
      #755f91,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #3b3049,
      #111111
    );
}



.member-photo-eric {
  background:
    radial-gradient(
      circle at 44% 27%,
      #8f5147,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #492a26,
      #111111
    );
}



.member-photo-bart {
  background:
    radial-gradient(
      circle at 44% 27%,
      #74623d,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #3a3221,
      #111111
    );
}



.member-photo-nico {
  background:
    radial-gradient(
      circle at 44% 27%,
      #4b6854,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #28382d,
      #111111
    );
}



.member-photo-daan {
  background:
    radial-gradient(
      circle at 44% 27%,
      #625879,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #322e3d,
      #111111
    );
}



.member-result-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 42%;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(0, 0, 0, 0.68)
    );

  content: "";
  pointer-events: none;
}



.member-result-initials {
  display: grid;
  place-items: center;

  width: 84px;
  height: 84px;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      rgba(249, 201, 47, 0.28),
      rgba(231, 53, 53, 0.3)
    );

  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;

  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.34);

  font-size: 1.4rem;
  font-weight: 900;
}



.member-badge {
  position: absolute;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 24px;
  padding: 0 8px;

  border-radius: 999px;

  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}



.member-badge-online,
.member-badge-recent,
.member-badge-new {
  top: 10px;
  left: 10px;
}



.member-badge-online {
  color: #10210e;
  background: var(--green);
}



.member-badge-recent {
  color: #171207;
  background: var(--yellow);
}



.member-badge-new {
  color: var(--white);
  background: var(--red);
}



.member-badge-verified {
  top: 10px;
  right: 10px;

  width: 25px;
  min-width: 25px;
  padding: 0;

  color: #171207;
  background: var(--yellow);

  border-radius: 50%;
}



.member-badge-live {
  top: 10px;
  right: 10px;

  color: var(--white);
  background: var(--red);
}



.member-photo-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 4px;

  padding: 5px 8px;

  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;

  font-size: 0.55rem;
  font-weight: 800;

  backdrop-filter: blur(7px);
}



.member-result-content {
  display: grid;
  gap: 8px;
  padding: 15px 15px 13px;
}



.member-result-name {
  display: flex;
  align-items: center;
  gap: 8px;
}



.member-result-name a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
}



.member-result-name span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 850;
}



.member-result-content > p:not(.member-result-description) {
  margin: 0;

  color: var(--muted);
  font-size: 0.66rem;
}



.member-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}



.member-result-tags span {
  padding: 5px 7px;

  color: #d1cbc2;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;

  font-size: 0.54rem;
  font-weight: 750;
}



.member-result-description {
  min-height: 42px;
  margin: 0;

  color: #938d85;
  font-size: 0.63rem;
  line-height: 1.65;
}



.member-result-actions {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) minmax(0, 1fr);
  gap: 7px;

  padding: 0 13px 13px;
}



.member-result-actions button,
.member-result-actions a {
  display: grid;
  place-items: center;

  min-height: 36px;

  border-radius: 999px;

  font-size: 0.61rem;
  font-weight: 850;

  cursor: pointer;
}



.member-result-actions button:first-child {
  color: #d6d0c7;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);

  font-size: 1rem;
}



.member-result-actions button:first-child.is-favorite {
  color: var(--red);
  background: rgba(231, 53, 53, 0.1);
  border-color: rgba(231, 53, 53, 0.22);
}



.member-result-actions button:nth-child(2) {
  color: #d7d1c8;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
}



.member-result-actions a {
  color: #171207;
  background: var(--yellow);
}



.member-result-actions button:hover,
.member-result-actions a:hover {
  filter: brightness(1.08);
}



.members-grid.is-list-view {
  grid-template-columns: 1fr;
}



.members-grid.is-list-view .member-result-card {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) auto;
  align-items: stretch;
}



.members-grid.is-list-view .member-result-photo {
  aspect-ratio: auto;
  min-height: 150px;
}



.members-grid.is-list-view .member-result-initials {
  width: 68px;
  height: 68px;
}



.members-grid.is-list-view .member-result-content {
  align-content: center;
  padding: 20px;
}



.members-grid.is-list-view .member-result-description {
  min-height: 0;
  max-width: 500px;
}



.members-grid.is-list-view .member-result-actions {
  grid-template-columns: 42px 110px 90px;
  align-content: center;
  padding: 20px;
}



.members-empty-state {
  display: grid;
  justify-items: center;

  padding: 70px 20px;

  text-align: center;
}



.members-empty-state > span {
  display: grid;
  place-items: center;

  width: 78px;
  height: 78px;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 50%;

  font-size: 1.8rem;
}



.members-empty-state h3 {
  margin: 18px 0 7px;

  color: var(--white);
  font-size: 1.1rem;
}



.members-empty-state p {
  margin: 0;

  color: var(--muted);
  font-size: 0.72rem;
}



.members-empty-state button {
  margin-top: 18px;
  padding: 10px 17px;

  color: #171207;
  background: var(--yellow);
  border-radius: 999px;

  font-size: 0.68rem;
  font-weight: 900;

  cursor: pointer;
}



.members-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin-top: 26px;
}



.members-pagination button,
.members-pagination span {
  display: grid;
  place-items: center;

  min-width: 36px;
  height: 36px;
  padding: 0 9px;

  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 10px;

  font-size: 0.66rem;
}



.members-pagination button {
  cursor: pointer;
}



.members-pagination button:hover,
.members-pagination button.active {
  color: #171207;
  background: var(--yellow);
  border-color: var(--yellow);
}



.members-pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}



.rightbar-counter {
  display: grid;
  place-items: center;

  min-width: 28px;
  height: 23px;
  padding: 0 7px;

  color: #171207;
  background: var(--yellow);
  border-radius: 999px;

  font-size: 0.58rem;
  font-weight: 900;
}



.members-tip-card {
  text-align: left;
}



.members-tip-icon {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  background:
    linear-gradient(
      135deg,
      rgba(249, 201, 47, 0.13),
      rgba(231, 53, 53, 0.11)
    );

  border-radius: 13px;

  font-size: 1.1rem;
}



.members-tip-card h2 {
  margin: 14px 0 8px;

  color: var(--white);
  font-size: 0.85rem;
}



.members-tip-card p {
  margin: 0;

  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.65;
}



.members-tip-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 12px;

  color: var(--yellow);
  font-size: 0.61rem;
  font-weight: 850;
}



@media (max-width: 1580px) {

  .member-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .members-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}



@media (max-width: 1280px) {

  .members-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}



@media (max-width: 1050px) {

  .members-hero {
    min-height: 240px;
  }

  .members-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}



@media (max-width: 900px) {

  .members-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .members-hero-stats {
    width: 100%;
    min-width: 0;
  }

  .member-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .members-grid.is-list-view .member-result-card {
    grid-template-columns: 125px minmax(0, 1fr);
  }

  .members-grid.is-list-view .member-result-actions {
    grid-column: 1 / -1;
    grid-template-columns: 42px 1fr 1fr;
    padding-top: 0;
  }

}



@media (max-width: 700px) {

  .members-hero {
    min-height: 315px;
    padding: 25px;

    background-position: center;
  }

  .members-hero h1 {
    font-size: 2.6rem;
  }

  .members-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .members-hero-stats div {
    min-height: 77px;
    padding: 12px;
  }

  .members-hero-stats strong {
    font-size: 1.15rem;
  }

  .member-search-panel,
  .members-results {
    padding: 17px;
  }

  .mobile-filter-button {
    display: inline-flex;
  }

  .member-filter-grid {
    display: none;
    grid-template-columns: 1fr 1fr;
  }

  .member-filter-grid.is-open {
    display: grid;
  }

  .member-filter-options {
    display: none;
  }

  .member-filter-grid.is-open + .member-filter-options {
    display: flex;
  }

  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .members-grid.is-list-view {
    grid-template-columns: 1fr;
  }

}



@media (max-width: 560px) {

  .members-hero {
    min-height: 355px;
    padding: 21px;
  }

  .members-hero h1 {
    font-size: 2.3rem;
  }

  .members-hero-stats {
    gap: 7px;
  }

  .members-hero-stats div {
    padding: 10px;
  }

  .members-hero-stats strong {
    font-size: 1rem;
  }

  .members-hero-stats span {
    font-size: 0.56rem;
  }

  .member-search-top {
    grid-template-columns: 1fr;
  }

  .member-search-field {
    grid-template-columns: auto minmax(0, 1fr);
    padding-right: 6px;
  }

  .member-search-field button {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 43px;
    margin: 0 0 6px;
  }

  .mobile-filter-button {
    width: 100%;
  }

  .member-filter-grid {
    grid-template-columns: 1fr;
  }

  .member-filter-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-filter-options button {
    margin-left: 0;
  }

  .members-results-header {
    align-items: flex-start;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .member-result-photo {
    aspect-ratio: 1.2 / 1;
  }

  .members-grid.is-list-view .member-result-card {
    display: block;
  }

  .members-grid.is-list-view .member-result-photo {
    min-height: 220px;
  }

  .members-grid.is-list-view .member-result-actions {
    grid-template-columns: 38px 1fr 1fr;
  }

  .members-pagination {
    flex-wrap: wrap;
  }

}



@media (max-width: 390px) {

  .members-hero-stats {
    grid-template-columns: 1fr;
  }

  .members-hero {
    min-height: 480px;
  }

  .members-hero-stats div {
    min-height: 61px;
  }

  .member-search-panel,
  .members-results {
    padding: 14px;
  }

}
