  :root {
  --navy: #003389;
  --navy-deep: #0a2e6e;
  --ink: #0d2f66;
  --sky: #eaf1fb;
  --sky-2: #dbe8fa;
  --paper: #ffffff;
  --line: #c9d9f2;
  --muted: #5b6b85;
  --footer-navy: #0d2f66;
  --radius: 30px; }

.wall {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  position: relative;
  z-index: 1; }

.wall .card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(13, 47, 102, 0.05);
  transition: box-shadow .35s ease, transform .35s ease, grid-column .35s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid #0b3d91;
  padding: 0 !important; }

.wall .card:hover {
  box-shadow: 0 12px 28px rgba(13, 47, 102, 0.14);
  transform: translateY(-2px); }

.wall .card:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px; }

.year {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 55px;
  line-height: .80;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.9), 0 1px 0 rgba(255, 255, 255, 0.6); }

.photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  /* background:var(--sky-2); */
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("/wp-content/themes/khalifauniversity//wp-content/themes/khalifauniversity/assets/scss/career-alumni/assets/images/ku-l.png") center/cover no-repeat; }

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.wall .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  /* background:linear-gradient(180deg, rgba(13,47,102,0) 0%, rgba(13,47,102,.55) 35%, rgba(13,47,102,.86) 100%); */
  background: rgba(0, 51, 137, 0.8);
  /* backdrop-filter:blur(3px);
-webkit-backdrop-filter:blur(3px); */
  color: #fff;
  padding: 10px 7px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin: 3px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px; }

.wall .footer .who h3 {
  margin: 0 0 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700; }

.wall .footer .who p {
  margin: 0;
  font-size: 12.5px;
  color: #b9c8e6;
  line-height: 1.4; }

.expand-btn {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease; }

.expand-btn svg {
  width: 14px;
  height: 14px;
  transition: transform .35s ease; }

.card:hover .expand-btn {
  background: rgba(255, 255, 255, 0.12); }

.bio-wrap {
  display: none; }

.bio-wrapper {
  margin-top: 10px; }

.bio-text {
  margin: 0; }

.read-more-btn {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  color: inherit; }

.read-more-btn:hover {
  opacity: 0.6; }

/* ---------- EXPANDED STATE ---------- */
.card.expanded {
  grid-column: 1 / -1;
  cursor: default;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(83deg, #ffffff 65%, #d8e3f3 100%); }

.card.expanded:hover {
  transform: none; }

.card.expanded .photo-wrap {
  width: 340px;
  flex: none;
  /* aspect-ratio:auto; */
  border-radius: var(--radius) 0 0 var(--radius); }

.card.expanded .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 40px;
  position: relative; }

.card.expanded .footer {
  display: none; }

.card.expanded .year {
  position: static;
  align-self: flex-start;
  order: -1;
  font-size: 44px;
  text-shadow: none;
  position: absolute;
  top: 24px;
  right: 28px;
  left: auto; }

.card.expanded .bio-wrap {
  display: block; }

.card.expanded .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--navy-deep);
  font-size: 26px;
  margin: 0 0 2px;
  padding-right: 90px; }

.card.expanded .name span {
  font-weight: 500;
  color: var(--navy); }

.card.expanded .title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  margin: 0 0 10px; }

.card.expanded .employer {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  margin: 0 0 12px; }

.card.expanded .bio {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 640px; }

.card.expanded .expand-btn {
  position: absolute;
  bottom: 26px;
  right: 32px;
  border-color: var(--navy);
  color: var(--navy); }

.card.expanded .expand-btn svg {
  transform: rotate(180deg); }

.card.expanded .expand-btn:hover {
  background: var(--sky); }

@media (max-width: 900px) {
  .wall {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .card.expanded {
    flex-direction: column; }

  .card.expanded .photo-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius) var(--radius) 0 0; }

  .card.expanded .year {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 32px; }

  .card.expanded .expand-btn {
    bottom: 20px;
    right: 20px; } }
@media (max-width: 560px) {
  .wall {
    grid-template-columns: 1fr; }

  body {
    padding: 32px 5vw 60px; } }
@media (prefers-reduced-motion: reduce) {
  .card,
  .expand-btn,
  .expand-btn svg {
    transition: none; } }
    /*==============================
=            POPUP             =
==============================*/
.wall {
  position: relative; }

.popup-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  min-height: 500px;
  display: flex;
  background: linear-gradient(83deg, #ffffff 65%, #d8e3f3 100%);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: .45s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border: 2px solid #003389;
  z-index: 100; }

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

    /*==============================
=           IMAGE              =
==============================*/
.popup-left {
  width: 360px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("/wp-content/themes/khalifauniversity/assets/scss/career-alumni/assets/images/ku-l.png") right top/cover no-repeat; }

.popup-left img {
  width: 100%;
  height: 100%;
  max-height: 490px;
  object-fit: cover;
  object-position: top;
  display: block; }

    /*==============================
=           CONTENT            =
==============================*/
.popup-right {
  flex: 1;
  padding: 25px;
  position: relative; }

.popup-flex {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  width: 100%; }

.popup-content {
  width: 100%; }

    /*==============================
=             YEAR             =
==============================*/
.popup-year {
  font-size: 58px;
  font-weight: 800;
  color: #003389;
  /* 
  font-family: Poppins, sans-serif; */
  line-height: .9;
  /* opacity: .12; */ }

.popup-year span {
  display: block;
  line-height: .9; }

    /*==============================
=            NAME              =
==============================*/
.popup-right h2 {
  margin: 0;
  font-size: 34px;
  color: #0d2f66;
  /* font-family: Poppins, sans-serif; */
  font-weight: 800; }

.popup-right h4 {
  margin: 12px 0 8px;
  color: #003389;
  font-size: 19px;
  font-weight: 700; }

.popup-right h5 {
  margin: 0 0 28px;
  color: #7a8597;
  font-size: 16px;
  font-weight: 600; }

    /*==============================
=            MAJOR             =
==============================*/
.popup-major {
  margin: -18px 0 20px;
  color: #003389;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase; }

.popup-major:empty {
  display: none; }

    /*==============================
=            QUOTE              =
==============================*/
.popup-quote {
  margin: 0 0 22px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid #003389;
  color: #0d2f66;
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  max-width: 640px; }

.popup-quote:empty {
  display: none; }

    /*==============================
=             BIO              =
==============================*/
.popup-right p.popup-bio,
.popup-right #popupBio {
  font-size: 14px;
  line-height: 1.8;
  color: #5b6b85;
  max-width: 500px; }

    /*==============================
=        CLOSE BUTTON          =
==============================*/
.close-btn {
  position: absolute;
  top: 10px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #003389;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  transition: .3s;
  z-index: 10; }

.close-btn:hover {
  background: #001d50;
  transform: rotate(90deg); }

    /*==============================
=         RESPONSIVE           =
==============================*/
@media (max-width: 992px) {
  .popup-overlay {
    flex-direction: column; }

  .popup-left {
    width: 100%;
    height: 320px; }

  .popup-right {
    padding: 35px; }

  .popup-year {
    font-size: 42px; } }
@media (max-width: 768px) {
  .expanded {
    position: relative; }

  .close-btn {
    top: 60px; }

  .popup-right {
    padding: 25px; }

  .popup-right h2 {
    font-size: 26px; }

  .popup-right h4 {
    font-size: 17px; }

  .popup-year {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3; } }

/*# sourceMappingURL=career-alumni-wall-fame.css.map */
