/* Custom Hissho Leadership Grid Styling */

:root {
  --hissho-grid-cols: 3;
  --hissho-grid-gap: 26px;
  --hissho-card-radius: 10px;
  --hissho-card-ratio: 4/5;
  --hissho-scrim-color: #1B2A33;
  --hissho-accent-color: #65AFE1;
  --hissho-fav-color: #F47D60;
}

.hissho-grid-title {
  margin-bottom: 24px;
}

.hissho-leadership-wrapper {
  width: 100%;
}

.hissho-leadership-grid {
  display: grid;
  grid-template-columns: repeat(var(--hissho-grid-cols, 3), 1fr);
  grid-template-rows: auto;
  align-items: start;
  gap: var(--hissho-grid-gap, 26px);
}

.hissho-leadership-card {
  position: relative;
  aspect-ratio: var(--hissho-card-ratio, 4/5);
  border-radius: var(--hissho-card-radius, 10px);
  overflow: hidden;
  background-color: var(--hissho-scrim-color, #1B2A33);
  cursor: pointer;
  outline: none;
}

.hissho-card-photo-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hissho-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.4, 0, .2, 1);
}

.hissho-card-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27,42,51,0.9), rgba(101,175,225,0.2));
}

/* Gradients: bottom rising gradient & base wash overlay */
.hissho-leadership-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 51, 0.48);
  opacity: 0;
  z-index: 1;
  transition: opacity 400ms cubic-bezier(.4, 0, .2, 1);
}

.hissho-leadership-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32%; /* Fine-tuned default height to prevent creep on 1:1, but high enough to cover titles */
  z-index: 2;
  /* Darkened the midpoint color stop to 0.72 and end to 0.98 for superb readability */
  background: linear-gradient(180deg, rgba(27, 42, 51, 0) 0%, rgba(27, 42, 51, 0.72) 42%, rgba(27, 42, 51, 0.98) 100%);
  transition: height 450ms cubic-bezier(.4, 0, .2, 1);
}

/* Info Plus / Close cue */
.hissho-card-info-cue {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 450ms cubic-bezier(.4, 0, .2, 1);
}

.hissho-card-info-cue::before,
.hissho-card-info-cue::after {
  content: '';
  position: absolute;
  background-color: #fff;
  transition: transform 450ms cubic-bezier(.4, 0, .2, 1);
}

/* Horizontal line of plus */
.hissho-card-info-cue::before {
  width: 12px;
  height: 2px;
}

/* Vertical line of plus */
.hissho-card-info-cue::after {
  width: 2px;
  height: 12px;
}

/* Text Content Overlay block */
.hissho-card-text-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px 22px 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}

.hissho-card-name {
  font-family: inherit;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.2px !important;
  color: #ffffff !important;
  margin: 0 0 4px 0 !important;
}

.hissho-card-title {
  font-family: inherit;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--hissho-accent-color, #65AFE1) !important;
  margin: 0 !important;
}

.hissho-card-bio-block {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 450ms cubic-bezier(.4, 0, .2, 1), opacity 450ms cubic-bezier(.4, 0, .2, 1), margin-top 450ms cubic-bezier(.4, 0, .2, 1);
}

.hissho-card-bio {
  font-family: inherit;
  font-size: 12.5px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 0 10px 0 !important;
}

.hissho-card-fav {
  font-family: inherit;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  color: var(--hissho-fav-color, #F47D60) !important;
  margin: 0 !important;
}

.hissho-card-fav-prefix {
  opacity: 0.85;
}

/* Hover & Focus Interactions */
.hissho-leadership-card:hover::before,
.hissho-leadership-card:focus-within::before {
  opacity: 1;
}

.hissho-leadership-card:hover::after,
.hissho-leadership-card:focus-within::after {
  height: 100%;
  /* Fully custom cover when open/hovered */
  background: linear-gradient(180deg, rgba(27, 42, 51, 0) 0%, rgba(27, 42, 51, 0.5) 42%, rgba(27, 42, 51, 0.95) 100%);
}

.hissho-leadership-card:hover .hissho-card-photo,
.hissho-leadership-card:focus-within .hissho-card-photo {
  transform: scale(1.05);
}

.hissho-leadership-card:hover .hissho-card-info-cue,
.hissho-leadership-card:focus-within .hissho-card-info-cue {
  transform: rotate(45deg);
}

.hissho-leadership-card:hover .hissho-card-bio-block,
.hissho-leadership-card:focus-within .hissho-card-bio-block {
  max-height: 260px;
  opacity: 1;
  margin-top: 14px;
}

/* Tablets Breakpoint */
@media (max-width: 1024px) {
  .hissho-leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Breakpoint (<= 600px) */
@media (max-width: 600px) {
  .hissho-leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hissho-leadership-card {
    aspect-ratio: 165/206;
  }

  .hissho-card-name {
    font-size: 14px !important;
  }

  .hissho-card-title {
    font-size: 9px !important;
  }

  /* When tapped / active on mobile */
  .hissho-leadership-card:focus-within {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    height: auto;
    background-color: var(--hissho-scrim-color, #1B2A33);
  }

  .hissho-leadership-card:focus-within::before {
    opacity: 1;
    background: rgba(27, 42, 51, 0.26); /* Wash drops to .26 */
  }

  .hissho-leadership-card:focus-within::after {
    display: none; /* Disable absolute bottom gradients in relative static stack layout */
  }

  .hissho-leadership-card:focus-within .hissho-card-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 165/206;
  }

  .hissho-leadership-card:focus-within .hissho-card-text-block {
    position: relative; /* Position relative layout */
    padding: 22px 20px 22px; /* Bottom spacing */
    z-index: 4;
  }

  .hissho-leadership-card:focus-within .hissho-card-name {
    font-size: 19px !important;
  }

  .hissho-leadership-card:focus-within .hissho-card-bio {
    font-size: 13px !important;
  }

  .hissho-leadership-card:focus-within .hissho-card-bio-block {
    max-height: none;
    opacity: 1;
    margin-top: 14px;
  }
}
