details {
  max-width: 100%;
  margin-top:0px;
  vertical-align:top;
  
	&[open] summary::after {
		rotate: -180deg;
		background-color:#ffffff;
	}
  
  summary {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures text and chevron are at opposite ends */
    width: 100%;
    background-color: #163963;
    letter-spacing: 1.7px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    font-size: 20px;
    padding: 0.75rem 1.5rem 0.75rem 0.75rem; /* Extra right padding for click area */
    gap: 0; /* Remove gap if you want chevron flush with edge */

    /* Hide default marker */
    &::marker, &::-webkit-details-marker {
      display: none;
    }
    

    &::after {
      /* Chevron shape */
      --shape-chevron-width: 1rem;
      --s: calc(var(--shape-chevron-width) / 4);
      content: "";
      aspect-ratio: 7/5;
      background: currentColor;
      clip-path: polygon(0 0, 0 var(--s), 50% 100%, 100% var(--s), 100% 0, 50% calc(100% - var(--s)));
      flex-shrink: 0;
      width: var(--shape-chevron-width);
      rotate: 0deg;
      transition: rotate 0.5s ease;
      /* To align exactly at the right edge: */
      margin-left: auto;
    }
  }
}


  .media-meta--by {
  	display:none;
  }

.flex-parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.input-flex-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80vw;
  height: 100px;
  max-width: 1000px;
  position: relative;
  z-index: 0;
}

.input:hover {
  cursor: pointer;
}
.input {
  width: 40px;
  height: 40px;
  background-color: #2C3E50;
  position: relative;
  border-radius: 50%;
  z-index: 2; /* Higher than connectors */
}

.input::before,
.input::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2C3E50;
  width: calc(80vw / 4);
  height: 5px;
  max-width: calc(1000px / 4);
  z-index: 0; /* Lower than buttons */
}
.input::before {
  left: calc(-1 * (80vw / 4) + 12.5px);
    z-index: 1;
}
.input::after {
  right: calc(-1 * (80vw / 4) + 12.5px);
  	  -webkit-transition-duration: 0.8s;
  -webkit-transition-timing-function: ease;
    z-index: -1; /* Lower than buttons */
}
.input.active {
  position:relative;
  background-color: #2C3E50;
  z-index:3;
}
.input.active::before {
  background-color: #2C3E50;
    z-index: -1;
}
.input.active::after {
  background-color: #2C3E50;
    z-index: -1; /* Lower than buttons */
}
.input.active span {
  font-weight: 900;
}
.input.active span::before {
  font-size: 28px;
}
.input.active span::after {
  font-size: 28px;
    font-weight: 900;
  	  -webkit-transition-duration: 0.8s;
  -webkit-transition-timing-function: ease;
}
.input.active ~ .input,
.input.active ~ .input::before,
.input.active ~ .input::after {
  background-color: #bdd4de;
 z-index:-1;
 	  -webkit-transition-duration: 0.8s;
  -webkit-transition-timing-function: ease;
}
.input span {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  visibility: visible;
}
.input span::before {
  content: attr(data-info);
  position: absolute;
  top: -50px;
  left: 0%;
  transform: translateX(-50%);
  font-size: 28px;
  font-family:gelasio;
  color: #163963;
}
.description-flex-container {
  width: 80vw;
  font-size: 28px;
  margin-top: 0px;
    font-family:gelasio;

  max-width: 1000px;
}
.description-flex-container p {
  margin-top: 0;
  display: none;
}
.description-flex-container p.active {
  display: block;
}

.icon:hover {
	transform: scale(1.2);
	  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  cursor: default;
}

.tile:hover {
	transform: translateY(-30px);
	  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  cursor: default;
}

/* Large screens: recalc connector positions */
@media (min-width: 1250px) {
  .input::before {
    left: calc(-1 * (1000px / 4) + 12.5px);
  }
  .input::after {
    right: calc(-1 * (1000px / 4) + 12.5px);
  }
}

/* Small screens: shrink dots and connectors */
@media (max-width: 850px) {
  .input {
    width: 17px;
    height: 17px;
  }
  .input::before,
  .input::after {
    height: 3px;
  }
  .input::before {
    left: calc(-1 * (80vw / 4) + 8.5px);
  }
  .input::after {
    right: calc(-1 * (80vw / 4) + 8.5px);
  }
}
   .leadership-container {
            display: grid;
            grid-template-columns: repeat(2, minmax(150px, 1fr));
            gap: 10px;
            padding: 0 2em;
            width:100%;
            margin:auto;
        }
}

/* Mobile styles */
@media (max-width: 600px) {
  .flex-parent {
    justify-content: initial;
  }
  .input-flex-container {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 15vh;
  }
  .input {
    width: 60px;
    height: 60px;
    margin: 0 10px 50px;
    background-color: #AEB6BF;
  }
  .input::before,
  .input::after {
    content: none;
  }
  .input span {
    width: 100%;
    height: 100%;
    display: block;
  }
  .input span::before {
    top: calc(100% + 5px);
    transform: translateX(-50%);
    text-indent: 0;
    text-align: center;
  }
  .input span::after {
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ECF0F1;
  }
  .description-flex-container {
    margin-top: 30px;
    text-align: center;
  }
}

/* Extra small screens: ensure enough height for content */
@media (max-width: 400px) {
  body {
    min-height: 950px;
  }
}
Copy
