@charset "UTF-8";
/* reset default styles */
fieldset,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  font-style: inherit;
  vertical-align: baseline;
  list-style: none;
  text-decoration: none;
  color: inherit;
  background-color: transparent; }

:root {
  /* make within-page links scroll smoothly rather than instantly */
  scroll-behavior: smooth; }

*,
*::before,
*::after {
  box-sizing: border-box; }

* {
  margin: 0; }

html {
  scroll-behavior: smooth; }

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  box-sizing: border-box;
  --headerfont: Cinzel, serif;
  --bodyfont: 'Crimson Text', Georgia, "Times New Roman", serif;
  --sansbodyfont: Cabin, sans-serif;
  --maxcontentwidth: 1080px;
  --primary: #909167;
  --neutralgrey: #EDEDED;
  --accent: #464824;
  --primarydark: #202600;
  --accentsecondary: #2b8382;
  --alt: #D4D3CD;
  --form: #fafafa;
  --red: #c02b0a;
  --offblack: #19190d; }

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%; }

input,
button,
textarea,
select {
  font: inherit; }

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word; }

h1 {
  text-transform: uppercase; }

q:before, q:after {
  content: ''; }

/*****************************************************************/
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 100 1000;
  src: url(/fonts/Cabin-VariableFont_wdth\,wght.ttf) format("truetype"); }

@font-face {
  font-family: 'Cabin';
  font-style: italic;
  font-weight: 100 1000;
  src: url(/fonts/Cabin-Italic-VariableFont_wdth\,wght.ttf) format("truetype"); }

@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  src: url(/fonts/CrimsonText-Regular.ttf) format("truetype"); }

@font-face {
  font-family: 'Crimson Text';
  font-weight: 700;
  src: url(/fonts/CrimsonText-Bold.ttf) format("truetype"); }

@font-face {
  font-family: 'Crimson Text';
  font-style: italic;
  src: url(/fonts/CrimsonText-Italic.ttf) format("truetype"); }

@font-face {
  font-family: 'Cinzel';
  font-weight: 100 1000;
  src: url(/fonts/Cinzel-VariableFont_wght.ttf) format("truetype"); }

/*****************************************************************/
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/*****************************************************************/
.hidden {
  display: none !important; }

input.none {
  display: none !important; }

.top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #464824; }

.topbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  max-width: 1080px;
  background-color: #464824; }

.topcell {
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px; }

.topcell a.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em; }

.topcell span,
.topcell a,
.dropdown a,
.dropdown div {
  color: #e6e5e2;
  font-family: "Cinzel";
  font-size: 16px;
  text-decoration: none; }

.topcell img {
  margin-top: -16px;
  height: 40px; }

.topcell nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px; }

a.donatebutton {
  color: var(--accent);
  font-family: var(--sansbodyfont);
  background: white;
  padding: 3px 16px;
  font-weight: 700; }

/* for the image headers */
header {
  min-height: 360px;
  width: 100%;
  font-family: var(--headerfont);
  font-size: 50px;
  color: white;
  text-align: center;
  padding: 50px 0;
  background-size: cover;
  background-repeat: no-repeat; }

/* image triptych */
@media (min-width: 992px) {
  .imagetriptych {
    display: grid;
    grid-template-columns: repeat(3, 1fr); } }

.imagetriptych img {
  min-width: 100%;
  height: auto;
  object-fit: cover; }

/* schedule table */
table.schedule td {
  padding: 4px 10px;
  width: 200px;
  vertical-align: top;
  text-wrap: nowrap; }

table.schedule td:first-child {
  font-weight: bold;
  text-align: right; }

/* For the submenu available on hover of the top level navigation items */
.submenu {
  position: relative; }

.submenu > a {
  cursor: pointer; }

.topbar a:hover {
  color: white; }

.submenu:focus-within ul,
.submenu:hover ul {
  visibility: visible;
  animation: 0.5s ease fadeIn; }

.submenu ul {
  position: absolute;
  top: 100%;
  left: -32px;
  background: var(--accent);
  z-index: 10;
  padding: 47px 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: max-content;
  list-style: none;
  visibility: hidden; }

/* Menu toggle styles */
#menu-toggle {
  display: none; }

.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px; }

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease-in-out; }

.topcell nav.hamburger {
  display: none; }

nav.dropdown {
  display: flex;
  flex-direction: column;
  background-color: #464824; }
  nav.dropdown a {
    padding: 8px 40px; }
  nav.dropdown a.dropdownmenu {
    padding-left: 20px;
    font-weight: bold; }

/* Mobile styles */
@media screen and (max-width: 710px) {
  .topcell nav.menu {
    display: none; }
  .topcell nav.hamburger {
    display: block;
    padding: 3px 6px; }
  .topcell a.logo span {
    display: block !important; } }

@media screen and (max-width: 900px) {
  .topcell a.logo span {
    display: none; } }

@media (max-width: 1440px) {
  .topcell nav > :last-child ul {
    left: unset;
    right: -12px; }
  .topcell nav > :nth-last-child(2) ul {
    left: unset;
    right: -32px; } }

.otherheader .overlay, .visionquestheader .overlay, .awakeningresponsibilityheader .overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(48, 46, 19, 0.73);
  z-index: 2; }

.otherheader .headertext, .visionquestheader .headertext, .awakeningresponsibilityheader .headertext {
  z-index: 3; }

.container {
  display: flex;
  flex-wrap: wrap; }

/*****************************************************************/
.headertext {
  font-size: clamp(30px, 8vw, 55px);
  font-family: var(--headerfont);
  max-width: 1000px;
  color: white;
  text-align: center;
  padding: 0 40px; }
  .headertext.medium {
    font-weight: 500; }
  .headertext.subheading {
    font-size: clamp(22px, 6vw, 33px);
    line-height: 1.2em;
    font-family: var(--bodyfont);
    font-style: italic; }

.otherheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 240px;
  width: 100%;
  background-image: url("/images/other-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  justify-content: center;
  padding: 50px 0; }

.otherheadertext {
  font-size: 30px;
  font-family: var(--bodyfont);
  max-width: 800px;
  color: white;
  text-align: center;
  padding: 0 50px;
  z-index: 3; }

.form {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #474924;
  padding: 60px 0; }

.formcell {
  display: flex;
  flex-grow: 1;
  max-width: 1080px; }

.content {
  font-size: 21px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 60px 0; }

.contentcell {
  max-width: 1080px;
  padding: 0 40px;
  font-family: var(--bodyfont);
  line-height: 30px;
  color: #302e13; }

.content h1 {
  color: #909167;
  font-family: "Cinzel";
  font-size: 36px;
  padding-top: 20px; }

.content h2 {
  color: #909167;
  font-family: "Cinzel";
  font-size: 23px;
  padding-top: 20px;
  padding-bottom: 8px; }

.content h3 {
  color: #909167;
  font-family: "Cinzel";
  font-size: 21px;
  padding-top: 20px; }

.content p {
  padding-top: 1em;
  padding-bottom: 1em; }

.content a {
  color: #2b8382;
  text-decoration: none; }

.video {
  width: 100%;
  height: 500px; }

.pageheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  justify-content: center;
  padding: 100px 0; }

/* This is a generic section */
.section h2 {
  color: var(--primary);
  font-size: clamp(30px, 2vw, 36px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px; }

.section h3 {
  color: var(--primary);
  font-size: clamp(24px, 1.7vw, 30px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px; }

.section p {
  padding-top: 8px; }

/* black border around a link as a call-to-action */
.calltoaction {
  display: block;
  font-family: var(--sansbodyfont);
  font-size: 20px;
  color: var(--accent);
  text-align: center;
  padding: 4px 16px 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 2px solid var(--accent);
  line-height: 1.75;
  width: 100%;
  transition: color 0.3s, background-color 0.3s; }

.calltoaction:hover {
  color: white;
  background-color: var(--accent); }

@media (min-width: 768px) {
  .calltoaction {
    padding: 8px 40px; } }

/* for the rows with off-white background color ... */
.altrow {
  background-color: var(--alt); }

.altaltrow {
  background-color: var(--accentsecondary); }

.accentrow {
  background: linear-gradient(var(--offblack), var(--accent), #909167); }

.formrow {
  background-color: var(--form); }

/* for the row containing the "visit" and "train" modules on home page and about page */
.modulerow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: clamp(40px, 10vw, 180px);
  /* will only apply when the visit and train modules are arranged horizontally */
  row-gap: 50px;
  /* will only apply when the visit and train modules are arranged vertically */
  justify-content: space-around; }

.module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  flex: 1;
  max-width: 400px;
  min-width: 280px;
  padding-top: 25px;
  padding-bottom: 25px; }

.moduleheading {
  font-family: 'Cinzel', serif;
  text-align: center;
  color: var(--primary);
  font-size: 24px;
  font-weight: bold; }

.moduleimage {
  width: 100%; }

a.modulelink, a.darkmodulelink {
  font-family: 'Cabin';
  text-align: center;
  width: 100%;
  padding: 4px 0;
  border: solid 2px;
  text-decoration: none;
  transition: all 0.3s; }

a.modulelink {
  color: #302f11; }

a.darkmodulelink {
  color: black; }

a.modulelink:hover {
  background-color: #302f11;
  border-color: #302f11;
  color: white; }

a.darkmodulelink:hover {
  background-color: black;
  border-color: black;
  color: white; }

.moduletext {
  font-family: 'Crimson Text';
  color: #302f11; }

/* <aside> is used for error messages associated with form submissions */
aside {
  color: red; }

main.home {
  /* For the banner under the navbar that reads "you're still subscribed" */
  /* the home page header is sized to show the first
    paragraph of the text below, but this is only possible on
    tablet or desktop-sized screens */
  /* for the rows with white background color ... */ }
  main.home .stillsubscribed {
    font-family: var(--bodyfont);
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    color: black;
    background-color: white;
    text-align: center;
    padding: 30px; }
  main.home .header {
    /*  we want the header to leave 160px for the content at the bottom;
            since the top nav is 80px we want its height to be 100% of viewport
            minus 240px */
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
    width: 100%;
    gap: 30px;
    background: linear-gradient(to bottom, rgba(48, 46, 19, 0.73) 0 75%, var(--offblack)), url("/images/homepage-top.jpg");
    background-blend-mode: normal;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    justify-content: center;
    padding: 80px 0;
    /* for the down chevrom: place it always at the bottom of the header */ }
    main.home .header a {
      opacity: .7; }
  @media (min-width: 600px) {
    main.home .header {
      height: calc(100vh - 350px); } }
  main.home .row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 40px;
    justify-content: center;
    padding: 40px 20px 80px; }
    main.home .row a {
      color: inherit; }
    main.home .row .boxes {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      flex: 1; }
    main.home .row nav {
      display: flex;
      flex-direction: column;
      flex: 1 1 0;
      gap: 25px;
      max-width: 200px;
      padding: 25px;
      padding-top: 65px;
      font-size: 19px;
      font-family: var(--sansbodyfont);
      color: white;
      white-space: nowrap;
      position: sticky;
      top: 0;
      align-self: flex-start; }
      main.home .row nav a {
        text-decoration: none; }
      main.home .row nav a:hover {
        color: rgba(255, 255, 255, 0.8);
        transition: all 1s; }
    @media (max-width: 1060px) {
      main.home .row nav {
        display: none; }
      main.home .row::after {
        display: none; } }
    main.home .row article {
      display: flex;
      flex-direction: column;
      gap: 25px;
      flex: 1;
      max-width: 760px;
      padding: 25px;
      font-size: 20px;
      font-family: var(--bodyfont);
      background-color: var(--alt);
      box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6);
      border-radius: 2px; }
      main.home .row article h3 {
        color: var(--accent);
        font-size: 34px;
        font-weight: 600;
        padding: 0.6em 0;
        border-bottom: 1px solid black;
        margin-bottom: 15px; }
  main.home .testimonial {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 280px;
    height: 100%;
    padding-top: 25px;
    padding-bottom: 25px; }
  main.home .testimonialcontent {
    text-align: center; }
  main.home .testimonialimage {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid black; }
  main.home .testimonialtext {
    font-style: italic;
    font-family: "Crimson Text";
    font-size: 18px;
    color: #302f11; }
  main.home .testimonialname {
    font-family: "Crimson Text";
    font-size: 18px;
    color: #909167;
    margin-top: 10px; }
  main.home .testimonialrelation {
    font-family: "Cabin";
    font-size: 14px;
    color: #909167; }

main.about header {
  background-image: radial-gradient(circle at center, rgba(48, 64, 23, 0.3) 0%, rgba(150, 149, 148, 0.3) 100%), url("/images/about-header.jpg");
  background-position: center 56%; }

main.work header {
  background-image: radial-gradient(circle at center, rgba(48, 64, 23, 0.3) 0%, rgba(150, 149, 148, 0.3) 100%), url("/images/theory-of-change-header.jpg");
  background-position: center 30%; }

main.about, main.work {
  /* each section is a centered flex container with a max width */
  /* for the three tabs ... */
  /* Video section */ }
  main.about section.tabs, main.work section.tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0; }
    main.about section.tabs > div, main.work section.tabs > div {
      display: flex;
      flex-direction: column;
      max-width: 1080px;
      flex: 1; }
  main.about section#scrollanchor, main.work section#scrollanchor {
    margin-top: 90px;
    /* this is needed to offset the menu from the header before its "stuck" */ }
  main.about menu, main.work menu {
    display: flex;
    flex-direction: row;
    font-family: var(--sansbodyfont);
    font-size: 15px;
    font-weight: 900;
    padding: 0 20px;
    justify-content: space-between;
    column-gap: 20px; }
    main.about menu button, main.work menu button {
      flex: 1;
      position: relative;
      left: -3px;
      right: 0;
      top: -3px;
      bottom: 0;
      transition: all 0.1s;
      background-color: var(--alt);
      border: 3px solid var(--alt);
      border-radius: 10px;
      color: var(--accent);
      box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6);
      padding: 30px;
      white-space: nowrap;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-family: var(--headerfont);
      font-weight: 600;
      cursor: pointer; }
    main.about menu button.selected, main.work menu button.selected {
      border-color: white;
      background-color: var(--accent);
      color: var(--alt); }
    main.about menu button:hover,
    main.about menu button.selected, main.work menu button:hover,
    main.work menu button.selected {
      left: 0;
      top: 0;
      box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6); }
  @media (max-width: 850px) {
    main.about menu, main.work menu {
      flex-direction: column; } }
  @media (min-width: 1080px) {
    main.about menu, main.work menu {
      position: sticky;
      background-color: white;
      top: 0;
      /* this is necessary because otherwise there will be a see-through strip above the menu */
      padding-top: 10px;
      /* this is necessary to give the tabs some space from the top when "stuck" */ } }
  main.about article, main.work article {
    padding: 0 20px;
    display: flex;
    flex: 1;
    max-width: 1080px;
    margin-bottom: 10px;
    /* this is necessary for the sticky nav to properly occlude this element's drop shadow */ }
    main.about article > div, main.work article > div {
      display: flex;
      flex-direction: column;
      flex: 1;
      font-family: var(--bodyfont);
      font-size: 22px;
      padding: 70px 50px;
      box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
      background-color: var(--alt);
      gap: 30px;
      border-radius: 10px; }
      main.about article > div h2, main.work article > div h2 {
        font-weight: 400;
        padding: 0.6em 0;
        border-bottom: 1px solid black;
        margin-bottom: 20px; }
      main.about article > div a, main.work article > div a {
        color: inherit; }
      main.about article > div a.button, main.work article > div a.button {
        border-radius: 30px;
        color: var(--alt);
        background-color: var(--accent);
        text-decoration: none;
        padding: 10px;
        text-align: center;
        font-family: var(--sansbodyfont); }
      main.about article > div a.button:hover, main.work article > div a.button:hover {
        color: white;
        transition: all 0.1s; }
      main.about article > div .videobox, main.work article > div .videobox {
        width: Min(100vw, Max(480px, 100%));
        align-self: center;
        aspect-ratio: 16 / 9;
        background: var(--cover) no-repeat center center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer; }
      main.about article > div hr, main.work article > div hr {
        width: 100%;
        padding-top: 100px;
        border: none;
        border-bottom: solid 1px black; }
  main.about section.content, main.work section.content {
    padding-top: 50px;
    padding-bottom: 50px; }
    main.about section.content p, main.about section.content td, main.work section.content p, main.work section.content td {
      font-size: 20px; }
  main.about .aboutvideosection, main.work .aboutvideosection {
    background: url("/images/landscape-overview.jpg");
    background-size: cover;
    background-position: center center;
    padding: clamp(40px, 4vw, 80px) 0; }
  main.about .aboutvideosection blockquote, main.work .aboutvideosection blockquote {
    color: white;
    font-family: var(--headerfont);
    font-size: clamp(30px, 2vw, 36px);
    font-weight: 400;
    text-align: center;
    margin-bottom: clamp(32px, 4vw, 64px);
    max-width: 560px;
    margin-inline: auto; }
  main.about .aboutvideosection .videowrapper, main.work .aboutvideosection .videowrapper {
    width: 100%;
    margin-inline: auto; }
  @media (min-width: 768px) {
    main.about .aboutvideosection .videowrapper, main.work .aboutvideosection .videowrapper {
      width: 75%; } }
  main.about .aboutvideosection .contentcell, main.work .aboutvideosection .contentcell {
    width: 100%; }
  main.about .aboutvideosection iframe, main.work .aboutvideosection iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 568 / 320; }

/* Quarterly Reports page */
.quarterlyreports .contentcell {
  width: 100%; }

@media (min-width: 1280px) {
  .quarterlyreports .contentcell {
    padding-left: 20px;
    padding-right: 20px; } }

.quarterlyreports h1 {
  font-size: clamp(20px, 2vw, 36px);
  font-weight: 400;
  line-height: 1; }

.quarterlyreports ul {
  padding-left: 22px;
  padding-top: clamp(24px, 3vw, 48px); }

.quarterlyreports ul li a {
  font-size: clamp(16px, 1.5vw, 18px); }

/* Podcasts page */
.divider {
  height: 1px;
  width: 100%;
  background: black; }

.podcastspageheader {
  background-image: url("/images/contact-header-bg.webp");
  min-height: 340px; }

.podcasts h1 {
  font-weight: 400;
  color: var(--primary);
  font-size: clamp(28px, 3.5vw, 61px);
  line-height: 1;
  padding-bottom: 16px; }

.podcasts h2 {
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 400; }

.podcasts p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: #302e13; }

.podcasts blockquote {
  padding: 0 clamp(20px, 4vw, 64px); }

.podcasts blockquote img {
  margin: 6px 20px 20px 0;
  float: left; }

.podcasts blockquote p {
  padding-top: 0;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--primary); }

/* Styles applied to podcast list entries */
.podcast h3 {
  font-weight: 400;
  text-align: center;
  padding: clamp(20px, 3vw, 28px); }

.podcast .widgetwrapper {
  max-width: 100vw;
  text-align: center; }

.podcast .widgetwrapper iframe {
  width: min(400px, 100%); }

/* Podcasts page Additionnal Conversations section */
.podcasts .conversations {
  padding-top: 0; }

.podcasts .conversations .contentcell {
  width: 100%; }

.podcasts .conversations h2 {
  text-align: left;
  border-top: 1px solid black;
  padding-bottom: clamp(28px, 2.5vw, 40px); }

.podcasts .conversation {
  padding-bottom: clamp(20px, 2vw, 32px); }

.podcasts .conversations h3 {
  text-align: center;
  font-weight: 400;
  padding-bottom: clamp(16px, 2vw, 28px); }

.podcasts .conversations .videowrapper {
  max-width: 100vw; }

.podcasts .conversations .videowrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; }

.podcasts .talks {
  padding-top: 0; }

.podcasts .talks h2 {
  border-top: 1px solid black; }

.podcasts .talks h3 {
  font-size: clamp(20px, 1.5vw, 26px);
  color: var(--primary);
  font-weight: 400;
  padding-top: clamp(20px, 2vw, 32px);
  padding-bottom: clamp(20px, 2vw, 32px);
  font-family: var(--headerfont); }

.podcasts .soundcloudiframe {
  max-width: 100vw; }

.podcasts .soundcloudiframe iframe {
  width: 100%;
  box-sizing: border-box; }

.podcasts .soundcloudiframe iframe + div {
  font-size: 10px;
  color: #cccccc;
  word-break: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;
  font-weight: 100;
  line-height: 1.75; }

.podcasts .soundcloudiframe iframe + div a {
  color: #ccc;
  text-decoration: none; }

/* Styles for the Learn/Course (Buddhism in the Age of AI) page */
@media (min-width: 1280px) {
  .learncourse .contentcell {
    padding: 0; } }

.taxinformation h1 {
  font-weight: 400;
  font-size: clamp(24px, 2vw, 36px);
  padding-top: 0;
  padding-bottom: clamp(20px, 3vw, 42px);
  text-align: center; }

.taxinformation .contentcell {
  width: 100%; }

.taxinformation p,
.taxinformation li {
  font-size: clamp(16px, 1vw, 18px); }

.taxinformation ul {
  padding-left: 22px; }

.taxinformation li {
  line-height: 1.5; }

/* Payment Form page */
@media (min-width: 1200px) {
  .paymentform .contentcell {
    padding: 0 20px; } }

.paymentform h1 {
  font-size: clamp(18px, 1.5rem, 26px);
  font-weight: 400; }

.paymentform p {
  font-size: clamp(16px, 1vw, 18px); }

.paymentform .fieldheading,
.paymentform .fieldheading span,
.paymentform .fieldheading label {
  font-size: 16px;
  font-family: var(--bodyfont);
  font-weight: 700;
  padding-bottom: 8px; }

.paymentform .fieldheading em {
  color: var(--red);
  font-size: 13px;
  font-weight: 400; }

/* form input fields layout */
.paymentform .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: clamp(20px, 2vw, 32px); }

.paymentform .fieldwrapper {
  flex: 1 0 100%; }

.fieldwrapper.half {
  flex: 1 1 40%;
  max-width: calc(50% - 10px); }

.paymentform .fieldwrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px; }

.paymentform .fieldwrapper input {
  position: relative;
  display: block;
  color: white;
  background: var(--primary);
  outline: none;
  border: 0;
  font-family: var(--sansbodyfont);
  padding: 16px;
  font-size: 14px;
  line-height: 1; }

.paymentform .fieldwrapper label {
  height: 100%;
  display: block;
  font-size: 15px;
  font-family: var(--bodyfont); }

.paymentform .creditcard {
  background-color: #909167;
  color: white;
  padding: 16px; }

.paymentform input[type='submit'] {
  border-radius: 3px;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: var(--sansbodyfont);
  padding: 6px 20px;
  font-size: 20px;
  margin-inline: auto;
  display: block;
  transition: color 0.3s ease, background 0.3s ease;
  cursor: pointer; }

.paymentform input[type='submit']:hover {
  background: var(--accent);
  color: white; }

/* Program selector styles */
.paymentform fieldset {
  border: none;
  padding-left: 0; }

.paymentform .radiofield {
  display: flex;
  gap: 20px; }

.paymentform .radiofield label {
  font-size: 16px; }

.paymentform .radiofield input[type="number"],
.paymentform .radiofield input[type="text"] {
  width: 100%;
  color: white;
  margin-top: 8px; }

.paymentform .radiofield input[type="number"]::placeholder,
.paymentform .radiofield input[type="text"]::placeholder {
  color: white; }

.paymentform .programselector span:first-child {
  line-height: 1;
  margin-bottom: -16px; }

.paymentform .checkboxwrapper {
  display: flex;
  gap: 10px;
  align-items: center; }

.paymentform .checkboxwrapper label {
  font-size: 18px; }

/* End Program selector styles */
.paymentform input[name="amount"] {
  margin-bottom: 12px; }

.paymentform #payment-element {
  padding-bottom: 20px; }

.paymentform .checkboxwrapper:has(#agree_non_refundable) {
  margin-top: -12px; }

.paymentform input[type="submit"] {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-size: clamp(19px, 1vw, 21px);
  padding: 14px;
  border-radius: 3px;
  transition: background 0.2s ease, border 0.3s ease, color 0.2s ease;
  cursor: pointer;
  min-width: 8rem;
  margin-right: 0; }

/*  Removes default Browser/OS styling for the country selector select element
    this "reset" brings the country selector looks in line with other inputs */
.paymentform #country {
  -webkit-appearance: none;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: white;
  font-family: var(--sansbodyfont);
  padding: 16px;
  line-height: 1; }

.paymentform .hidden {
  display: none; }

/* Payment form success page styles */
.paymentformsuccess .contentcell {
  width: 100%; }

.paymentformsuccess h1 {
  font-weight: 400;
  text-align: center;
  padding-bottom: clamp(20px, 2vw, 36px);
  font-size: clamp(32px, 3vw, 48px); }

.paymentformsuccess p {
  font-size: clamp(16px, 1vw, 18px);
  line-height: 2; }

.paymentformsuccess #program {
  text-transform: capitalize;
  font-weight: 600;
  font-family: var(--bodyfont); }

/* Donate page styles */
.donate .pageheader {
  background-image: url("/images/donate-header.jpg");
  background-position-y: 40%; }

.donate h1.heading {
  font-family: var(--bodyfont);
  color: #302E13;
  font-size: clamp(16px, 1vw, 18px);
  text-align: center;
  padding-top: 0;
  padding-bottom: 20px; }

.donate p {
  padding-top: 0;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 400; }

.donate .pageheader p {
  font-family: var(--headerfont);
  text-align: center;
  font-size: clamp(20px, 2vw, 32px);
  padding-top: 0; }

.donate .pageheader footer {
  text-align: center;
  font-size: clamp(16px, 1vw, 18px); }

.donate .pageheader .content {
  background: transparent;
  padding: 0 20px; }

.donate .content.list {
  padding-bottom: 0; }

.donate .list p {
  text-align: center; }

.donate details {
  border: 1px solid #99999966;
  background: #ddd;
  transition: background 0.4s ease;
  margin-bottom: 20px; }

.donate details:last-of-type {
  margin-bottom: 32px; }

.donate details[open] {
  background: transparent; }

.donate summary {
  list-style: none;
  cursor: pointer;
  padding: 16px; }

.donate .list details * {
  text-align: left; }

.donate summary h2 {
  padding-top: 0;
  font-family: var(--sansbodyfont);
  color: #333;
  font-size: clamp(18px, 1.5vw, 19px);
  font-weight: 500; }

.donate details[open] {
  padding: 0 16px 16px; }

.donate details[open] summary {
  padding: 16px 0; }

.donate #one-time-donation-form h3 {
  font-size: clamp(18px, 2vw, 28px);
  font-family: var(--headerfont);
  color: #333333; }

.donate #one-time-donation-form h3 + p {
  font-family: var(--sansbodyfont);
  color: #666;
  padding-top: 12px; }

.donate .donatefooter {
  border-top: 1px solid #999;
  padding-top: 8px; }

/* Form input styles */
.donate .fieldheading,
.donate .fieldheading span,
.donate label.fieldheading {
  font-size: 16px;
  font-family: var(--bodyfont);
  font-weight: 700;
  line-height: 1; }

.donate label.fieldheading {
  letter-spacing: 0.02em; }

.donate .fieldheading em {
  color: var(--red);
  font-size: 13px;
  font-weight: 400; }

/* form input fields layout */
.donate .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 0;
  max-width: 500px;
  margin-inline: auto; }

.donate .fields h4 {
  font-family: var(--sansbodyfont);
  margin-bottom: -10px;
  font-size: 18px;
  color: #444; }

.donate .fieldwrapper {
  flex: 1 0 100%; }

.donate .fieldwrapper.flexhalf {
  flex: 1 1 15rem; }

.donate .fieldwrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px; }

.donate .fieldwrapper input {
  position: relative;
  display: block;
  color: #333;
  background: color-mix(in srgb, transparent, white 50%);
  outline: none;
  border: 0;
  font-family: var(--sansbodyfont);
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1;
  border-radius: 6px;
  border: 1px solid #ccc; }
  .donate .fieldwrapper input:focus {
    border: 1px solid var(--primary);
    box-shadow: 0 0 0 1px #fff6, 0 0 3px 0 var(--accent); }

.donate .fieldwrapper label {
  height: 100%;
  display: block;
  font-size: 15px;
  font-family: var(--sansbodyfont); }

/* Program selector styles */
.donate fieldset {
  border: none;
  padding-left: 0; }

.donate .radiofield {
  display: flex;
  gap: 20px; }

.donate .radiofield label {
  font-size: 16px; }

.donate .radiofield input[type="number"],
.donate .radiofield input[type="text"] {
  width: 100%;
  color: white;
  margin-top: 8px; }

.donate .radiofield input[type="number"]::placeholder,
.donate .radiofield input[type="text"]::placeholder {
  color: white; }

.donate .programselector span:first-child {
  line-height: 1;
  margin-bottom: -16px; }

.donate .checkboxwrapper {
  display: flex;
  gap: 10px;
  align-items: center; }

.donate .checkboxwrapper label {
  font-size: 18px; }

/* End Program selector styles */
.amountinput {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px; }
  .amountinput span {
    background: #eee;
    height: 100%;
    border-right: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
    padding: 2px 10px;
    font-family: var(--sansbodyfont); }

#amount {
  width: 100%;
  border-radius: 0 6px 6px 0;
  border: none; }

.donate .creditcard {
  background-color: color-mix(in srgb, transparent, white 50%);
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 8px 16px; }

.donate input[type='submit'] {
  font-family: var(--sansbodyfont);
  margin-inline: auto;
  display: block;
  text-align: center;
  width: 100%; }

.donate input[type='submit']:hover {
  background: var(--accent);
  color: white; }

.donate input[type="submit"] {
  border: 2px solid var(--accent);
  color: white;
  background: var(--accent);
  font-size: clamp(19px, 1vw, 21px);
  padding: 8px 14px;
  border-radius: 3px;
  transition: background 0.2s ease, border 0.3s ease, color 0.2s ease;
  cursor: pointer;
  min-width: 8rem;
  margin-right: 0; }

/*  Removes default Browser/OS styling for the country selector select element
    this "reset" brings the country selector looks in line with other inputs */
.donate select {
  -webkit-appearance: none;
  background: color-mix(in srgb, transparent, white 50%);
  border: 1px solid #ccc;
  color: #333;
  font-family: var(--sansbodyfont);
  padding: 9px 16px;
  line-height: 1;
  border-radius: 4px;
  outline: none; }
  .donate select:focus {
    border: 1px solid var(--primary);
    box-shadow: 0 0 0 1px #fff6, 0 0 3px 0 var(--accent); }

.donate .hidden {
  display: none; }

/* Styles for the Guests page */
header.guests {
  background-image: radial-gradient(circle at center, rgba(48, 64, 23, 0.3) 0%, rgba(150, 149, 148, 0.3) 100%), url("/images/guests-header-top.webp");
  background-position: center 100%; }

/* Start of guests page content sections */
.guestscontent {
  flex-direction: column;
  gap: clamp(56px, 4vw, 72px);
  align-items: center;
  background: #fff; }

/* leftright class works in tandem with the .content class properties to enable the two collapsible columns layout */
.leftright {
  display: grid;
  gap: clamp(32px, 4vw, 56px); }

@media (min-width: 768px) {
  .leftright {
    grid-template-columns: 1fr 1fr; } }

.guestscontent h2 {
  font-size: clamp(30px, 2vw, 40px);
  padding: 40px 0; }

.guestscontent ul {
  padding-left: 50px; }

.guestscontent li {
  font-family: var(--bodyfont);
  line-height: 1.45;
  font-weight: 500; }

.guestscontent p {
  padding: 10px 0; }

.leftright img {
  padding-top: 20px; }

/* Guests testimonials boxes section layout */
.gueststestimonials {
  display: flex;
  gap: 40px;
  flex-direction: row;
  flex-wrap: wrap; }

.guesttestimonialintro {
  padding: 50px 0; }

/* Guest testimonial inner box */
.guesttestimonial {
  background: #F5F5F5;
  padding: 36px clamp(20px, 2vw, 32px);
  position: relative;
  font-family: var(--bodyfont); }

@media (min-width: 900px) {
  .guesttestimonial {
    display: flex;
    gap: 32px; } }

/* Guest testimonial box decoration quote added as pseudo-elements ::before & ::after */
.guesttestimonial::before {
  content: "”";
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 64px;
  transform: translate3d(-50%, 10%, 0); }

.guesttestimonial::after {
  position: absolute;
  transform: translate3d(-52%, -54%, 0);
  top: 0%;
  left: 50%;
  content: "";
  border-radius: 50%;
  border: 3px solid #222;
  height: 36px;
  width: 36px; }

/* testimonial box inner elements */
.guesttestimonial img {
  border-radius: 50%;
  height: 90px;
  width: 90px;
  object-fit: cover;
  margin-inline: auto; }

.guesttestimonial blockquote {
  display: flex;
  flex-direction: column;
  padding-top: 10px; }

.guesttestimonial p {
  padding-top: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5; }

.guesttestimonial footer {
  padding-top: 40px;
  margin-top: auto; }

.guesttestimonial span {
  font-size: 18px;
  display: block; }

/* Embedded guests form */
.guestsformwrapper p {
  font-size: 18px; }

.guestsformwrapper .contentcell {
  width: 100%; }

/* override the event styles on this page only because we have a dark background */
.eventscallout .eventlist h2, .eventscallout .eventlist p, .eventscallout .eventlist p a {
  color: var(--alt) !important; }

.eventscallout .eventlist p a {
  font-weight: bold; }

/* Contact page */
.contactpageheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  width: 100%;
  background-image: url("/images/contact-header-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  justify-content: center;
  padding: 100px 0; }

/* Footer styles */
.footer {
  background: url("/images/footer-bg.jpg");
  background-size: cover;
  flex-direction: column;
  align-items: center;
  gap: 44px; }

.footer .contentcell {
  display: flex;
  flex-direction: column;
  gap: 44px; }

@media (min-width: 1024px) {
  .footer .contentcell {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr 3fr;
    gap: 30px; } }

/* Footer link columns */
.footercolumn {
  display: flex;
  flex-direction: column;
  align-items: center; }

@media (min-width: 660px) {
  .footercolumn {
    flex: 1 0 45%;
    align-items: flex-start; } }

@media (min-width: 768px) {
  .footercolumn {
    flex: 1 0 25%; } }

@media (min-width: 1024px) {
  .footercolumn {
    padding-top: 72px; } }

.footercolumn h3 {
  font-weight: 500;
  font-size: clamp(22px, 2vw, 24px);
  font-family: var(--headerfont); }

.footercolumn a {
  font-family: var(--bodyfont);
  font-size: 18px; }

.footercolumn h3,
.footercolumn a,
.footercolumn p,
.footercolumn span {
  color: #d4d3cd;
  transition: 0.3s ease color; }

.footercolumn ul {
  list-style: none;
  padding-left: 0; }

.footercolumn li {
  text-align: center;
  line-height: 1.75; }

.footercolumn li a {
  display: block;
  height: 100%; }

@media (min-width: 660px) {
  .footercolumn li {
    text-align: left; } }

@media (hover: hover) {
  .footercolumn a:hover {
    color: var(--primary); } }

/* Logo in footer */
div.logo {
  padding-bottom: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--headerfont);
  font-size: clamp(22px, 2vw, 24px);
  white-space: nowrap;
  font-weight: 500; }

div.logo img {
  height: 72px;
  padding: 10px; }

div.logo div:last-of-type {
  font-size: 0.5em;
  line-height: 1.1em; }

/* Footer contact information column */
footer [aria-label="contact data"] {
  padding-right: 20px; }

footer [aria-label="contact data"] {
  color: #d4d3cd;
  font-size: 18px; }

@media (min-width: 1024px) {
  footer [aria-label="contact data"] {
    flex: 0 0 20%; } }

footer [aria-label="contact data"] p {
  padding: 0;
  line-height: 1.9; }

footer [aria-label="contact data"] a {
  color: #d4d3cd; }

.footer .copyright {
  color: var(--primary);
  text-align: center;
  font-family: var(--headerfont);
  font-size: 14px; }

/* footer signup column */
.footer .footercolumn span {
  font-size: 18px; }

.footer .footercolumn form {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.footer .footercolumn form input[type="text"],
.footer .footercolumn form input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.1);
  color: white; }

.footer .footercolumn form input[type="text"]::placeholder,
.footer .footercolumn form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5); }

.footer .footercolumn form input[type="submit"] {
  flex: 1;
  border: white 1px solid;
  padding: 0.5em;
  background-color: transparent;
  color: white;
  border-radius: 20px;
  cursor: pointer; }

.footer .footercolumn form input[type="submit"]:hover {
  background-color: rgba(255, 255, 255, 0.1); }

/* Vision Quest Page styles */
.visionquestheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 240px;
  width: 100%;
  background-image: url("/images/vision-quest-header.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  justify-content: center;
  padding: 50px 0; }

.visionquestheader h1 {
  font-weight: 400;
  font-size: clamp(18px, 3vw, 30px);
  color: white;
  max-width: 780px;
  font-family: var(--headerfont);
  text-align: center;
  line-height: 1.35; }

.visionquestheader span {
  font-family: var(--bodyfont);
  color: white;
  font-size: clamp(18px, 1.5vw, 22px);
  text-align: center;
  display: block; }

.visionquestheader .contentcell {
  z-index: 2; }

/* Vision Quest main call to action */
.visionquestcta {
  background: linear-gradient(180deg, #606c38 0%, #e76f51 100%); }

.visionquestcta h2 {
  color: white;
  font-weight: 400;
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  padding-bottom: clamp(18px, 1.5vw, 22px); }

.visionquestcta span {
  color: white;
  display: block;
  text-align: center;
  font-size: clamp(18px, 1.5vw, 24px); }

.visionquestcta p {
  color: white;
  text-align: center;
  max-width: 780px;
  margin-bottom: 20px; }

.visionquestcta a {
  color: white;
  font-size: clamp(18px, 1.5vw, 20px);
  padding: 8px 24px;
  border: 2px solid white;
  font-family: var(--sansbodyfont);
  font-weight: 500;
  line-height: 1.75;
  margin-inline: auto;
  display: block;
  width: auto;
  text-align: center; }

@media (min-width: 540px) {
  .visionquestcta a {
    width: max-content; } }

@media (hover: hover) {
  .visionquestcta a {
    transition: background 0.2s ease, border 0.2s ease; }
  .visionquestcta a:hover {
    background: var(--accent);
    border: 2px solid var(--accent); } }

/* Vision Quest intro content */
.visionquestintro .contentcell:first-child {
  display: flex;
  flex-direction: column;
  gap: 20px; }

.visionquestintro h2 {
  font-size: clamp(28px, 4vw, 36px); }

@media (min-width: 768px) {
  .visionquestintro .contentcell:first-child {
    flex-direction: row;
    gap: 40px; }
  .visionquestintro .contentcell:first-child > div {
    flex: 1 0 60%; }
  .visionquestintro .contentcell:first-child img {
    width: 30%;
    height: auto;
    object-fit: contain;
    object-position: top; } }

.visionquestintroimages {
  padding-top: 0; }

.visionquestintroimages .contentcell {
  display: flex;
  flex-direction: column;
  gap: 20px; }

@media (min-width: 768px) {
  .visionquestintroimages .contentcell {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; } }

/* Vision Quest scrollable */
.visionquestcallout {
  background: linear-gradient(90deg, rgba(48, 46, 19, 0.7), rgba(48, 46, 19, 0.7)), url("/images/vision-quest-background.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: 40% 50%;
  min-height: 400px; }

.visionquestcallout p {
  font-size: clamp(25px, 2.5vw, 30px);
  text-align: center;
  color: white;
  line-height: 1.35;
  padding: 6rem 0;
  max-width: 780px; }

/* Vision Quest profile section */
.visionprofile {
  background: white; }

.visionprofile .contentcell {
  display: flex;
  flex-direction: column; }

.visionprofile img {
  border-radius: 50%;
  margin-inline: auto;
  width: 300px;
  height: 300px;
  border: 3px solid black;
  align-self: center; }

.visionprofile div {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center; }

.visionprofile h2 {
  font-family: var(--bodyfont);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  padding-bottom: clamp(12px, 1.5vw, 20px); }

.visionprofile p {
  padding-bottom: 0;
  max-width: 600px; }

.visionprofile p:last-of-type {
  padding-top: 0;
  padding-bottom: 24px; }

.visionprofile a {
  color: var(--accent);
  font-size: clamp(18px, 1.5vw, 20px);
  padding: 4px 42px;
  border: 2px solid var(--accent);
  font-family: var(--sansbodyfont);
  font-weight: 500; }

@media (min-width: 1080px) {
  .visionprofile .contentcell {
    flex-direction: row;
    gap: 100px; }
  .visionprofile div {
    text-align: left;
    align-items: start; } }

@media (hover: hover) {
  .visionprofile a {
    transition: background 0.2s ease, border 0.2s ease; }
  .visionprofile a:hover {
    background: var(--accent);
    color: white; } }

/* Vision Quest full screen width image tryptich */
.visionquestfulltryptich img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

@media (min-width: 768px) {
  .visionquestfulltryptich {
    display: grid;
    grid-template-columns: repeat(3, 1fr); }
  .visionquestfulltryptich img {
    max-height: min(33vw, 450px); } }

/* Vision Quest Storytelling section */
.visionquestdualcolumn {
  background: #fbfbf9; }

.visionquestdualcolumn .contentcell {
  justify-content: center;
  gap: 48px;
  padding: 32px 20px; }

@media (min-width: 768px) {
  .visionquestdualcolumn .contentcell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-inline: auto; } }

.visionquestdualcolumn h2 {
  text-align: center;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 36px);
  padding-bottom: clamp(24px, 3vw, 44px); }

.visionquestdualcolumn p {
  text-align: center;
  font-size: clamp(16px, 1vw, 18px);
  letter-spacing: 0.03em;
  padding-top: 0;
  line-height: 1.25; }

.visionquestdualcolumn h2 + p:first-of-type {
  line-height: 1.875;
  letter-spacing: 0.05em; }

.visionquestdualcolumn blockquote p {
  font-size: clamp(18px, 2vw, 28px);
  font-family: var(--bodyfont); }

.visionquestdualcolumn blockquote footer {
  font-size: clamp(16px, 1vw, 18px);
  text-align: center;
  padding-bottom: clamp(20px, 2vw, 28px); }

.visionquestdualcolumn a {
  color: var(--accent);
  font-size: clamp(18px, 1.5vw, 20px);
  padding: 4px 42px;
  border: 2px solid var(--accent);
  font-family: var(--sansbodyfont);
  font-weight: 500;
  margin-inline: auto;
  display: block;
  width: auto;
  text-align: center;
  background: rgba(51, 50, 8, 0.24); }

@media (min-width: 540px) {
  .visionquestdualcolumn a {
    width: max-content; } }

@media (hover: hover) {
  .visionquestdualcolumn a {
    transition: color 0.3s ease; }
  .visionquestdualcolumn a:hover {
    color: white; } }

/* informational page styles */
.informationalpageheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  width: 100%;
  background-image: url("/images/informational-page-header.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  justify-content: center;
  padding: 100px 0; }

.informational.content h1,
.informational.content h2 {
  font-weight: 400;
  padding-top: 40px; }

.informational.content h2 {
  font-size: clamp(18px, 2vw, 26px); }

.informational.content h3 {
  padding-top: 12px; }

.informational.content {
  font-size: clamp(16px, 1vw, 18px); }

/* FAQ page */
.faqpageheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  width: 100%;
  background: linear-gradient(to right, #fff9, #fff9), url("/images/faq-header-bg.jpg");
  background-size: cover;
  background-position: center;
  justify-content: center;
  padding: 50px 20px; }

.faqpageheader h1 {
  font-family: var(--headerfont);
  font-size: clamp(56px, 4vw, 66px);
  font-weight: 400;
  font-variant: small-caps;
  text-align: center; }

.faqpageheader p {
  font-family: var(--bodyfont);
  text-align: center;
  font-size: 18px; }

.faqpageheader a {
  color: #000;
  text-decoration: none; }

/* Faq sections */
.faqcontent {
  background: white; }

.faqcontent > .contentcell {
  width: 100%; }

.faqsection h2 {
  font-family: var(--headerfont);
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 8px; }

/* FAQ item */
.faqsection details {
  margin-bottom: 12px; }

.faqsection summary {
  cursor: pointer; }

.faqsection summary {
  font-weight: 400;
  font-size: 21px;
  color: var(--primary);
  font-family: var(--headerfont); }

.faqsection summary::marker {
  content: "+";
  color: var(--accentsecondary);
  font-weight: 700;
  font-size: 32px; }

.faqsection details[open] summary::marker {
  content: "–"; }

.faqsection details p {
  padding: 14px 0;
  font-size: clamp(16px, 1vw, 18px); }

.faqsection details p:not(:first-of-type) {
  padding-top: 0; }

.faqsection details blockquote {
  padding: 0 20px;
  color: var(--primary); }

/* Meet Vermont Page */
.meetvermont {
  background: white; }

@media (min-width: 768px) {
  .meetvermont .contentcell {
    padding: 0 20px; } }

@media (min-width: 1280px) {
  .meetvermont .contentcell {
    padding: 0; } }

.meetvermont h1 {
  font-weight: 400;
  text-align: center;
  padding-bottom: clamp(24px, 3vw, 48px); }

.meetvermont h2 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  font-family: var(--bodyfont);
  text-align: center;
  padding-bottom: clamp(24px, 3vw, 48px); }

.meetvermontpageheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  width: 100%;
  background-image: url("/images/meet-vermont-header-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  justify-content: center;
  padding: 100px 0; }

/* Meet Vermont entries grid */
.meetvermontentries {
  display: flex;
  flex-direction: column;
  gap: 32px 20px; }

@media (min-width: 768px) {
  .meetvermontentries {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px; } }

/* Meet Vermont global entries style */
.meetvermontentry img {
  border: 6px solid black;
  border-radius: 50%;
  margin-inline: auto; }

.meetvermontentry span,
.meetvermontentry span em {
  font-size: 18px;
  font-family: var(--bodyfont);
  color: #aaa; }

.meetvermontentry p {
  color: #302e13; }

.meetvermontentry p,
.meetvermontentry a {
  font-size: clamp(16px, 1vw, 18px);
  padding-top: 0; }

.meetvermontentry a svg {
  display: inline-block;
  width: 20px;
  margin-inline: 10px; }

/* Meet Vermont styles targetting the first entry */
.meetvermontentries .teacherentry {
  grid-column: 1 / span 3;
  max-width: 550px;
  margin-inline: auto; }

.meetvermontentries .teacherentry h2 {
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  font-family: var(--bodyfont);
  padding-bottom: clamp(2px, 1vw, 12px);
  letter-spacing: 0.06em; }

.meetvermontentries .teacherentry span em {
  text-align: center;
  display: block;
  font-size: clamp(18px, 1.5vw, 21px);
  font-family: var(--headerfont);
  color: #000;
  padding-bottom: 4px; }

/* Meditation Resources Page */
@media (min-width: 1280px) {
  .meditationresources .contentcell {
    padding-left: 0;
    padding-right: 0; } }

.meditationpageheader {
  background-image: url("/images/contact-header-bg.webp");
  min-height: 340px; }

.meditationresources .pageheading {
  padding-bottom: clamp(16px, 2vw, 24px);
  display: block; }

.meditationresources .pageheading > div {
  width: 100%;
  margin-inline: auto; }

/* Meditation Resources intro */
.meditationresources h1 {
  font-size: clamp(28px, 3vw, 50px);
  color: var(--primary);
  font-weight: 400;
  text-align: left; }

.meditationresources h2 {
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 400; }

.meditationresources p {
  color: #302E13;
  font-size: clamp(16px, 1vw, 18px); }

.meditationresources .two_columns {
  padding-top: 0;
  padding-bottom: 0; }

.meditationresources .two_columns > div {
  padding-top: clamp(4px, 1vw, 12px);
  padding-bottom: clamp(4px, 1vw, 12px); }

.meditationresources .two_columns h2 {
  padding-bottom: 8px; }

.meditationresources .two_columns p {
  padding-top: 0; }

.meditationresources .leftright {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222; }

/* Unified mindfulness section */
.meditationresources .unifiedmindfulness {
  padding-top: 20px;
  padding-bottom: 0; }

.meditationresources .unifiedmindfulness .contentcell {
  padding-bottom: clamp(24px, 3vw, 48px);
  border-bottom: 1px solid black; }

.meditationresources .unifiedmindfulness h2 {
  text-align: center;
  line-height: 1.5; }

.meditationresources .unifiedmindfulness p {
  padding-bottom: clamp(18px, 2.5vw, 28px); }

.meditationresources .unifiedmindfulness img {
  margin-inline: auto;
  padding-bottom: clamp(16px, 2vw, 32px); }

.meditationresources ul {
  padding-left: 20px;
  color: #302E13;
  font-size: clamp(16px, 1vw, 18px); }

/* Meditation Resources soundcloud widgets */
.meditationresources .soundcloudiframe {
  padding-bottom: clamp(16px, 2vw, 32px);
  max-width: 100vw; }

.meditationresources .soundcloudiframe iframe {
  width: 100%;
  box-sizing: border-box; }

.meditationresources .soundcloudiframe iframe + div {
  font-size: 10px;
  color: #cccccc;
  word-break: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;
  font-weight: 100;
  line-height: 1.75; }

.meditationresources .soundcloudiframe iframe + div a {
  color: #cccccc;
  text-decoration: none; }

/* Jade Method section */
.meditationresources .jademethod h2 {
  text-align: center;
  padding-top: 0;
  padding-bottom: clamp(24px, 3vw, 48px);
  line-height: 1.5; }

.meditationresources .jademethod img {
  max-height: 200px;
  margin-bottom: clamp(24px, 3vw, 48px);
  margin-inline: auto; }

.meditationresources .jademethod p {
  padding-top: 0; }

.meditationresources .jademethod .contentcell > ul {
  padding-bottom: 32px; }

.meditationresources .jademethod .contentcell > ul > ul {
  list-style: disc; }

/* Styles for the Learn/Course (Buddhism in the Age of AI) page */
@media (min-width: 1280px) {
  .learncourse .contentcell {
    padding: 0; } }

.learncourseheader {
  position: relative;
  background-image: url("/images/learn-course-header-bg.jpg");
  background-size: cover;
  width: 100%;
  min-height: 50vh;
  align-items: center; }

.learncourseheader::after {
  content: "";
  inset: 0;
  position: absolute;
  background-color: #8c7e5e;
  mix-blend-mode: hard-light;
  z-index: 0; }

.learncourseheader .contentcell {
  position: relative;
  z-index: 1; }

@media (min-width: 1024px) {
  .learncourseheader {
    height: calc(100vh - 80px); } }

.learncourseheader h1 {
  font-size: clamp(32px, 3vw, 56px);
  font-weight: 400;
  color: white;
  text-align: center;
  padding-bottom: clamp(0px, 1.5vw, 20px);
  letter-spacing: -0.01em;
  text-shadow: 0em 0em 0.3em rgba(0, 0, 0, 0.4); }

.learncourseheader h2 {
  font-size: clamp(24px, 2vw, 33px);
  font-family: var(--bodyfont);
  color: white;
  font-weight: 400;
  text-align: center;
  padding-bottom: clamp(16px, 2vw, 30px);
  text-shadow: 0em 0em 0.3em rgba(0, 0, 0, 0.4); }

.learncourseheader p {
  font-size: clamp(18px, 1.5vw, 22px);
  color: white;
  text-align: center;
  max-width: 780px;
  padding-top: 0;
  line-height: 1.15;
  text-shadow: 0em 0em 0.3em rgba(0, 0, 0, 0.4); }

.learncourseheader p:last-of-type {
  padding-bottom: 50px; }

.learncourseheader a {
  font-size: clamp(18px, 1.5vw, 22px);
  font-family: var(--sansbodyfont);
  border: 2px solid white;
  color: white;
  padding: 8px 28px;
  box-sizing: border-box;
  display: block;
  width: max-content;
  margin-inline: auto;
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3); }

/* Intro video section */
.learncourse .videoheading {
  font-size: clamp(20px, 2vw, 30px);
  font-family: var(--bodyfont);
  font-weight: 400;
  text-align: center;
  line-height: 1.25;
  padding-top: 0; }

.learncourse .introvideo {
  padding-top: 0; }

.learncourse .introvideo iframe {
  border: 0;
  padding-bottom: clamp(20px, 2.65vw, 50px);
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto; }

.learncourse .introvideo a {
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
  border: solid 2px var(--accent);
  color: var(--accent);
  font-family: var(--sansbodyfont);
  font-size: 20px;
  padding: 2px 40px;
  box-sizing: border-box;
  display: block;
  width: max-content;
  margin-inline: auto; }

/*  Learn page callout */
.learncourse .callout {
  background: #5d6033e6; }

.learncourse .callout p {
  color: white;
  font-family: var(--bodyfont);
  font-size: clamp(20px, 2vw, 30px);
  text-align: center;
  line-height: 1.3; }

/* Learn intro module (module one description) */
.learncourse .intromodule {
  padding-bottom: clamp(8px, 5vw, 90px); }

.learncourse .intromodule h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--primary);
  font-weight: 400;
  font-family: var(--bodyfont);
  padding-bottom: clamp(28px, 3vw, 42px);
  text-align: center; }

.learncourse .intromodule ul {
  padding-bottom: clamp(28px, 3vw, 42px); }

.learncourse .intromodule li {
  font-size: clamp(18px, 1.5vw, 24px);
  font-family: var(--bodyfont);
  font-weight: 500;
  line-height: 1.5; }

.learncourse .intromodule a {
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
  border: solid 2px var(--accent);
  color: var(--accent);
  font-family: var(--sansbodyfont);
  font-size: 20px;
  padding: 2px 40px;
  box-sizing: border-box;
  display: block;
  width: max-content;
  margin-inline: auto; }

/* Learn course Curriculum */
.learncourse .curriculum {
  background: url("/images/learn-course-curriculum-bg.jpg");
  background-position-y: 40%; }

.learncourse .curriculum h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-family: var(--bodyfont);
  font-weight: 400;
  color: white;
  text-align: center;
  padding-bottom: clamp(28px, 3vw, 48px); }

.learncourse .curriculum p {
  font-family: var(--bodyfont);
  color: white;
  font-size: clamp(20px, 2vw, 30px);
  text-align: center;
  padding-top: 0; }

.learncourse .curriculum footer {
  padding-top: clamp(18px, 2vw, 28px);
  padding-bottom: clamp(18px, 2vw, 32px);
  position: relative;
  margin-top: clamp(10px, 1vw, 18px); }

.learncourse .curriculum footer::before {
  content: "";
  height: 1px;
  width: 80%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #fff;
  position: absolute;
  max-width: 800px; }

.learncourse .curriculum footer p {
  font-family: var(--bodyfont);
  color: white;
  font-size: clamp(18px, 1.5vw, 25px);
  text-align: center;
  padding-bottom: clamp(18px, 2vw, 32px); }

.learncourse .curriculum footer a {
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
  border: solid 2px white;
  font-family: var(--sansbodyfont);
  color: white;
  font-size: 20px;
  padding: 2px 40px;
  box-sizing: border-box;
  display: block;
  width: max-content;
  margin-inline: auto;
  transition: border-color 0.25s ease, background 0.3s ease; }

.learncourse .curriculum footer a:hover {
  border-color: var(--accent);
  background: var(--accent); }

/* Learn course form */
.learncourse .signup .contentcell {
  width: 100%;
  padding-bottom: 20px; }

.learncourse .signup h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-family: var(--bodyfont);
  font-weight: 400;
  text-align: center;
  padding-bottom: clamp(16px, 2vw, 32px); }

.learncourse .signup p {
  font-size: 18px;
  font-family: var(--bodyfont);
  text-align: center; }

.learncourse .fieldheading {
  font-size: 16px;
  font-family: var(--bodyfont);
  font-weight: 700;
  padding-bottom: 8px; }

.learncourse .fieldheading em {
  color: var(--red);
  font-size: 13px;
  font-weight: 400; }

/* form input fields layout */
.learncourse .signup .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: clamp(20px, 2vw, 32px); }

.learncourse .signup .fieldwrapper {
  flex: 1; }

.learncourse .signup .fieldwrapper:first-child,
.learncourse .signup .fieldwrapper:nth-child(2) {
  flex: 1 1 40%; }

.learncourse .signup .fieldwrapper:last-child {
  gap: 0; }

.learncourse .signup .fieldwrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px; }

.learncourse .signup .fieldwrapper input {
  position: relative;
  display: block;
  color: white;
  background: var(--primary);
  outline: none;
  border: 0;
  font-family: var(--sansbodyfont);
  padding: 16px;
  font-size: 14px;
  line-height: 1; }

.learncourse .signup .fieldwrapper label {
  height: 100%;
  display: block;
  font-size: 15px;
  font-family: var(--bodyfont); }

.learncourse .signup input[type='submit'] {
  border-radius: 3px;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: var(--sansbodyfont);
  padding: 6px 20px;
  font-size: 20px;
  margin-inline: auto;
  display: block;
  transition: color 0.3s ease, background 0.3s ease;
  cursor: pointer; }

.learncourse .signup input[type='submit']:hover {
  background: var(--accent);
  color: white; }

.homesignup {
  background: linear-gradient(180deg, rgba(158, 127, 69, 0.5) 0%, rgba(66, 81, 54, 0.8) 100%), url("/images/home-signup-background.jpg");
  background-size: cover;
  background-position: center bottom;
  min-height: 500px;
  padding: clamp(64px, 4.5vw, 96px) 0; }

.homesignup .contentcell {
  max-width: 1350px;
  color: white;
  align-items: center; }

.homesignup .description h2 {
  font-family: var(--bodyfont);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 3vw, 40px);
  padding-bottom: clamp(24px, 2vw, 50px); }

.homesignup .description p {
  font-size: clamp(16px, 1.5vw, 19px);
  font-family: var(--sansbodyfont); }

.homesignupformheader {
  background: #c5743f;
  padding: clamp(28px, 2vw, 36px);
  text-align: center; }
  .homesignupformheader h3 {
    font-size: clamp(30px, 3vw, 40px);
    padding-bottom: clamp(12px, 2vw, 20px);
    font-weight: 500; }
  .homesignupformheader p {
    font-size: clamp(16px, 1.5vw, 18px); }

.homesignupformbody {
  display: flex;
  flex-direction: column;
  background: #e5e0da;
  padding: clamp(40px, 3vw, 64px) clamp(32px, 2.5vw, 36px);
  gap: 12px; }
  .homesignupformbody input {
    flex: 1 1 0%;
    box-sizing: border-box;
    padding: 8px; }
  .homesignupformbody input[type="email"] {
    width: 100%; }
  .homesignupformbody input[type="submit"] {
    cursor: pointer;
    color: white;
    border: none;
    background: #c5743f;
    width: 100%; }
  .homesignupformbody .namewrapper {
    flex: 1 1 0%;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px; }
    @media (min-width: 1024px) {
      .homesignupformbody .namewrapper {
        flex-wrap: nowrap; } }
/* Events callout */
.eventscallout {
  background: color-mix(in srgb, var(--primarydark), white 10%); }

.eventscallout h2 {
  font-size: clamp(32px, 3vw, 40px);
  text-align: center;
  font-weight: 400; }

.homepageevents .contentcell {
  width: 100%;
  border-top: 2px dotted var(--accent); }

.eventlist h2 {
  font-size: 30px;
  color: var(--accent);
  text-align: center; }

.eventlist h3 {
  padding-bottom: 12px; }

.eventlist h3 a {
  font-family: var(--headerfont);
  font-size: 22px;
  color: var(--primary);
  font-variant: small-caps;
  text-decoration: underline; }

.eventlist p {
  text-align: center; }

header.events {
  background-image: radial-gradient(circle at center, rgba(48, 64, 23, 0.3) 0%, rgba(150, 149, 148, 0.3) 100%), url("/images/guests-header-top.webp");
  background-position: center 100%; }

.eventslist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 32px); }
  .eventslist .event {
    border-bottom: 1px solid var(--primary);
    padding-bottom: 32px; }
  .eventslist .eventmonth {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 16px; }
    .eventslist .eventmonth span {
      color: var(--primary);
      line-height: 1;
      font-family: var(--bodyfont);
      font-weight: 500; }
    .eventslist .eventmonth div {
      flex: 1;
      background: #ccc;
      height: 1px;
      transform: translateY(-2px); }
  .eventslist .eventcontent {
    display: flex;
    gap: clamp(16px, 1vw, 32px); }
  .eventslist .eventdate {
    border: 2px solid color-mix(in srgb, var(--primarydark), white 34%);
    padding: clamp(2px, 1vw, 12px) clamp(4px, 2vw, 16px);
    height: 100%;
    line-height: 1.25;
    box-shadow: 4px 4px 0 0 #00000060; }
  .eventslist .eventdate span {
    display: block;
    color: #c5743f;
    font-weight: 700;
    text-align: center;
    font-size: clamp(16px, 1vw, 18px);
    min-width: clamp(70px, 7vw, 116px); }
  .eventslist .eventdate span:first-child {
    font-size: clamp(18px, 2vw, 26px); }
  .eventslist .eventdetails h1 {
    font-size: clamp(20px, 2vw, 30px);
    padding-top: 0;
    padding-bottom: clamp(8px, 1vw, 16px); }
  .eventslist .eventdetails h1 a {
    color: var(--primary);
    font-family: var(--bodyfont); }
  .eventslist .eventdetails p {
    padding-top: 0;
    padding-bottom: clamp(4px, 1vw, 14px);
    line-height: 1.15;
    font-size: clamp(16px, 1vw, 18px);
    display: flex;
    gap: 4px;
    align-items: center;
    line-height: 18px;
    font-family: var(--bodyfont); }
  .eventslist .eventdetails svg {
    height: 18px;
    width: 18px;
    transform: translateY(-2px);
    color: var(--primary); }
  .eventslist .eventdetails > a {
    width: 125px;
    display: block;
    padding: 14px 8px;
    line-height: 1;
    margin-top: 8px; }

.eventsingle h1 {
  font-size: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(16px, 2.5vw, 32px);
  font-weight: 500;
  padding-top: 0;
  line-height: 1.25;
  margin-top: -0.15em; }

.eventsingle p {
  padding-top: 0;
  line-height: 1.375; }

.eventsingle .inactiveevent {
  font-size: clamp(19px, 2vw, 24px);
  color: var(--red);
  font-family: var(--sansbodyfont); }

.eventsingle .eventcontent p {
  font-size: clamp(16px, 1.5vw, 19px); }

.eventsingle .eventinfo {
  padding-bottom: clamp(16px, 2vw, 18px);
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 5px;
  column-gap: 15px; }

.eventsingle .eventinfo p {
  padding-bottom: clamp(4px, 1vw, 8px);
  line-height: 1.15;
  font-size: clamp(16px, 1vw, 18px);
  display: flex;
  gap: 4px;
  align-items: center;
  line-height: 18px; }

.eventsingle .eventinfo svg {
  height: 18px;
  width: 18px;
  transform: translateY(-2px); }

.eventsingle .eventinfo p:last-child {
  padding-bottom: 0; }

/* Soryu Forall */
.teacherpageheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  width: 100%;
  background-image: url("/images/teacher-header.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  justify-content: center;
  padding: 100px 0; }

div.teacher h1 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  padding-bottom: clamp(20px, 2.5vw, 28px);
  text-align: center; }

div.teacher p {
  font-size: clamp(16px, 1vw, 18px);
  padding-top: 0; }

div.teacher img {
  max-height: 500px;
  object-fit: contain;
  margin-inline: auto;
  padding-bottom: 30px; }

@media (min-width: 768px) {
  div.teacher h1 {
    text-align: left; }
  div.teacher img {
    float: left;
    max-width: 500px;
    padding: 10px 30px 30px 0; } }

/* Board Page */
.board {
  background: white; }

@media (min-width: 768px) {
  .board .contentcell {
    padding: 0 20px; } }

@media (min-width: 1280px) {
  .board .contentcell {
    padding: 0; } }

.board h1 {
  font-weight: 400;
  text-align: center;
  padding-bottom: clamp(24px, 3vw, 48px); }

.board h2 {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--bodyfont);
  font-variant: small-caps;
  text-align: left;
  padding-bottom: 4px; }

.boardpageheader {
  background-image: url("/images/board-header-bg.jpg"); }

/* Members grid */
.boardentries {
  display: flex;
  flex-direction: column;
  gap: 32px 20px; }

@media (min-width: 768px) {
  .boardentries {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px; } }

.boardentry img {
  border: 6px solid black;
  border-radius: 50%;
  margin-inline: auto;
  width: 100%;
  max-width: 320px;
  height: auto; }

.boardentry span,
.boardentry span em {
  font-size: 18px;
  font-family: var(--bodyfont);
  color: #aaa; }

.boardentry p {
  color: #302e13; }

.boardentry p,
.boardentry a {
  font-size: clamp(16px, 1vw, 18px);
  padding-top: 0; }

.boardentry a svg {
  display: inline-block;
  width: 20px;
  margin-inline: 10px; }

.writing .pageheader {
  background-image: url("/images/contact-header-bg.webp"); }

.writing .contentcell {
  width: 100%; }

.writing h1 {
  text-align: left;
  font-size: clamp(36px, 4vw, 61px);
  font-weight: 400;
  padding-bottom: 44px;
  border-bottom: 1px solid black; }

.writing h2 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  padding: 12px 0; }

.writing ul {
  list-style: none;
  padding-left: 0; }

.writing li {
  padding-bottom: clamp(6px, 1vw, 16px); }

.writing li span {
  display: block;
  line-height: 1.75;
  font-size: clamp(16px, 1.5vw, 18px); }

.writing a {
  color: var(--accent);
  text-decoration: underline; }

.trainingresidencytestimonials h2 {
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  font-family: var(--bodyfont);
  text-align: center;
  padding-bottom: clamp(12px, 1.5vw, 20px); }

.trainingresidencytestimonials .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem; }

.trainingresidencytestimonials .testimonials > div {
  flex: 1 1 15rem; }

.trainingresidencytestimonials .testimonials > div p:first-child {
  padding-top: 0; }

.trainingresidencytestimonials .testimonials > div p:last-child {
  padding: 0; }

.trainingresidencytestimonials p {
  font-size: clamp(16px, 1.2vw, 18px); }

.coworkingresidency .testimonials h2 {
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  font-family: var(--bodyfont);
  padding-bottom: clamp(8px, 1vw, 16px); }

.coworkingresidency .testimonials .testimonialsgrid {
  display: flex;
  gap: clamp(16px, 2vw, 40px); }

.coworkingresidency .testimonials .testimonialsgrid blockquote p,
.coworkingresidency .testimonials .testimonialsgrid blockquote footer {
  font-size: clamp(16px, 1.3vw, 18px); }

/* Styles for the AI fellowship page */
header.aifellowship {
  background-image: radial-gradient(circle at center, rgba(48, 64, 23, 0.3) 0%, rgba(150, 149, 148, 0.3) 100%), url("/images/ai-fellowship-header.webp");
  background-position: center 65%; }

.awakeningresponsibilityheader {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  width: 100%;
  background-image: radial-gradient(circle at center, rgba(48, 64, 23, 0.3) 0%, rgba(150, 149, 148, 0.3) 100%), url("/images/stock-tree-tunnel.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  justify-content: center;
  padding: 100px 0; }

@media (min-width: 1024px) {
  .awakeningresponsibilityheader {
    min-height: 350px; } }

/* Venn diagram wrapper start */
.awakeningresponsibilityheadergraph {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  color: white;
  z-index: 3;
  font-family: var(--headerfont);
  font-size: 19px;
  font-weight: 400; }

@media (min-width: 1024px) {
  .awakeningresponsibilityheadergraph {
    gap: 0;
    grid-template-columns: repeat(3, 10rem); } }

.awakeningresponsibilityheadergraph span {
  position: relative;
  text-align: center; }

/* the wisdom/love/power Venn diagram on about page */
.awakeningresponsibilityheadergraph span:first-child::after {
  content: "";
  background-color: rgba(172, 169, 134, 0.3);
  mix-blend-mode: darken;
  border-radius: 50%;
  width: 12rem;
  height: 12rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -45%, 0);
  z-index: -1; }

@media (min-width: 1024px) {
  .awakeningresponsibilityheadergraph span:first-child::after {
    width: 18rem;
    height: 18rem;
    left: 9rem;
    top: 50%;
    transform: translate3d(-50%, -50%, 0); } }

@media (min-width: 1024px) {
  .awakeningresponsibilityheadergraph span:first-child {
    text-align: right; }
  .awakeningresponsibilityheadergraph span:nth-child(2) {
    text-align: center; }
  .awakeningresponsibilityheadergraph span:last-child {
    text-align: left; } }

.awakeningresponsibilityheadergraph span:last-child::after {
  content: "";
  background-color: rgba(172, 169, 134, 0.3);
  mix-blend-mode: darken;
  border-radius: 50%;
  width: 12rem;
  height: 12rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -55%, 0);
  z-index: -1; }

@media (min-width: 1024px) {
  .awakeningresponsibilityheadergraph span:last-child::after {
    width: 18rem;
    height: 18rem;
    left: unset;
    right: -9rem;
    top: 50%;
    transform: translate3d(-50%, -50%, 0); } }

.callouttext {
  font-size: clamp(24px, 2vw, 38px);
  font-family: var(--headerfont);
  text-align: center;
  line-height: 1.4;
  color: var(--primary); }

/* styles for side-by-side "awakening" and "responsibility" on about page */
.awakeningresponsibilitycores {
  justify-content: center;
  gap: 48px;
  padding: 32px 20px; }

@media (min-width: 1024px) {
  .awakeningresponsibilitycores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 64px 0;
    margin-inline: auto; } }

.awakeningresponsibilitycore {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px; }

.awakeningresponsibilitycore h2 {
  color: var(--primary);
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 400; }

.awakeningresponsibilitycore strong {
  font-size: clamp(16px, 1vw, 18px);
  letter-spacing: 0.5px; }

.awakeningresponsibilitycore p {
  font-size: clamp(16px, 1vw, 18px); }

.awakeningresponsibilitycore blockquote {
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  color: var(--primary);
  letter-spacing: initial; }

@media (min-width: 1024px) {
  .awakeningresponsibilitycore blockquote {
    padding: 0 48px; } }

/* Axioms section | About Us page */
.awakeningresponsibilityaxioms {
  display: flex;
  flex-direction: column;
  gap: 3rem; }

@media (min-width: 1200px) {
  .awakeningresponsibilityaxioms {
    padding: 0; } }

.awakeningresponsibilityaxioms h2 {
  color: var(--primary);
  font-size: clamp(30px, 2vw, 36px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem; }

.axiomgroup {
  display: grid;
  gap: 2rem; }

@media (min-width: 768px) {
  .axiomgroup {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2vw, 4vw, 4rem); } }

.axiom {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.axiom h3 {
  font-family: var(--headerfont);
  color: var(--primary);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  text-align: center; }

.axiom p {
  font-size: 18px; }

/* Video section */
.awakeningresponsibilityvideosection {
  background: url("/images/landscape-overview.jpg");
  background-size: cover;
  background-position: center center;
  padding: clamp(40px, 4vw, 80px) 0; }

.awakeningresponsibilityvideosection blockquote {
  color: white;
  font-family: var(--headerfont);
  font-size: clamp(30px, 2vw, 36px);
  font-weight: 400;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 64px);
  max-width: 560px;
  margin-inline: auto; }

.awakeningresponsibilityvideosection .videowrapper {
  width: 100%;
  margin-inline: auto; }

@media (min-width: 768px) {
  .awakeningresponsibilityvideosection .videowrapper {
    width: 75%; } }

.awakeningresponsibilityvideosection .contentcell {
  width: 100%; }

.awakeningresponsibilityvideosection iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 568 / 320; }

.section .dailyscheduleheader {
  margin-bottom: clamp(32px, 3vw, 48px); }

.dailyschedule {
  padding: 32px;
  margin-inline: auto; }

header.silentretreats {
  background-image: radial-gradient(circle at center, rgba(48, 64, 23, 0.3) 0%, rgba(150, 149, 148, 0.3) 100%), url("/images/guests-header-top.webp");
  background-position: center 100%; }

form.application {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 420px;
  font-family: var(--sansbodyfont) !important; }
  form.application h1 {
    font-family: var(--sansbodyfont) !important;
    text-transform: none; }
  form.application fieldset {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 18px; }
  form.application label.required::after {
    content: '*';
    margin-left: 4px;
    color: red; }
  form.application p {
    padding: 0;
    font-size: 15px;
    color: grey; }
  form.application input, form.application textarea {
    border: solid lightgrey 2px;
    border-radius: 4px; }
  form.application input:hover, form.application textarea:hover {
    border-color: grey; }
  form.application input[type="text"], form.application input[type="email"], form.application textarea {
    padding: 4px 5px;
    font-size: 15px; }
  form.application input[type="checkbox"] {
    align-self: start;
    cursor: pointer;
    zoom: 1.6; }
  form.application input[type="submit"] {
    cursor: pointer;
    background-color: var(--accent);
    color: var(--alt);
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 8px; }
  form.application input[type="submit"]:hover {
    background-color: var(--primarydark); }
  form.application input[type="submit"]:disabled {
    background-color: gray;
    cursor: default; }
