/* @TODO: Replace with SASS opacity */
/* /// */
/* FONTS */
/* HEADERS */
/* COMPONENTS */
/* SHAPES */
/* Leader Bio Popup Styles */
.bio-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out; }
  @media (min-width: 48rem) {
    .bio-popup-overlay {
      top: 0;
      height: 100vh; } }

.bio-popup {
  background: #fff;
  border-radius: 0.75rem;
  width: 90%;
  max-width: 37.5rem;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-out; }
  @media (max-width: 767px) {
    .bio-popup {
      width: 100vw;
      height: auto;
      max-width: 100vw;
      max-height: 100vh;
      border-radius: 0;
      animation: fadeIn 0.3s ease-out; } }
  @media (min-width: 48rem) {
    .bio-popup {
      width: 34.375rem;
      height: auto;
      max-height: 30rem;
      overflow: hidden; } }
  @media (min-width: 64rem) {
    .bio-popup {
      width: 46.25rem;
      max-width: 46.25rem;
      max-height: 23.75rem;
      overflow: hidden; } }

.bio-popup__header {
  position: relative;
  top: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: end;
  z-index: 10; }

.bio-popup__close {
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease; }
  .bio-popup__close .icon-ic-cross {
    font-size: 1.5rem;
    background: padding-box text #111210; }

.bio-popup__content {
  padding: 2rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: auto;
  margin-top: 1.5rem; }
  @media (min-width: 48rem) {
    .bio-popup__content {
      flex-direction: row;
      gap: 1.5rem;
      padding: 1.25rem 3rem 3.75rem;
      align-items: flex-start; } }
  @media (min-width: 64rem) {
    .bio-popup__content {
      flex-direction: row;
      gap: 2rem;
      align-items: flex-start; } }

.bio-popup__image-container {
  display: none; }
  @media (min-width: 48rem) {
    .bio-popup__image-container {
      display: flex;
      justify-content: center;
      flex-shrink: 0;
      justify-content: flex-start; } }

.bio-popup__image {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1); }
  @media (min-width: 48rem) {
    .bio-popup__image {
      width: 10rem;
      height: 13.75rem;
      border-radius: 0; } }

.bio-popup__info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }
  @media (min-width: 48rem) {
    .bio-popup__info {
      text-align: left;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.75rem; } }
  @media (min-width: 64rem) {
    .bio-popup__info {
      gap: 1rem; } }

.bio-popup__header-info {
  display: flex;
  flex-direction: column; }

.bio-popup__name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
  color: #111210;
  margin: 0; }
  @media (min-width: 48rem) {
    .bio-popup__name {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 2.375rem;
      margin: 0; } }

.bio-popup__position {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  line-height: normal;
  color: #111210; }
  @media (min-width: 48rem) {
    .bio-popup__position {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.25rem; } }

.bio-popup__biography {
  text-align: left;
  flex: 1;
  overflow-y: auto; }
  .bio-popup__biography p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
    color: #111210;
    margin: 0 0 1rem 0; }
    .bio-popup__biography p:last-child {
      margin-bottom: 0; }
    @media (min-width: 48rem) {
      .bio-popup__biography p {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.25rem;
        overflow: hidden;
        margin: 0; } }

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-1.25rem) scale(0.95); }
  to {
    opacity: 1;
    transform: translateY(0) scale(1); } }
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%); }
  to {
    opacity: 1;
    transform: translateY(0); } }

/*# sourceMappingURL=leader-bio-popup.css.map */
