/* style.css */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -.3px;
}

html {
  font-size: 18px;
  /* see https://css-tricks.com/fixed-headers-on-page-links-and-overlapping-content-oh-my/ */
  scroll-padding-top: 130px; /* must match #nav-menu height */
}

:root {
  --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #f4f4f4;
  --primary-color: #2b72fb;
  --white: white;
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

body {
  /* font-family: 'Montserrat', sans-serif; */
  /* letter-spacing: -0.4px; */
  color: #1c3144;
  font-size: 1.25rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  /* border-bottom: 2px solid #00857c; */
}

/* a:hover,
a:focus {
  border-bottom: 2px solid #f4a74f;

} */

p {
  margin-bottom: 1rem;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

.btn {
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
}

.nav-btn-l, .nav-btn-r {
  padding: .5rem .8rem;
  background-color: #f4a74f;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

.nav-btn-l {
  margin-right: 3rem;
}

.nav-btn-r {
  margin-right: 1.2rem;
  /* width: 7rem;  */
  /* So that "log in" and "log out" are the same width */
}

.nav-narrow {
  display: none;
}
.nav-wide {
  display: block;
}


.icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
}

#nav-menu {
  border-bottom: var(--border);
  position: fixed;
  background: #fff;
  width: 100%;
  z-index: 100;
  top: 0;
  height: 130px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  /* column-gap: 2rem; */
  column-gap: 0;
  height: inherit;
  padding: .75rem 3rem;
  /* background: #fff; */
}

.nav-buttons-wrapper {
      /* max-width: 1600px; */
    margin: 0 auto;
    /* padding-top: 1rem; */
    /* height: 50px; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* display: inline-block; */
    width: 100%;
    justify-content: flex-end;
}

.skip-link {
  background: #f4a74f;
  color: #1c3144;
  font-weight: 700;
  left: 45%;
  padding: 10px;
  position: absolute;
  transform: translateY(-102%);
}

.skip-link:focus {
  transform: translateY(0%);
  z-index: 200;
  transition: transform 0.3s;
}

.skip-link:focus-within {
  transform: translateY(0%);
  z-index: 200;
}

.skip-link a {
  font-weight: 700;
  text-decoration: underline;
}



/* ---------------------------------- */
/* -------- Universal Styles ---------*/
/* --------------------------------- */

.btn-white {
  border: 1px solid white;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-align: center;
  margin: 0.75rem 0;
}

.btn-white:hover,
.btn-white:focus {
  background-color: #f4a74f;
}

.breadcrumbs {
  margin-bottom: 3rem;
}

.breadcrumbs p, .breadcrumbs a {
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  /* border-bottom: 2px solid #f4a74f;
  border-width: medium; */
  background-image: linear-gradient(#00857c, #00857c);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.no-wrap {
  white-space: nowrap;
}

.italic {
  font-style: italic;
}

hr {
  margin: 4rem 0 2rem 0;
}

.richtext-image img {
  width: 100%;
  height: auto;
}

h2 + .block-embed {
  margin-top: 1rem;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 900;
  margin-top: 1rem;
}

h6 {
  font-size: 1.25rem;
  font-style: italic;
  /* font-weight: 600; */
}

figcaption {
  /* font-style: italic; */
}

ol ol {
  list-style-type: lower-alpha;
  margin-left: 3rem;
}

ol li {
  margin-bottom: 1rem;
}

ol ol > li {
  margin-bottom: 0;
}

.call-to-action {
  background-color: rgba(28,49,68,0.73);
  position: relative;
  height: 50vh;
  text-align: center;
  color: #fff;
  /* padding: 6rem 15rem; */
  display: flex;
  align-items: center;
  min-height: 400px;

}

.call-to-action::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(/assets/images/Calloutbox_background_forWeb.png);
  /* opacity: 0.1; */
  background-repeat: no-repeat;
  background-size: cover;
}

.call-to-action .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  max-width: 1200px;
  margin: 0 auto;
  height: inherit;
  padding: 0 2rem;
}

.call-to-action h2 {
  flex: 100%;
  font-size: 3rem;
  line-height: 3.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.call-to-action p {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  line-height: 2rem;
}

.call-to-action-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.call-to-action-btns .btn-white {
  background-color: #fff;
  color: #1c3144;
  margin: 1rem;
}

.call-to-action-btns .btn-white:hover,
.call-to-action-btns .btn-white:focus {
  background-color: #f4a74f;
}

@media screen and (max-width: 1400px) {
  .call-to-action .inner {
    max-width: 800px;
  }
  .call-to-action h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
  .call-to-action p {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 1.25rem
  }
}

@media screen and (max-width: 600px) {
  .call-to-action {
    height: inherit;
    padding: 4rem 0;
  }
  .call-to-action-btns .btn-white {
    font-size: 1rem;
    line-height: 1rem;
  }
  .call-to-action p {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}






/* ---------------------------- */
/* -------- Navigation ---------*/
/* ---------------------------- */

.menu {
  position: relative;
  background: var(--white);
  display: flex;
  justify-content: flex-end;
  /* background-color: cornsilk; */
  padding-top: 1rem;
  /* position: absolute;
  right: 1em; */
}

/* .menu-bar li:first-child .dropdown {
  flex-direction: initial;
  min-width: 480px;
} */

.menu-bar li:first-child ul:nth-child(1) {
  border-right: var(--border);
}

.menu-bar li:nth-child(n + 2) ul:nth-child(1) {
  border-bottom: var(--border);
}

.menu-bar .dropdown-link-title {
  font-weight: 600;
}

/* .menu-bar .nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.3rem;
  min-width: 60px;
  margin: 0 0.6rem;
} */

.menu-bar .nav-link a {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.3rem;
  min-width: 60px;
  margin: 0 0.6rem;
}

.nav-link.dropdown-btn.active {
  text-decoration: underline;
  text-decoration-color: #f4a74f;
}

.menu a:hover {
  text-decoration: underline;
  text-decoration-color: #f4a74f;
}

/* .menu-bar .nav-link:hover,
.dropdown-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.nav-link .bx:hover {
  text-decoration: none;
} */


.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container .search {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  /* flex-wrap: wrap; */
  justify-content: flex-end;
}

.nav-start .logo {
  /* max-width: 400px; */
}

.nav-start .logo-mobile {
  display: none;
  width: 225px;
}


.nav-start .logo img, .nav-start .logo svg {
  max-width: 360px;
  width: 360px;
  height: auto;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  /* top: 36px; */
  top: 57px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 1rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

.dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
}

.dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}

/* Keep the membership and members menu headers the same width
   so when you log in or out, nothing shifts around */
#membership-menu-item {
  width: 5.5em;
}
#members-menu-item {
  width: 5.5em;
  padding-left: 0.8em; /* even the extra space to the left and right */
}

.right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.right-container .search {
  position: relative;
}

.right-container img {
  border-radius: 50%;
}

.search input {
  background-color: var(--ash);
  border: none;
  border-radius: 6px;
  padding: 0.7rem;
  padding-left: 2.4rem;
  font-size: 16px;
  width: 100%;
  border: var(--border);
}

.search .bx-search {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 1.3rem;
  transform: translateY(-50%);
  opacity: 0.6;
}

#hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
}

.nav-chevron {
  display: none;
}

/* @media (max-width: 1345px) {
  .nav-start .logo svg {
    width: 25vw;
  }
} */

@media (max-width: 1215px) {
  /* .nav-start .logo {
    display: none;
  }
  .nav-start .logo-mobile {
    display: block;
  } */
}

@media (max-width: 1310px) {
  #hamburger {
    display: block;
  }

  .nav-chevron {
    display: block;
  }

  .nav-link.dropdown-btn.active {
    text-decoration: none;
  }

  /* Replace down chevron with right chevron on active nav buttons to show "go" vs "expand"  */
  .dropdown-btn.active + .nav-chevron .bx-chevron-down {
    display: none
  }
  .dropdown-btn:not(.active) + .nav-chevron .bx-chevron-down {
    display: block
  }

  .dropdown-btn.active + .nav-chevron .bx-chevron-up {
    display: block
  }
  .dropdown-btn:not(.active) + .nav-chevron .bx-chevron-up {
    display: none
  }

  .nav-container {
    padding: 1.2rem;
  }

  .menu {
    display: none;
    position: absolute;
    top: 130px;
    left: 0;
    min-height: 100vh;
    width: 100vw;
    padding-top: 0;
  }

  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }

  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .menu.show,
  .dropdown.active {
    display: block;
  }

  .dropdown ul {
    padding-left: 0.3rem;
  }

  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .menu-bar .nav-link a {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
    cursor: pointer;
    /* text-decoration: underline;
    text-decoration-color: #f4a74f; */
  }

  /* a.dropdown-link {
    text-decoration: underline;
    text-decoration-color: #f4a74f;
  } */

  .menu-bar .nav-link .nav-chevron .bx {
    font-weight: 600;
    font-size: 1.2rem;
  }

  .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }

  .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }

  #members-menu-item {
    /* don't need the extra padding to center "members" in the hamburger menu like we do in the desktop nav bar */
    padding-left: 0.3rem; /* re-apply default padding left from '.menu-bar .nav-link a' */
  }
}

@media screen and (max-width: 1024px) {
  /* .nav-start .logo svg {
    width: 30vw;
  } */
}

/* @media screen and (max-width: 840px) {
   .nav-start .logo svg {
     width: 360px;
   }
} */

@media screen and (max-width: 820px) {
  /* .nav-start .logo {
    display: none;
  }
  .nav-start .logo-mobile {
    display: block;
  } */
  .nav-narrow {
    /* show the buttons inside the mobile nav (rather than the main nav) when the screen is too narrow to show them */
    display: block;
  }
  .nav-wide {
    /* hide the buttons from the main nav when the screen is too narrow to show them */
    display: none;
  }
  li.nav-narrow {
    /* don't show the horizontal line under the buttons inside the mobile nav */
    border-bottom: 0 !important;
  }
  li.nav-narrow a {
    /* make the buttons inside the mobile nav menu the same width */
    width: 180px;
  }
  .nav-container {
    padding: 1rem;
  }
  /* .nav-start {
    height: 100%;
  } */
  .nav-start .logo-mobile {
    height: 65px;
    max-height: 100%;
  }
  .nav-start .logo-mobile img {
    max-height: 100%;
  }
  .nav-start .logo-mobile #nav-logo-mobile-svg {
    height: 100%;
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  #nav-menu {
    height: 100px;
  }
  html {
    /* see https://css-tricks.com/fixed-headers-on-page-links-and-overlapping-content-oh-my/ */
    scroll-padding-top: 100px; /* must match #nav-menu height */
  }
  .menu {
    top: 100px;
  }
  .nav-start .logo img {
    width: 280px;
    max-width: 280px;
  }
}

@media screen and (max-width: 600px) {
  .right-container {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .nav-start .logo img {
    width: 250px;
    max-width: 250px;
  }
}

@media screen and (max-width: 340px) {
  .nav-start .logo img {
    width: 210px;
    max-width: 210px;
  }
  .home .home-banner .home-banner-links a {
    font-size: .9rem;
  }
}



/* don't need this any longer
@media screen and (max-width: 520px) {
  .nav-btn-l, .nav-btn-r {
    display: none;
  }
}
*/




/* ----------------- */
/* ----HOME PAGE---- */
/* ----------------- */

.home .home-banner {
  display: flex;
  background-image: url("/assets/images/APA_Logo_Mark_outline_orange_1000px_v2.png");
  height: 80vh;
  background-repeat: no-repeat;
  background-position: bottom right;
  /* background-size: 50%; */
  background-size: clamp(900px, 70%, 1200px);
  align-items: center;
  padding-left: 8rem;
  padding-right: 4rem;
  margin-top: 130px;
  /* display: none; */
}

.home .home-banner .inner {
  width: 80%;
  max-width: 1080px;
}

.home .home-banner h1 {
  font-size: 14rem;
  position: relative;
  color: rgba(0,125,117,0.88);
  font-weight: 900;
  max-width: 1500px;
  line-height: 12rem;
  -webkit-background-clip: text;
	background-clip: text;
	background-image: url('/assets/images/home_background_forText.png');
	background-repeat: no-repeat;
  background-size: cover;
}

.home .home-banner .subhead {
  font-size: 3.5rem;
  position: relative;
  color: #00857c;
  font-weight: 700;
  max-width: 1600px;
  line-height: 3.5rem;
  /* margin-top: 1rem; */
  margin-top: 0;
}

.home .home-banner .banner-h3 {
  font-size: 1.7rem;
  line-height: 2rem;
  margin-top: 1rem;
}

.home h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 3rem;
  /* margin-bottom: 1rem; */
}

.home h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 1rem;
}

.home .home-banner .home-banner-links {
  font-weight: 900;
  font-size: 2rem;
}

.home .home-banner .home-banner-links a {
  /* font-weight: 900;
  font-size: 2rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  margin-right: 4rem; */
  font-size: 1.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  margin-right: 4rem;
  border: 2px solid;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 1rem 2rem 1rem 0;
  background-image: none;
  display: inline-block;
  background-color: #fff;
}

body:not(.logged-in) .home .home-banner .home-banner-links a.if-logged-in {
  display: none;
}
body.logged-in .home .home-banner .home-banner-links a.if-not-logged-in {
  display: none;
}

body:not(.logged-out) .home .home-banner .home-banner-links a.if-logged-out {
  display: none;
}

.home .home-banner .home-banner-links a:hover,
.home .home-banner .home-banner-links a:focus {
  /* background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px; */
  background-color: #f4a74f;
}

.home .home-about {
  display: flex;
  /* background-image: url(/assets/images/Div 1 Social 2019 2.JPG); */
  /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 133, 124, 1.0)), url(/assets/images/Home_About_Background_wGradient.jpg); */
  background-image: url(/assets/images/Home_About_Background_wGradient_v2.jpg);
  min-height: 60vh;
  /* background-repeat: no-repeat; */
  align-items: center;
  background-size: cover;
  background-position: center;
  justify-content: flex-end;
  color: #fff;
  padding: 8rem;
  width: 100%;
}

.home .home-about .inner {
  max-width: 40vw;
}

.home .home-about p {
  /* font-size: 2rem; */
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: right;
  max-width: 860px;
}

.home .home-about p b {
  font-weight: 700;
}

.home .home-about h2 {
  text-align: right;
}

.home .home-about h2 a {
  /* font-size: 3rem;
  line-height: 3rem; */
  font-weight: 900;
  text-align: right;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}

.home .home-about a:hover,
.home .home-about a:focus {
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.announcement {
  display: flex;
  align-items: flex-start;
  max-width: 1500px;
  margin: 6rem auto;
  height: inherit;
  justify-content: center;
  padding: 0 3rem;
  flex-wrap: wrap;
  /* display: none; */
}

.announce-img {
  position: relative;
}

.announce-img .foreground {
  position: relative;
  z-index: 2;
}

.announce-img .background {
  position: absolute;
  left: -30px;
  top: -30px;
}

.announcement img {
  max-width: 20rem;
}

.announce-text {
  margin-left: 3rem;
  max-width: 600px;
}

.announce-text a {
  text-decoration: none;
  /* border-bottom: 2px solid #00857c; */
  background-image: linear-gradient(#00857c, #00857c);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
  font-weight: 900;
}

.announce-text a:hover,
.announce-text a:focus {
  /* border-bottom: 2px solid #f4a74f; */
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.announce-text i {
  font-style: italic;
}

.announce-text .main-announcement-link {
  font-size: 1.5rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  margin: 1rem 0;
  border-bottom: none;
  background-image: none;
}

.home-highlights {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 6rem;
  color: #fff;
  /* display: none; */
  position: relative;
}

.home-highlights .inner {
  max-width: 1500px;
  margin: 0 auto;
  /* background-color: #00857c; */
  background-color: rgba(0,133,124,0.85);
  padding: 3rem 3rem 6rem 3rem;
  /* background-image: url(/assets/images/APABrochure_Cover_ForWeb.png);
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten; */
  position: relative;

}

.home-highlights .inner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(/assets/images/member_highlights_background.png);
  /* opacity: 0.1; */
  background-repeat: no-repeat;
  background-size: cover;
}

.home-highlights .awards-carousel {
  display: flex;
  flex-basis: 100%;
  border-bottom: 1px solid;
  padding-bottom: 2rem;
}

.home-highlights .awards-carousel .home-award {
  margin-left: 3rem;
}

.home-highlights h2 {
  /* background-color: #f4a74f;
  padding: 1rem 2rem;
  margin: -2rem;
  z-index: 1;
  position: absolute;
  color: #1c3144; */
  text-transform: uppercase;
  text-align: center;
}

.home-highlights .category {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin: .5rem 0;
  /* margin-bottom: .5rem; */
}

.home-highlights .name {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.home-highlights .awards-carousel img {
  width: 100%;
  border-radius: 100%;
  min-width: 250px;
  max-width: 400px;
}

.home-highlights .highlight-div img {
  width: 100%;
  border-radius: 100%;
  max-width: 18rem;
  /* min-width: 250px;
  max-width: 400px; */
}

.home-member-highlights {
  display: flex;
  /* gap: 4rem; */
  justify-content: flex-start;
  flex-basis: 100%;
  margin-top: 3rem;
}

.home-member-highlights .highlight-div {
  flex: 30%;
  /* padding: 2rem; */
  text-align: center;
  border-right: 1px solid;
  padding: 0 4rem;
}

.home-member-highlights .highlight-div:last-of-type {
  border-right: none;
}

.home-links {
  background-color: rgba(0,133,124,0.9);
  position: relative;
}

.home-links-wrap {
  display: flex;
  max-width: 1500px;
  margin: 6rem auto;
  text-align: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 3rem 0;
}

.home-links::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(/assets/images/Home_Links_background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.home-links-wrap .inner {
  width: 30%;
  padding: 2rem;
}

.home-links-wrap .inner img {
  width: 100%;
  border-radius: 100%;
}

.home-links-wrap .inner:hover,
.home-links-wrap .inner:focus {
  background-color: #f4a74f;
  border-radius: 5px;

}

.home-award-winners {
  display: flex;
  max-width: 1500px;
  margin: 9rem auto;
  /* gap: 3rem; */
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.home-award-winners .h-award-header {
  text-align: right;
  position: relative;
  padding-right: 2rem;
}

.home-award-winners .h-award-header img {
  height: 9rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.home-award-winners .h-award-header h2 {
  font-size: 5rem;
  line-height: 4.5rem;
}

.home-award-winners .h-award-header h3 {
  font-size: 2rem;
  line-height: 2rem;
}

.award-winner-summary .h-award-link, .h-award-list .h-award-link {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  margin: 0;
  border-bottom: none;
  color: #00857c;
  background-image: none;
}

.h-award-list .h-award-link {
  margin-top: 1rem;
}

.h-award-list h3 a {
  font-size: 1.5rem;
  line-height: 1.6rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 1rem;
}

.home .h-award-list h3 {
  line-height: 1.6rem;
}

.h-award-list a:hover,
.h-award-list a:focus {
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.home-membership {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.home-links-wrap .inner h2 {
  color: #fff;
  margin-top: 0;
}

.home-membership .left, .home-membership .right {
  width: 50%;
  /* padding: 6rem; */
  justify-content: center;
  border: solid 2px #f4a74f;
}

.home-membership .left .inner, .home-membership .right .inner {
  position: relative;
  width: 100%;
}

.home-membership .triangle-element {
  display: flex;
  position: absolute;
  margin: 0 auto;
  width: 100%;
  height: 60px;
  justify-content: center;
}

.home-membership .triangle-element img {
  max-width: 120px;
  height: 100%;
}

.home-membership .inner-text {
  padding: 6rem;
  max-width: 1000px;
  margin: 0 auto;
}

.home-membership .inner-text h2 {
  margin-bottom: 1rem;
}

.home-membership a {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-membership a:hover,
.home-membership a:focus {
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

@media screen and (max-width: 1600px) {
  .home .home-about .inner {
    max-width: 60vw;
  }
}

@media screen and (max-width: 1400px) {
  .home .home-banner h1 {
    /* font-size: 5rem;
    line-height: 5rem; */
    font-size: 10rem;
    line-height: 10rem;
  }
  .home .home-banner .subhead {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
  .home-membership .inner-text {
    padding: 5rem 3rem 5rem 3rem;
  }
  .home .home-about {
    padding: 6rem;
  }
  /* .home .home-about p {
    font-size: 1.5rem;
    line-height: 1.75rem;
  } */
  /* .home .home-about h2 a {
    font-size: 2.5rem;
  } */
  .home-highlights .inner {
    padding: 3rem 0 6rem 0;
  }
  .home-highlights .inner h2 {
    padding-left: 3rem;
  }
  /* .home-highlights .name {
    font-size: 2rem;
    line-height: 2.25rem;
  } */
  .home-member-highlights .highlight-div {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 1400px) and (orientation : portrait) {
  .home .home-banner {
    background-size: clamp(1000px, 110%, 1400px);
    background-position-x: 12rem;
  }
}

@media screen and (max-width: 1121px) {
  .home .home-banner h1 {
    /* font-size: 4rem;
    line-height: 4.25rem; */
    font-size: 8rem;
    line-height: 8rem;
  }
  .home .home-banner .subhead {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .home .home-banner .banner-h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-top: .75rem;
  }
  .announce-text {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .home .home-banner {
    padding-left: 4rem;
  }
  .home .home-banner .inner {
    width: 100%;
  }
  .home .home-banner .home-banner-links a {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

@media screen and (max-width: 960px) {
  .home-links-wrap .inner {
    padding: 1rem;
  }
  .home h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 1rem;
  }
  .announcement img {
    max-width: 15rem;
  }
  .home-membership .inner-text {
    padding: 3rem;
  }
  .highlight-div .btn-white {
    font-size: 1rem;
    padding: .75rem;
  }
}

@media screen and (max-width: 900px) {
  /* .home .home-about p {
    font-size: 1.5rem;
    line-height: 1.75rem;
  } */
  .home .home-banner {
    padding-left: 2rem;
    padding-right: 2rem;
    /* background-size: 75%; */
  }
}

@media screen and (max-width: 768px) {
  .home .home-banner {
    background-position-x: 6rem;
  }
  .home .home-banner h1 {
    /* font-size: 4rem;
    line-height: 4rem; */
    font-size: 7rem;
    line-height: 7rem;
  }
  .home .home-banner .subhead {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-top: 0;
  }
  .home .home-banner .banner-h3 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-top: .75rem;
  }
  .home .home-about {
    padding: 4rem;
    min-height: 40vh;
  }
  .home .home-about .inner {
    max-width: 100vw;
  }
  .home-links-wrap {
    max-width: 100vw;
  }
  .home-member-highlights .highlight-div {
    padding: 2rem;
  }
  .home-highlights .category {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .home-highlights .name {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  .highlight-div .btn-white {
    font-size: 1rem;
  }
  .home-award-winners .h-award-header h2 {
    font-size: 4rem;
    line-height: 3.75rem;
  }
  /* .home-member-highlights {
    flex-wrap: wrap;
  }
  .home-member-highlights .highlight-div {
    flex: 100%;
    padding: 3rem 6rem 3rem 6rem;
  } */
}

@media screen and (max-width: 767px) {
  .home .home-banner {
    margin-top: 100px;
  }
  .home-member-highlights {
    flex-wrap: wrap;
    margin-top: 0;
  }
  .home-member-highlights .highlight-div {
    flex: 60%;
    border-right: none;
  }
  .home-highlights .inner h2 {
    text-align: center;
    border-bottom: 1px solid;
    margin: 0 auto;
    width: 80%;
    padding-left: 0;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 740px) {
  .home-award-winners {
    flex-wrap: wrap;
  }
  .home-award-winners .h-award-header {
    padding-right: 0;
  }
  .h-award-list {
    margin-top: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 680px) {

  .home .home-banner .home-banner-links a {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .home .home-banner h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
  .home-membership .left, .home-membership .right {
    width: 100%;
  }
  .home-links-wrap .inner {
    width: 70%;
  }
}

@media screen and (max-width: 580px) {
  .home .home-banner .subhead {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

@media screen and (max-width: 520px) {
  .home .home-banner {
    background-position-x: 0rem;
    background-size: 180%;
  }
  .home .home-banner h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
  /* .home .home-banner .subhead {
    font-size: 1.75rem;
    line-height: 1.75rem;
  } */
  .home .home-banner .home-banner-links a {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: .5rem;
    margin-top: .5rem;
  }
  .home .home-about p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .home .home-about h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .award-winner-summary .h-award-link {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 420px) {
  .home .home-banner h1 {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
}

@media screen and (max-width: 414px) {
  /* .home-award-winners .h-award-header h2 {
    font-size: 4rem;
    line-height: 4rem;
  } */
  .home .home-banner {
    height: 80vh;
    padding: 0 1rem 1rem 1rem;
  }
  .home .home-about {
    padding: 2.5rem;
  }
  .contact-section {
    font-size: .9rem;
    line-height: 1rem;
  }
  .announcement {
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 375px) {
  .home .home-banner h1 {
    font-size: 3.75rem;
    line-height: 3.75rem;
  }
  .home .home-banner .home-banner-links a {
    font-size: 1rem;
    line-height: 1.25rem;
    margin-right: 0;
  }
}





/* ----------------- */
/* ----BASIC PAGE---- */
/* ----------------- */

.basic-page .banner {
  height: 30vh;
  margin-top: 130px;
  background-color: #00857c;
  position: relative;
  /* background: linear-gradient(to right top, #005e58, #008175); */
  /* A gradient going from the bottom right to the top left corner,
   starting blue and finishing red */

  background: linear-gradient(to right top, #005e58, 60%, #008175, #00a79c);
  /* Color hint: A gradient going from the left to right,
   starting red, getting to the midpoint color
   10% of the way across the length of the gradient,
   taking the rest of the 90% of the length to change to blue */
}
/* #00a79c */
/* #18b68c */

.basic-page .banner .inner {
  position: absolute;
  width: 100%;
  bottom: 2rem;
}

.section-page .banner {
  height: 30vh;
  margin-top: 130px;
  background-color: rgba(0,133,124,0.9);
  position: relative;
}

.section-page .banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(/assets/images/Section_Page_background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.section-page .banner .inner {
  position: absolute;
  width: 100%;
  bottom: 2rem;
}

.basic-page .banner h1, .section-page .banner h1  {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: inherit;
  font-size: 5rem;
  line-height: 5rem;
}
.basic-page .banner h1 span, .section-page .banner h1 span {
  font-weight: 900;
  margin: 0 15px;
  color: #fff;
}
.basic-page .banner h1:before,
.basic-page .banner h1:after,
.section-page .banner h1:before,
.section-page .banner h1:after {
  background: #00ccbe;
  height: 15px;
  flex: 1;
  content: '';
  flex-basis: 6rem;
  flex-grow: inherit;
}
.basic-page .banner .left-line:after, .section-page .banner .left-line:after {
  background: none;
}

.main-body {
  margin: 3rem auto 9rem auto;
  max-width: 1200px;
  font: 1.1rem;
  padding: 0 3rem;
}

.basic-page .intro-text {
  font-size: 1.5rem;
  line-height: 2rem;
}

.main-body h2 {
  font-weight: 900;
  font-size: 3rem;
  margin-top: 3rem;
  line-height: 3.25rem;
}

.main-body a {
  /* border-bottom: 2px solid #00857c;
  border-width: medium; */
  background-image: linear-gradient(#00857c, #00857c);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.main-body a:hover,
.main-body a:focus {
    /* border-bottom: 2px solid #f4a74f;
    border-width: medium; */
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.main-body .breadcrumbs a {
  border-bottom: none;
  background-image: none;
}

.main-body .breadcrumbs a:hover,
.main-body .breadcrumbs a:focus {
  /* border-bottom: 2px solid #f4a74f;
  border-width: medium; */
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

/* .main-body h2:first-of-type {
  margin-top: 0;
} */

/* .main-body h2:first-of-type + p {
  margin-top: 4rem;
} */

.main-body b {
  font-weight: 700;
}

.main-body i {
  font-style: italic;
}

.main-body h2 + p, .main-body h3 + p {
  margin-top: 1rem;
}

.main-body h2 > a {
  font-weight: 900;
}

.main-body h3 {
  font-size: 2rem;
  margin-bottom: .5rem;
  font-weight: 900;
  margin-top: 2rem;
  line-height: 2.25rem;
}

.main-body h2 + h3 {
  margin-top: 0;
}

.main-body h3 + h4 {
  margin-top: -.5rem;
}

.main-body h4 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.75rem;
  /* margin-top: 1rem; */
  margin-bottom: 0;
}

.main-body h4 + h5 {
  margin-top: 0;
}

/* .main-body p {
  margin-bottom: .5rem;
} */

.basic-page ul {
  list-style: disc;
  padding-left: 1rem;
}

.basic-page ol p {
  margin-bottom: 0;
}

.basic-page ol li {
  margin: 0;
}

.basic-page ul li:last-child {
  margin-bottom: 2rem;
}

.basic-page .main-list-item {
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .main-body h2 {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  .main-body h3 {

  }
}

@media screen and (max-width: 767px) {
  .basic-page .banner, .section-page .banner {
    margin-top: 100px;
  }
}


@media screen and (max-width: 700px) {
  .basic-page .banner h1, .section-page .banner h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}

@media screen and (max-width: 600px) {
  .main-body {
    padding: 0 1.5rem;
  }
  .basic-page .intro-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media screen and (max-width: 480px) {
  .basic-page .banner h1, .section-page .banner h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .basic-page .banner, .section-page .banner {
    height: 20vh;
  }
  .basic-page .banner .inner, .section-page .banner .inner {
    bottom: 1rem;
  }
}






/* ----------------- */
/* ----SECTION PAGE---- */
/* ----------------- */

.section-page .main-body {
  max-width: 1500px;
}

.section-page .main-body .intro-text {
  max-width: 1500px;
  margin: 0 auto;
  font-size: 1.5rem;
}

.section-page .main-body .intro-text p {
  line-height: 2rem;
}

.section-page .main-body h2 {
  margin-top: .5rem;
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-bottom: 0.25rem;
}

.section-page .main-body p {
  line-height: 1.5rem;
}

.section-page .main-body h2 + p {
  margin-top: 0;
}

.circle-links-div {
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

/* .circle-links-div .circle-link {
  flex:30%;
  padding: 2rem;
  flex-grow: 0;
  width: 30%;
}  */

.circle-links-div .link-wrap {
  width: 30%;
  background-image: none;
  padding: 2rem;
}

.circle-links-div .circle-link img {
  width: 100%;
  border-radius: 100%;
  /* min-width: 250px */
}

/* .circle-links-div .circle-link img::before {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.25s;
  z-index: 1;
  background-color: rgba(46,204,113,0.4);
  background: linear-gradient(50deg, rgba(24,182,140,0.9), rgba(0,204,190,0.4));
  color: #fafafa;
  border-radius: 100%;
  height: 98%;
  content: '';
} */

/* .circle-links-div .circle-link img:hover {
  opacity: 1;
} */

.circle-links-div .circle-link-text {
  text-align: center;
}

.circle-links-div .section-img-link {
  background-image: none;
}

.circle-links-div .section-img-link:hover,
.circle-links-div .section-img-link:focus {
  background-image: none;
}

/* .section-img-link {
  display: block;
  position: relative;
} */

.circle-link {
  display: block;
  position: relative;
}

/* .img-overlay {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.25s;
  z-index: 1;
  background-color: rgba(46,204,113,0.4);
  background: linear-gradient(50deg, rgba(24,182,140,0.9), rgba(0,204,190,0.4));
  color: #fafafa;
  border-radius: 100%;
  height: 98%;
}

.img-overlay:hover,
.img-overlay:focus {
  opacity: 1;
} */

.circle-links-div .link-wrap:hover, .circle-links-div .link-wrap:focus {
  background-color: rgba(244,167,79,0.4);
  background-image: none;
}


@media screen and (max-width: 1200px) {
  .circle-links-div .link-wrap {
    width: 45%;
  }
  .section-page .main-body h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
  }
}

@media screen and (max-width: 768px) {
  .circle-links-div .link-wrap {
    padding: 1rem;
  }
  .section-page .main-body p {
    line-height: 1.25rem;
  }
}

@media screen and (max-width: 660px) {
  .circle-links-div {
    justify-content: center;
  }
  .circle-links-div .link-wrap {
    padding: 0 0 2rem 0;
    width: 90%;
  }
  .section-page .main-body .intro-text p {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

}

/* @media screen and (max-width: 890px) {
  .circle-links-div .circle-link {
    flex: 100%;
    width: 100%;
  }
} */





/* --------------------------- */
/* ----ANNOUNCEMENT PAGE---- */
/* -------------------------- */

.all-announcements .announcement {
  margin: 3rem auto;
  border-bottom: 1px solid;
  padding: 0 0 3rem 0;
  flex-wrap: nowrap;
}

.all-announcements .announcement:first-of-type .announce-text a {
  /* font-weight: 900;
  font-size: 2rem;
  line-height: 2.5rem; */
}

.announcement-page .main-body h2 {
  margin-top: 0;
  margin-bottom: .5rem;
}

@media screen and (max-width: 1024px) {
  .announcement-page .main-body h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
  .announcement-page .main-body h3 {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .announcement-page .main-body h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  .announcement-page .main-body h3 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .all-announcements .announcement {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .announce-text {
    margin-left: 0;
  }
}




/* --------------------------- */
/* ----MEMBER HIGHLIGHTS PAGE---- */
/* -------------------------- */

.highlights {
  display: flex;
  align-items: flex-start;
  max-width: 1500px;
  /* margin: 3rem auto; */
  height: inherit;
  justify-content: center;
  border-bottom: 1px solid;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.highlights:first-of-type {
  padding-top: 0;
}

.highlights img {
  max-width: 20rem;
  border-radius: 100%;
}

.highlight-text {
  margin-left: 3rem;
}

.highlight-text .category {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #00857c;
}

.highlight-text .name {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 900;
}

.highlight-text .affiliation {
  font-weight: 900;
  margin-bottom: 1rem;
  color: #00857c;
}

.highlight-text .rich-text h4 {
  /* font-size: 1rem; */
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

@media screen and (max-width: 900px) {
  .highlights {
    flex-wrap: wrap;
  }
  .highlight-text {
    margin-left: 0;
  }
  .highlight-text .category {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .highlights img {
    width: 100%;
    height: auto;
  }
  .highlight-text .name {
    font-size: 2rem;
    line-height: 2.25rem;
    margin-bottom: 0;
  }
  .highlight-text .affiliation {
    font-size: 1.25rem;
    line-height: 1.4rem;
  }
  .highlight-text .rich-text h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

}







/* --------------------------- */
/* ----AWARD WINNERS PAGE---- */
/* -------------------------- */

.award-winners-page .main-body {
  max-width: 1500px;
}

.all-award-winners {

}

.award-winner-summary {
  display: flex;
  align-items: center;
  margin: 6rem auto;
  height: inherit;
  margin: 3rem auto;
  border-bottom: 1px solid;
  padding: 0 0 3rem 0;
  flex-wrap: nowrap;
  justify-content: center;
}

.award-img {
  display: flex;
  gap: 1rem;
  margin-right: 2rem;
  /* justify-content: flex-end; */
  justify-content: center;
  height: fit-content;
  flex: 30%;
  /* min-width: 30%; */
  flex-wrap: wrap;
}

.award-winner-summary .summary-text {
  flex: 70%;
}

.two-people-award .two-photos {
  flex-wrap: wrap;
}

.award-subhead {
  font-style: italic;
  font-weight: 700;
}



.award-img img {
  /* max-height: 300px; */
  width: 100%;
  height: auto;
}

.award-img .book-covers {
  /* max-height: 300px; */
  max-height: 450px;
  width: auto;
}

.people-award .circle-img {
  border-radius: 100%
}

.two-people-award .two-photos .circle-img {
  /* max-height: 200px; */
}

.summary-text .award-name {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: #00857c;
  margin: 0;
}

.summary-text .award-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 2.5rem;
  margin: 0 0 1rem 0;
}

.anastasi-award .summary-text .award-name {
  margin-bottom: 1rem;
}

.anastasi-award .summary-text .award-title {
  margin-bottom: 0rem;
}

.anastasi-award .summary-text .award-subhead {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .summary-text .award-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

@media screen and (max-width: 680px) {
  .award-winner-summary {
    display: block;
  }
  .two-people-award .two-photos {
    flex-wrap: nowrap;
    margin-bottom: 2rem;
  }
  .two-people-award .two-photos .circle-img {
    width: 50%;
  }
  .award-img {
    justify-content: center;
    margin-bottom: 2rem;
    margin-right: 0;
  }
  .people-award .circle-img {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .summary-text .award-name {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .summary-text .award-title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .people-award .circle-img {
    width: 80%;
  }
}

@media screen and (max-width: 360px) {
  .summary-text .award-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}








/* -------------------------------- */
/* ----INDIVIDUAL AWARDS PAGES ---- */
/* ------------------------------- */

.indv-award-page .main-body {
  max-width: 1500px;
}

.indv-award-page .main-body h2 {
  text-transform: uppercase;
  color: #00857c;
}

.indv-award-page .main-body .intro-text {
  font-size: 2rem;
  line-height: 2.5rem;
}

.indv-award {
  display: flex;
  align-items: flex-start;
  margin: 6rem auto;
  height: inherit;
  /* border-bottom: 2px solid #00857c; */
  padding: 0 0 3rem 0;
  flex-wrap: nowrap;
  justify-content: center;
}

.indv-award-page .summary-text .award-title {
  font-size: 3rem;
  line-height: 3.25rem;
}

.book-award-img, .lifetime-award-img {
  display: block;
  /* gap: 1rem; */
  margin-right: 3rem;
  /* flex: 30%; */
  /* justify-content: flex-end; */
  height: fit-content;
  flex: 40%;
  min-width: 30%;
  /* flex-wrap: wrap; */
}

.book-award-img img, .lifetime-award-img img {
  /* max-height: 300px;
  width: auto;
  height: 100%; */
  max-width: 100%;
  /* padding-right: 3rem; */
}

.lifetime-award-img img {
  border-radius: 100%;
}

.book-link {
  margin-top: 1rem;
}

.book-link a {
  display: block;
  border: 2px solid #00857c;
  border-radius: 5px;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  background-image: none;
}

.book-link a:hover,
.book-link a:focus {
  background-color: #f4a74f;
  background-image: none;
}

.authors-div {
  margin-top: 3rem;
}

.authors-div .author-name-margin-bottom {
  margin-bottom: 0;
}

.author-pics {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.author-img {
  padding-right: 3rem;
}

.author-pics p {
  font-weight: 900;
  font-size: 1.5rem;
  text-align: center;
}

.author-img .circle-img {
  border-radius: 100%;
  max-width: 300px;
  height: auto;
}

.basic-page .authors-div h4  {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: inherit;
  font-size: 5rem;
  line-height: 5rem;
}
.basic-page .authors-div h4 span {
  margin: 0 15px 0 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #00857c;
}
.basic-page .authors-div h4:before,
.basic-page .authors-div h4:after {
  background: #00857c;
  height: 2px;
  flex: 1;
  content: '';
  flex-basis: 100%;
  flex-grow: inherit;
}
.basic-page .authors-div h4:before {
  display: none;
}

.article-link a {
  font-weight: 900;
}

@media screen and (max-width: 1200px) {
  .indv-award-page .main-body .intro-text {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 900px) {
  .anastasi-award-page .indv-award {
    margin-bottom: 0;
  }
  .second-anastasi-award {
    margin-top: 3rem;
  }
}




@media screen and (max-width: 768px) {
  .indv-award-page .summary-text .award-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  .author-img .circle-img {
    max-width: 200px;
  }
  .authors-div {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .indv-award {
    flex-wrap: wrap;
  }
  .indv-award-page .summary-text {
    margin-top: 2rem;
  }


}

@media screen and (max-width: 480px) {
  .indv-award-page .summary-text .award-title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 360px) {
  .indv-award-page .summary-text .award-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}





/* --------------------------- */
/* ----APPLY FOR AWARDS PAGE and GRANTS PAGE---- */
/* -------------------------- */

.award-page .apply-awards-div, .grants-page .apply-awards-div {
  border-bottom: 1px solid #00857c;
  padding-bottom: 3rem;
}

.award-page .apply-awards-div .deadline, .grants-page .apply-awards-div .deadline {
  font-weight: 500;
}

.award-page .apply-awards-div .h-award-link, .grants-page .apply-awards-div .h-award-link {
  font-weight: 900;
  text-transform: uppercase;
}

.award-listing-page .apply-awards-text h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}

.award-page .apply-awards-text h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.award-page h2 + .rich-text {
  margin-top: 1rem;
}

.award-listing-page .apply-awards-text .deadline, .award-listing-page .apply-awards-text .sponsor {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 2rem;
  margin: 0;
}

.award-listing-page .apply-awards-text .deadline b, .award-listing-page .apply-awards-text .sponsor b {
  font-weight: 900;
}

.award-listing-page .apply-awards-text h4 {
    font-weight: 900;
    font-size: 1.75rem;
    margin-top: 3rem;
    line-height: 1.75rem;
    margin-bottom: .25rem;
}

.apply-section {
  border-top: 1px solid #00857c;
  margin-top: 3rem;
}

.past-recipients ul li p {
  margin-bottom: 0;
}

.past-recipients h5 {
  margin-top: 1.5rem;
}

.apply-awards-text ol {
  margin: 0 1rem 1rem 1rem;
}

.apply-awards-text ol li {
  margin-top: 1rem;
}

.apply-awards-text ol li ol li {
  margin: 0;
}

@media screen and (max-width: 600px) {
  .award-page .apply-awards-text h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  .award-page .apply-awards-div .deadline, .grants-page .apply-awards-div .deadline {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}






/* -------------------------------------------- */
/* ---- Journal Page ---- */
/* ------------------------------------------- */

.journal-covers {
  width: 30%;
  float: left;
  margin: 0 2rem 1rem 0;
}

.journal-covers img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .journal-covers {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  .journal-covers {
    width: 100%;
  }
}





/* ----------------- */
/* ----HISTORY PAGE---- */
/* ----------------- */

.history-page .history-text h2 {
  color: #00857C;
}

.history-page .history-text h3 {
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}






/* -------------------------------------------- */
/* ---- Meet the Executive Committee Page ---- */
/* ------------------------------------------- */

.ec-page .main-body {
  margin: 3rem auto 3rem auto;
}

.ec-page .ec-img img {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 100%;
}


.ec-page .admin-bio {
    /* border: 1px solid #00857c;
    padding: 3rem;
    width: 70%;
    margin: 2rem auto 3rem auto;
    text-align: center; */
    display: flex;
    align-items: center;
    max-width: 1500px;
    margin: 3rem auto;
    height: inherit;
    justify-content: center;
    /* border-bottom: 1px solid; */
    padding: 3rem 0;
    border-top: 1px solid;
}

.ec-page .admin-bio .ec-img {
  flex: 1;
}

.ec-page .admin-bio .ec-img img {
  max-width: none;
  width: 100%;
}

.ec-page .admin-bio .ec-bio-text {
  flex: 2;
}

.ec-bio-text {
  margin-left: 3rem;
}

.ec-bio-text .ec-title {
  font-weight: 900;
  /* margin-bottom: 1rem; */
  color: #00857c;
  font-size: 1.5rem;
}

.ec-page .admin-bio h2, .ec-page .pres-trio h2 {
  margin-top: 0;
}

.ec-page .admin-bio .ec-title {
  margin: 0 0 1rem 0;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0;
    text-transform: capitalize;
}

.ec-page .admin-bio .name  {
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 2.25rem;
  margin-top: 0;
  text-transform: capitalize;
}

.pres-trio-section {
  background-color: rgba(0,133,124,0.85);
  padding: 5rem 3rem 5rem 3rem;
  position: relative;
}

.pres-trio-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(/assets/images/Pres_Trio_background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.pres-trio-section h2 {
  font-weight: 900;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  line-height: 3.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ec-page .pres-trio {
    padding-top: 3rem;
    text-align: center;
    display: flex;
    color: #fff;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
    align-items: flex-start;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
    --cols: 3;
    --gap: 6rem;
    gap: var(--gap);
}

.ec-page .pres-trio .ec-bio {
  /* flex: 30%;
  padding: 3rem 4rem 0 4rem;
  max-width: 50vw; */
  flex-basis: calc(100% / var(--cols) - var(--gap) / var(--cols) * (var(--cols) - 1));
}

.ec-page .pres-trio .ec-title {
  /* font-weight: 900; */
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-top: 1rem;
}

.ec-page .pres-trio .name {
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 2.25rem;
}

.ec-page .pres-trio .ec-dates {
  font-style: italic;
}

.pres-elect {
  margin-bottom: 2rem;
}


.trio-description {
  text-align: justify;
  word-spacing: -2px;
  -webkit-hyphens: auto;
  -webkit-hyphenate-limit-before: 3;
  -webkit-hyphenate-limit-after: 3;
  -webkit-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-lines: 2;
  -webkit-hyphenate-limit-last: always;
  -webkit-hyphenate-limit-zone: 8%;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 2;
  hyphenate-limit-last: always;
  hyphenate-limit-zone: 8%;
}

.incoming-pres {
  border-top: 1px solid #fff;
  padding-top: 2rem;
}

.ec-page .main-body h2 {
  font-size: 3rem;
  line-height: 3rem;
  margin-top: 6rem;
}

.ec-page .main-body h3 {
  font-size: 2rem;
  line-height: 2.25rem;
  margin-top: 3rem;
  text-transform: uppercase;
}

.ec-page .main-body h4 {
  font-weight: 900;
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.ec-page .main-body p {
  margin-bottom: 0;
}

.past-presidents {
  margin-bottom: 9rem;
}

.ec-page .past-presidents h2 + p {
  font-style: italic;
  margin-bottom: 1rem;
  margin-top: 0;
}

.past-presidents ul {
  list-style: none;
  padding: 0;
}

.ec-open {
  border: 2px solid #f4a74f;
  padding: 2rem 4rem;
  text-align: center;
  /* font-weight: 600; */
  margin-top: 2rem;
}

.ec-open p, .ec-open p a {
  font-weight: 700;
}

@media screen and (max-width: 1400px) {
  /* .ec-page .pres-trio .ec-bio {
    padding: 0 2rem 0 2rem;
  } */
  .ec-page .pres-trio {
    --gap: 4rem;
  }
}



@media screen and (max-width: 1223px) {
  .ec-page .pres-trio {
    font-size: 1.1rem;
    line-height: 1.4rem;
  }
  /* .ec-page .pres-trio .ec-bio {
    max-width: none;
  } */
}

/* @media screen and (max-width: 800px) {
  .ec-page .admin-bio .ec-img img {

  }
} */

@media screen and (max-width: 1000px) {

}

@media screen and (max-width: 820px) {
  .ec-page .pres-trio {
    --cols: 1;
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .ec-page .admin-bio {
    flex-wrap: wrap;
  }
  .ec-page .admin-bio .ec-img {
    flex: 100%;
  }
  .ec-page .admin-bio .ec-img img {
    max-width: 360px;
  }
  .ec-page .admin-bio .ec-bio-text {
    flex: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 600px) {
  .pres-trio-section h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .pres-trio-section {
    padding: 1.5rem;
  }
  .ec-page .pres-trio .name {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .ec-page .pres-trio .ec-title {
    font-size: 1.25rem;
  }
  .ec-page .banner {
    height: 25vh;
  }
}









/* ----------------- */
/* ---- FAQs ---- */
/* ----------------- */

.faqs-text h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  line-height: 2.25rem;
  border-top: 1px solid #00857c;
  padding-top: 3rem;

}






/* --------------------------- */
/* ----CONTACT US PAGE---- */
/* -------------------------- */

.contact-page address {
  margin-bottom: 1rem;
}

.contact-page p {
  margin-bottom: 0;
}

.contact-page .contact-header {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0;
}

.contact-page .telephone {
  margin-bottom: 0;
}

.contact-page .email {
  margin-top: 1rem;
}




/* --------------------------- */
/* ----MEMBERSHIP PAGE---- */
/* -------------------------- */

.membership-page .main-body .intro-text b a {
  font-weight: 700;
}

.brochure-div {
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
}

.brochure-div .members-pdf {
  flex: 30%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.brochure-div .members-pdf img {
  width: 100%;
  height: auto;
}

.brochure-div .benefit-list {
  flex: 70%;
  margin-left: 4rem;
}

.brochure-div .benefit-list h2 {
  margin-top: 0;
}

.brochure-div .benefit-list ul {
  list-style: disc;
}

.brochure-div .highlight-btn {
  display: inline-block;
  border: 2px solid;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  margin: 2rem 0;
  background-image: none;
}

.brochure-div .highlight-btn:hover,
.brochure-div .highlight-btn:focus {
  background-image: none;
  background-color: #f4a74f;
}

.member-types {
  margin-top: 3rem;
}

/* .member-types-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.apa-member, .student-member, .professional-member {
  flex: 30%;
} */

.member-types-flex {
  --cols: 3;
  --gap: 30px;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.apa-member, .student-member, .professional-member {
  /* from https://stackoverflow.com/questions/72116170/account-for-gap-when-calculating-flex-basis
   * This calculates the width of the items in the flex box
   * 1. first divide 100% by the number of columns (e.g., 50% for 2 columns, etc)
   * 2. then subtract some extra to account for the space used by the gaps between the columns
   */
  flex-basis: calc(100% / var(--cols) - var(--gap) / var(--cols) * (var(--cols) - 1));
}


/* .flex {
  --cols: 3;
  --gap: 30px;
  display: flex;
  gap: var(--gap);
}

.flex-child {
  flex-basis: calc(100% / var(--cols) - var(--gap) / var(--cols) * (var(--cols) - 1));
} */

/* @media (max-width: 1000px) {
  .member-types-flex{
    --cols: 2;
  }
} */



.member-types-flex h3 {
  margin: .5rem 0 0 0;
}

.fellows-section {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 3rem;
}

.fellows-columns h3 {
  margin: 1rem 0;
}

.fellows-columns h3 a {
  font-weight: 900;
}

.member-types-flex h4 {
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.icon {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: #f4a74f;
}

.professional-member .icon {
  padding: .75rem;
}

.join-register-div {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.join-register-div .left, .join-register-div .right {
  width: 50%;
  /* padding: 6rem; */
  justify-content: center;
  border: solid 2px #f4a74f;
  background-color: #00857c;
  color: #fff;
}

.join-register-div .left .inner, .join-register-div .right .inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.join-register-div .triangle-element {
  display: flex;
  position: absolute;
  margin: 0 auto;
  width: 100%;
  height: 60px;
  justify-content: center;
}

.join-register-div .triangle-element img {
    max-width: 120px;
    height: 100%;
}

.join-register-div .inner-text {
    padding: 6rem;
    max-width: 1000px;
    margin: 0 auto;
    height: inherit;
    position: relative;
}

/* .join-register-div .inner-text .vertical-align {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
} */

.join-register-div .inner-text h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 900;
    line-height: 3rem;
}

.join-register-div a {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.join-register-div a:hover,
.join-register-div a:focus {
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.fellows-columns {
  display: flex;
  gap: 3rem;
}

.fellows-columns .left, .fellows-columns .right {
  flex: 50%;
}

.fellows-columns .right .icon {
  padding: .75rem;
}



@media screen and (max-width: 1400px) {
  .join-register-div .inner-text {
    padding: 5rem 3rem 5rem 3rem;
  }
}

@media screen and (max-width: 960px) {
  .join-register-div .inner-text {
    padding: 3rem;
  }
  .join-register-div .inner-text h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 928px) {
  .member-types-flex{
    --cols:1;
  }
  .apa-member, .student-member, .professional-member {
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 900px) {
  .brochure-div .benefit-list {
    flex: 55%;
  }
}

/* @media screen and (max-width: 820px) {
  .member-types-flex{
    --cols:1;
  }
} */

@media screen and (max-width: 680px) {
  .brochure-div {
    flex-wrap: wrap;
  }
  .brochure-div .benefit-list {
    flex: 100%;
    margin-left: 2rem;
  }
  .join-register-div .left, .join-register-div .right {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .fellows-columns {
    flex-wrap: wrap;
  }
  .fellows-columns .left, .fellows-columns .right {
    flex: 100%;
  }
}




/* --------------------------- */
/* ----WEBSITE REGISTRATION PAGE---- */
/* -------------------------- */

.reg-requirements {
  background-color: rgba(129, 173, 246, 0.2);
  padding: 3rem;
}

.reg-requirements h2 {
  margin-top: 0;
}

.reg-requirements h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.registration-page .web-reg-div {
  border-top: 1px solid;
  margin-top: 4rem;
}

.registration-page .web-reg-div h2 {
  margin-top: 2rem;
}

.registration-page .web-reg-div span {
  color: red;
}

.registration-page .web-reg-div i {
  font-style: italic;
}

.registration-page .web-reg-div button {
  display: inline-block;
  border: 2px solid;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  background-image: none;
}

.registration-page .web-reg-div button:hover,
.registration-page .web-reg-div button:focus {
background-image: none;
background-color: #f4a74f;
}

@media screen and (max-width: 480px) {
  .reg-requirements {
    padding: 1rem;
  }
}








/* --------------------------- */
/* ----FELLOWS STATUS PAGE---- */
/* -------------------------- */

#fellows-list {
  column-count: 3;
  line-height: 2rem;
}

.fellows-deadlines {
  background-color: rgba(129, 173, 246, 0.2);
  padding: 3rem;
}

.fellows-deadlines p {
  font-weight: 600;
}

@media screen and (max-width: 900px) {
  #fellows-list {
    column-count: 2;
  }
}

@media screen and (max-width: 600px) {
  #fellows-list {
    column-count: 1;
  }
}


/* --------------------------- */
/* ----RECORDED EVENT PAGE---- */
/* -------------------------- */

.recorded-events-page .main-body h2 {
  font-size: 2.5rem;
}

/* .recorded-events-text .intro-text {
  font-size: 1.5rem;
} */

.recorded-event {
  border-top: 1px solid #00857c;
  margin-top: 3rem;
  padding: 1rem 0;
}

.recorded-events-page .recorded-event h3 {
  font-size: 1.75rem;
  margin-bottom: 0;
  line-height: 2rem;
}

.recorded-events-page .recorded-event .presenters {
  margin-bottom: 1rem;
}

.recorded-events-page .recorded-event .presenters h4 {
  font-weight: 700;
}

.recorded-events-page .recorded-event .presenters p {
  margin: 0;
}

.descriptionOfRecordedEvent {
  margin-bottom: 1rem;
}






/* --------------------------- */
/* ----WORKSHOP & WEBINAR PAGE---- */
/* -------------------------- */

.workshop-div {
  background-color: rgba(129,173,246, .2);
  padding: 1rem 3rem 3rem 3rem;
  margin: 2rem 0;
}

.webinars-workshops-page .workshop-div:nth-child(odd) {
  background-color: rgba(244,167,79, .2);
}

.overview-headline {
  background-color: #1c3144;
  margin-left: -5rem;
  margin-top: 2rem;
  color: #fff;
  /* padding-top: 2rem; */
  padding: 3rem;
  margin-bottom: 2rem;
}

.workshop-overview, .workshop-presenters {
  /* margin-bottom: .5rem; */
  border-bottom: 4px solid;
  padding-bottom: 2rem;
}

/* .workshop-text, .workshop-presenters, .registration-links {
  padding-left: 3rem;
} */


.workshop-overview h2 {
  margin-top: 0;
  font-size: 2.25rem;
  line-height: 2.4rem;
}

.workshop-overview .date-time-div {
  margin-bottom: 0;
}

.workshop-overview .date-time, .workshop-overview .time {
  font-size: 1.5rem;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 700;
  line-height: 1.75rem;
  padding-top: 0;
}

.zoom {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 0;
  border-top: 1px solid #fff;
  display: inline-block;
  padding-top: 0.5rem;
  margin-top: 1rem;
}

.workshop-presenters h4, .registration-links h4 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background-color: #1c3144;
    color: #fff;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.indv-presenter {
  display: flex;
  align-items: center;
}

.presenter-pic {
  margin-right: 3rem;
}

.presenter-pic img {
  max-width: 15rem;
  border-radius: 100%;
  width: 15rem;
}

.presenter-bio h5 {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.reg-btns .highlight-btn {
  display: inline-block;
  border: 2px solid;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-align: center;
  margin: 0 2rem 1rem 0;
  background-image: none;
}

.reg-btns .highlight-btn:hover,
.reg-btns .highlight-btn:focus {
  background-image: none;
  background-color: #f4a74f;
}

.reg-btns .reg-info {
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .indv-presenter {
    flex-wrap: wrap;
  }
  .reg-btns .highlight-btn {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
  .workshop-presenters h4, .registration-links h4 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 600px) {
  .workshop-overview h2 {
    font-size: 2rem;
    line-height: 2.15rem;
  }
  .reg-btns .highlight-btn {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .workshop-div {
    padding: 1.5rem;
  }
  .workshop-overview h2 {
    font-size: 1.75rem;
    line-height: 1.85rem;
  }
  .workshop-overview .date-time, .workshop-overview .time, .workshop-overview .zoom {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .workshop-presenters h4, .registration-links h4 {
    padding: 0.25rem 0.75rem;
    font-size: 1rem;
  }
  .overview-headline {
    padding-left: 4rem;
  }
}







/* --------------------------- */
/* ----WORKSHOP REGISTRATION PAGE---- */
/* -------------------------- */

.workshop-reg-page .main-body h2 {
  font-size: 2.5rem;
  line-height: 2.75rem;
}

.workshop-reg-page .date-time {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.workshop-reg-page .time {
  font-weight: 700;
}

#workshop-registration-form {
  margin-top: 2rem;
  margin-bottom: 6rem;
}

input {
  width: 100%;
  padding: 12px 20px;
  margin: .5rem 0;
  box-sizing: border-box;
  font-size: 1rem;
}

#workshop-registration-form .required {
  color: red;
  position: relative;
  background-color: transparent;
  vertical-align: super;
}

.form-item {
  margin-bottom: 1rem;
}

fieldset {
  border: none;
  padding-left: 30px;
}

fieldset legend {
  margin-bottom: .5rem;
  padding-top: 1rem;
  font-weight: 700;
}

fieldset label {
  font-weight: normal;
}

/* container */
label {
  display:block;
  margin-bottom:4px;
  position: relative; /* to contain absolute elements */
  padding-left:30px; /* free space for custom radio button */
  cursor: pointer;
  font-weight: 700;
}

.tabset label {
  margin-bottom: 0; /* no margin under tabs (eg fellows page) */
}
/* hide default radio button  */
label input[type=radio] {
  position: absolute; /* prevent taking any space */
  /* cross-browser hidingg */
  appearance: none;
  opacity: 0;
  width:0;
  height:0;
}
/* custom radio button */
label span {
  position: absolute;
  /* position to the free space in <label> */
  top:6px;
  left:0;
  width:20px;
  height:20px;
  background-color: #ddd;
  border-radius: 50%;
  transition: .3s background-color; /* slight transition */
}
/* the check icon */
label span:after {
  content: "";
  position: absolute;
  display: none;

  /* middle */
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  background-color:#fff;
  width:8px;
  height:8px;
  border-radius:50%;
}
label:hover span {
  background-color: #ccc;
}

/**** Here's the trick ***/
label input:checked ~ span {
  background-color: #f4a74f;
}
label input:checked ~ span:after {
  display:block;
}


#registration-submit {
    display: inline-block;
    border: 2px solid;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    background-image: none;
    margin-left: 30px;
}

#registration-submit:hover,
#registration-submit:focus {
    background-image: none;
    background-color: #f4a74f;
}


@media screen and (max-width: 768px) {
  .workshop-reg-page .main-body h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .workshop-reg-page .main-body h3 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

@media screen and (max-width: 480px) {
  .workshop-reg-page .main-body h2 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .workshop-reg-page .main-body h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}









/* --------------------------- */
/* ----NEWSLETTER PAGE---- */
/* -------------------------- */

.article-summary-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article-summary-div .article-div:first-of-type {
  /* background-color: lightblue; */
  margin-bottom: 3rem;
  flex: 100%;
  display: flex;
  border-bottom: 1px solid;
  padding-bottom: 3rem;
  align-items: center;
  height: 100%;
}

.article-summary-div .article-div:first-of-type .article-pic {
  flex: 40%;
  min-height: 20rem;
  height: 100%;
}

.article-summary-div .article-div:first-of-type .article-summary {
  flex: 60%;
  margin-left: 2rem;
}

/* .article-div:nth-of-type(2), .article-div:nth-of-type(3) {
  width: 50%;
  background-color: yellow;
} */

.article-summary-div .article-div:nth-of-type(2) {
  flex: 50%;
  padding-right: 2rem;
}

.article-summary-div .article-div:nth-of-type(3) {
  flex: 50%;
  border-left: 1px solid;
  padding-left: 2rem;
}

.article-summary-div .article-div:nth-of-type(2) + .article-summary-div .article-div:nth-of-type(3) {
  border-left: solid 1px;
}

.article-summary-div .article-div:nth-of-type(2) .article-pic, .article-summary-div .article-div:nth-of-type(3) .article-pic {
  width: 100%;
  height: 20rem;
}

.article-summary-div .article-div:nth-of-type(2) .article-category, .article-summary-div .article-div:nth-of-type(3) .article-category {
  margin-top: 1rem;
}

.article-summary-div .article-div:nth-of-type(4) {
      border-top: 1px solid;
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid;
    margin-bottom: 2rem;
}

.date-vol {
  border-bottom: 3px solid #00857c;
  padding: 1rem 0;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.date-vol h2 {
  font-size: 2.5rem;
  color: #00857c;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.newsletter-links {
  /* margin: 4rem 0 0 0;
  display: flex; */
}

.newsletter-links .pdf-newsletter {
  /* margin-bottom: 2rem; */
  display: inline-block;
}

.newsletter-links .pdf-newsletter p {
  margin-bottom: 0;
}

.newsletter-links .pdf-newsletter:first-of-type {
  /* margin-right: 3rem; */
}

.newsletter-links a {
  border: 2px solid;
  padding: 0.75rem;
  border-radius: 5px;
  background-image: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}

.newsletter-links a:hover,
.newsletter-links a:focus {
  background-color: #f4a74f;
  background-image: none;
}

.archive-links {
  border-top: 3px solid #00857c;
  padding-top: 2rem;
  margin-top: 4rem;
  display: block;
}

.archive-links .pdf-newsletter {
  margin-top: 1rem;
}

.article-category {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #00857c;
  margin-bottom: 0;
}

.article-summary .article-title {
  font-size: 2rem;
  line-height: 2.25rem;
  margin-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.article-summary .article-author {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.article-div .article-link {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  margin: 0;
  border-bottom: none;
  background-image: none;
}

.newsletter-div .main-article-img {
  min-height: 20rem;
  height: 100%;
}


.newsletter-div .wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.article-author-div-mobile {
  display: none;
}

.newsletter-div .authors-pic-left {
  margin-top: -4rem;
}

.newsletter-div .authors-pic-left img {
  max-width: 15rem;
  border-radius: 100%;
  border: 3px solid #fff;
}

.newsletter-div .authors-pic-left .article-author {
  text-align: center;
  font-weight: 700;
  margin-top: 1rem;
}

.newsletter-div .article-author {
  /* margin-top: .5rem; */
  margin-top: 0;
    font-weight: 500;
    font-style: italic;
    line-height: 2.25rem;
}

.article-page .newsletter-div .article-author {
  margin-top: 1rem;
  min-width: 200px;
  font-style: normal;
  line-height: 1.5rem;
  font-weight: 700;
}

.article-page .newsletter-div .article-author-noimg {
  margin-top: 3rem;
}

.article-page .date-vol h2 {
  margin-bottom: 0;
}

.newsletter-div .column-right {
  margin-top: 3rem;
  padding-left: 3rem;
}

.newsletter-div .article-title {
  font-size: 2rem;
  line-height: 2.25rem;
  margin-top: 0;
}

.article-page .breadcrumbs {
  margin-bottom: 1rem;
}

.article-page .column-right .article-title {
  margin-bottom: 2rem;
  border-bottom: 2px solid;
  padding-bottom: 1rem;
}

/* .main-article-text::first-letter {
float: left;
  font-size: 5rem;
  line-height: 0.65;
  margin: 0.05em 0.1em 0.2em 0;
  font-weight: 700;
} */

.article-page .main-article-text h4 {
  margin-top: 2rem;
  margin-bottom: 0.25rem;
}

.main-article-text blockquote {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 4px solid #f4a74f;
}

.main-article-text blockquote p {
    font-style: italic;
    font-size: 1.5rem;
    line-height: 2.25rem;
}

.main-article-text ol li {
  margin-bottom: 1rem;
}

.main-article-text .richtext-image {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.main-article-text .richtext-image figcaption {
  font-size: .85rem;
  margin-bottom: 1rem;
}

.main-body .main-article-text h4 + h5 {
  margin-top: 1rem;
}

@media screen and (max-width: 960px) {
  .date-vol {
    display: block;
    padding: 1rem 0 2rem 0;
  }
  .newsletter-links {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 900px) {
  .article-summary-div .article-div:nth-of-type(2), .article-summary-div .article-div:nth-of-type(3) {
    flex: 100%;
    display: flex;
    border-bottom: 1px solid;
    padding-bottom: 3rem;
    align-items: center;
    height: 100%;
    padding-right: 0;
    padding-left: 0;
    border-left: none;
    margin-bottom: 3rem;
  }
  .article-summary-div .article-div:nth-of-type(4) {
    margin-top: 0;
  }
  .article-summary-div .article-div:nth-of-type(3) {
    border-bottom: none;
    margin-bottom: 0;
  }
  .article-summary-div .article-div:nth-of-type(2) .article-pic, .article-summary-div .article-div:nth-of-type(3) .article-pic {
    flex: 40%;
    min-height: 20rem;
    height: 100%;
  }
  .article-summary-div .article-div:nth-of-type(2) .article-summary, .article-summary-div .article-div:nth-of-type(3) .article-summary {
    flex: 60%;
    margin-left: 2rem;
  }
  .newsletter-div .article-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  .newsletter-div .authors-pic-left .article-author, .newsletter-div .article-author-noimg {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .newsletter-div .authors-pic-left img {
    width: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .newsletter-div .authors-pic-left img {
    width: 10rem;
  }
  .newsletter-div .article-author {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .article-summary-div .article-div:first-of-type, .article-summary-div .article-div:nth-of-type(2), .article-summary-div .article-div:nth-of-type(3) {
    display: block;
  }
  .article-summary-div .article-div:first-of-type .article-summary, .article-summary-div .article-div:nth-of-type(2) .article-summary, .article-summary-div .article-div:nth-of-type(3) .article-summary {
    margin-left: 0;
  }

  .article-summary-div .article-div:first-of-type .article-category {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 680px) {
  .newsletter-div .wrapper {
    display: block;
  }
  .article-author-div-mobile {
    display: block;
  }
  .article-author-div-desktop {
    display: none;
  }
  .newsletter-div .authors-pic-left .article-author {
    text-align: left;
    margin-top: 0rem;
  }
  .newsletter-div .authors-pic-left {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .article-page .newsletter-div .article-author-noimg {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .article-page .column-right .article-title {
    margin-bottom: 1rem;
  }
  .newsletter-div .column-right {
    padding-left: 0;
    margin-top: 2rem;
  }
  .newsletter-links {
    display: block;
  }
  .date-vol h2 {
    font-size: 1.75rem;
    line-height: 2rem;
    margin-bottom: 0;
  }
  .article-category {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}

@media screen and (max-width: 530px) {
  .newsletter-links .pdf-newsletter {
    /* margin-right: 1rem;
    margin-bottom: 1rem; */
  }
  .newsletter-links a {
    font-size: .9rem;
  }
}






/* --------------------------- */
/* ----ARCHIVE PAGE---- */
/* -------------------------- */

.archive-div {
  border-bottom: 1px solid;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}


.archive-div .date-vol {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.archive-div .date-vol h2 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 0;
}




/* -------------------------------------------- */
/* ------- ALL FREE RESOURCES PAGES ------- */
/* ------------------------------------------- */

.main-body .resources-text {
  /* white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word; */
}

.main-body .resources-text a {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

.main-body .resources-text h2 {
  font-size: 1.75rem;
  line-height: 2rem;
}

.main-body .resources-text h2 + p {
  margin-top: 0;
}

.main-body .resources-text h2:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .main-body .resources-text h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}








/* ----------------- */
/* ---- FOOTER ---- */
/* ----------------- */

footer {
  background-color: #00857c;
  color: #fff;
  padding: 3rem;
}

.footer-pattern {
  background-image: url("/assets/images/footer_pattern.png");
  height: 20vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 2px solid #f4a74f;
}

.links-section {
  /* display: flex;
  max-width: 1500px;
  margin: 0 auto;
  justify-content: space-between; */

    /* --w:840px;
    --n:4;
    --m:2;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(clamp(100%/(var(--n) + 1) + 0.1%,(var(--w) - 100vw)*1000,100%/(var(--m) + 1) + 0.1%),1fr));
    gap:10px; */


  display:flex;
  /* flex-wrap:wrap; */
  gap:3rem;
  max-width: 1500px;
  margin: 0 auto;
}

.member-buttons {
  display: flex;
  flex-direction: column;
  flex: 25%;
  max-width: 20rem;
  /* background: red; */
}

.footer-links-wrapper {
  flex: 75%;
  display: flex;
  gap: 2rem;
}

.links-section .page-links, .links-section .site-admin {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  /* background:red; */
  min-width: 180px;
}

.links-section .apa-link {
  /* max-width: 400px; */
  max-width: 460px;
  /* flex-grow: 3;
  flex-shrink: 1;
  flex-basis: 40%; */
  flex: 3 1 40%;
  /* background:red; */
}

.page-links a, .site-admin a {
  font-weight: 500;
  margin-bottom: 1rem;
  background-image: none;
  width: fit-content;
}

.page-links a:hover, .site-admin a:hover,
.page-links a:focus, .site-admin a:focus,
.apa-link a:hover, .apa-link a:focus {
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.contact-section {
  text-align: center;
  margin-top: 6rem;
}

.contact-section::before {
  content: '';
  border-bottom: .25rem solid #81adf6;
  width: 5rem;
  display: inline-block;
  margin-bottom: 1rem;
}

footer .member-buttons .icon {
  background-color: transparent;
  border-radius: unset;
  padding: 0;
  width: 3rem;
  height: auto;
  margin-top: 1rem;
}

/*
.member-buttons-new {
  display: flex;
  flex-direction: column;
}

.links-section-new {
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  max-width: 1500px;
  margin: 0 auto;
}

.links-section-new .page-links, .links-section-new .site-admin {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.links-section-new .apa-link {
  max-width: 460px;
  flex: 3 1 40%;
} */


@media screen and (max-width: 1200px) {
  .links-section {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 780px){
  .site-admin {
    flex-basis: 100%;
  }
  .footer-pattern {
    height: 10vh;
  }
}

@media screen and (max-width: 767px) {
  .footer-links-wrapper {
    flex-wrap: wrap;
  }
  .links-section .page-links, .links-section .site-admin, .links-section .apa-link {
    flex: 100%;
    border-top: 1px solid #fff;
    padding-top: 1rem;
  }
}

@media screen and (max-width: 480px) {
  footer {
    padding: 1rem;
  }
}



/* ------------------------ */
/* ---- Authentication ---- */
/* ------------------------ */

body:not(.logged-in) .if-logged-in {
  display: none; !important
}
body.logged-in .if-not-logged-in {
  display: none; !important
}

body:not(.logged-out) .if-logged-out {
  display: none; !important
}

.auth-nav-spacer {
  background-color: transparent;
}

body.logged-in .auth-nav-spacer,
body.logged-out .auth-nav-spacer {
  display: none;
}



/* ------------------------ */
/* --------- Tabs --------- */
/* ------------------------ */

.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: .6rem 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  text-transform: uppercase;
  font-weight: 600;
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
  background-color: #f4a74f;
}

.tab-panel {
  padding: 30px 0;
  border-top: 2px solid #f4a74f;
}

@media screen and (max-width: 535px) {
  .tabset > label {
    width: 46%;
  }
}


/* --------------------------------------------------- */
/* --------- Presidential Address Links Page --------- */
/* --------------------------------------------------- */

.main-body .presidential-links-text p {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.main-body .presidential-links-text a {
  background-image: none;
}

.main-body .presidential-links-text a:hover,
.main-body .presidential-links-text a:focus {
  background-image: linear-gradient(#f4a74f, #f4a74f);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
}



/* --------------------------------------------------- */
/* ---------------- Conferences Page ----------------- */
/* --------------------------------------------------- */

.conference-page .conference-main-text ul li p {
  margin-bottom: 0;
}

.gallery-section .inner {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.gallery-section .gallery-listing {
  /* flex: 25%;
  max-width: 25%; */
  /* padding: 0 2rem 2rem 0; */
  /* text-align: center; */
  /* display: flex;
    flex-wrap: wrap; */
  flex: 33.3333%;
  max-width: 33.3333%;
}

.gallery-section .gallery-listing .gallery-name {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-top: .5rem;
  margin-bottom: 0;
}

.gallery-section .gallery-listing .gallery-title {
  font-style: italic;
  text-transform: none;
  font-family: "garamond-premier-pro", serif;
  font-size: 1rem;
  line-height: 1.25rem;
  margin-top: 0;
  letter-spacing: normal;
  margin-bottom: 0;
}

.gallery-section h2 {
  margin-top: 4rem;
  border-top: 1.5px solid;
    padding-top: 1rem;
}

.gallery-section:first-of-type h2 {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.glightbox-clean .gslide-desc p i {
  font-style: italic;
}

.gallery-img {
  /* position: relative; */
  padding: 1em;
}

.gallery-contact-wrapper {
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.gallery-main .gallery-title {
  font-style: italic;
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 0;
    font-weight: normal;
    font-variant: none;
    font-family: 'garamond-premier-pro';
    text-transform: none;
    letter-spacing: normal;
}

.gallery-img img {
  /* width: auto;
  height: 8rem;
  padding: 1em; */
  width: 100%;
  height: 15.625rem;
  object-fit: cover;
  object-position: 50% 50%;
}

#glightbox-slider .gslide-image img {
  width: 100% !important;
  height: auto !important;
}

.glightbox-mobile .glightbox-container .gslide-description {
  background: linear-gradient(to bottom,rgba(0,0,0,.35) 0,rgba(0,0,0,.85) 100%) !important;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #fff !important;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  opacity: .7 !important;
}

.gslide-image {
  min-height: 50vh;
}

.gslide-description {
  min-width: 50vh;
}

.conference-page figcaption {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: .85rem;
  line-height: 1rem;
}

.conference-page .main-body h3 a {
  font-weight: 900;
}

.conference-main-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
}

.conference-main-text table th {
  background-color: #f5f5f5;
  font-weight: bold;
  padding: 1rem;
  text-align: left;
  border: 1px solid #ddd;
}

.conference-main-text table td {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
}

.main-body .conference-main-text h3 + h4 {
  margin-top: 1rem;
}

@media only screen and (max-width: 1200px) {
  .gallery-section .gallery-listing {
        flex: 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 768px) {
  .glightbox-clean .gnext, .glightbox-clean .gprev {
    top: 50% !important;
  }
  .conference-main-text {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem; /* Extend to screen edges */
    padding: 0 1rem;
  }
  
  .conference-main-text table {
    font-size: 0.9rem;
  }
  
  .conference-main-text table th,
  .conference-main-text table td {
    padding: 0.5rem;
  }
}


@media only screen and (max-width: 600px) {
  .gallery-section .gallery-listing {
        flex: 100%;
        max-width: 100%;
    }
  .gallery-img img {
      height: 22rem;
    }
}




/* --------------------------------------------------- */
/* --------- Sitemap Page --------- */
/* --------------------------------------------------- */

ul.sitemap-pages-list {
  list-style: circle;
}

/* --------------------------------------------------- */
/* --------- WJ Book Award Page --------- */
/* --------------------------------------------------- */

.wj-book-award-page .author-img .circle-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.wj-book-award-page .photo-credit {
  font-size: 0.65rem !important;
  font-weight: 400 !important;
  color: #666;
  margin-top: 0.25rem;
  line-height: 1.2;
  text-align: center;
}

.wj-book-award-page .photo-credit a {
  color: #666 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
}

.wj-book-award-page .photo-credit a:hover {
  color: #333 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
}

.wj-book-award-page .main-body i {
  font-weight: 600;
}

.wj-book-award-page .main-body em {
  font-style: italic;
}

.wj-book-award-page .book-link a {
  width: fit-content;
  margin: 0 auto;
}