/* UNIVERSAL */

html{
  font-size: 16px;
  background-color: rgb(255, 255, 255);
  color: #242424;
}

/* ROOT FONT STYLES */
* {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    padding: 1.5rem;
    max-width: 60rem;
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
    color: #242424;
}


b{
  font-weight: 700;
}

a{
  color: #67b6c5;
  text-decoration: none;

}

strong {
    font-weight: 600;
}

a:hover{
  text-decoration: dashed underline;
}

img{
  width: 100%;
  height: auto;
}

.col-4-2 {
  flex: 1 0 50%; /* Two columns on small screens */
}

/* header */
.header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: -1rem;
    margin-left: -1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.spacer{
  height: 2rem;
}

.layout-row{
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  gap:1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.layout-col{
  grid-column:span var(--span);
  min-height:1px; /* keeps it "real" even if it has no content */
  padding-left: 1rem;
  padding-right: 1rem;
}



/* mobile: force each column to full width */
@media (max-width: 768px){
  .layout-col{
    grid-column: 1 / -1; /* or: span 12; */
  }
}

.text-red { color: #b94e33; }
.text-blue { color: #0055ff; }
.text-center { display: inline-block; width: 100%; text-align: center; }

figure.is-wide { max-width: 1200px; margin: 0 auto; }
figure.is-fullbleed { width: 100vw; margin-left: calc(50% - 50vw); }
figure.is-rounded img { border-radius: 50%; }
figure.has-shadow img { box-shadow: 0 12px 30px rgba(0,0,0,.18); }


.menu{
    display: flex;
}

.menu a {
    padding: 1rem;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.logo {
    padding: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: italic;
    font-size: 2rem;
}

.social {
    display: flex;
    padding: 0 .5rem;
}


/* TYPOGRAPHY */

.highlight {
    display: inline;
    background-color: #ce7891;
    position: relative;
    color: black;
}

.mini-title{
  font-size: 13px;
}

h1{
  font-size: 2.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1rem;
  line-height: 1.2rem;
  margin-bottom: 1.2rem;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

.green{
  color: rgb(0, 255, 0);
  font-size: 9px;
}

/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* ==== FLEX SYSTEM ==== */

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
}

.row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  min-height: var(--min-height, 0.125rem);
  clear: both;
}

.clear{
  clear: both;
}

.call_container {
  display: flex;
  flex-direction: row;
  align-items: center; /* Aligns content vertically centered */
  gap: 2%; /* Optional: adds space between image and text */
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  background-color: #d6f7d6;
}

.green_bg{
  margin-bottom: 2rem;
  border-radius: 10px;
  background-color: #d6f7d6;
}

.callImage {
  width: 48%;
  height: auto; /* Maintains aspect ratio */
}

.callText {
  width: 50%; /* The remaining width after the image */
}


[class^="col"] {
  flex: 1 0 100%;
  position: relative;
  /*border: 1px solid rgba(0, 0, 0, 0.2); */
}

.col-4-2 {
  flex: 1 0 50%; /* Two columns on small screens */
}

.col-4-static {
  flex: 1 0 29.33%;
}

@media only screen and (min-width: 45em) {  /* 720px */
  .random-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(100% / 6 - 10px), 1fr));
    gap: 10px;
  }

  .mini-title{
    font-size: 15px;
  }

  .green{
    font-size: 15px;
  }

  .col-1 {
    flex: 1 0 4.33%;
  }

  .col-2 {
    flex: 1 0 12.66%;
  }

  .col-3 {
    flex: 1 0 21%;
  }

  .col-4 {
    flex: 1 0 29.33%;
  }

  .col-4-2 {
    flex: 1 0 29.33%;
  }

  .col-5 {
    flex: 1 0 37.66%;
  }

  .col-6 {
    flex: 1 0 46%;
  }

  .col-7 {
    flex: 1 0 54.33%;
  }

  .col-8 {
    flex: 1 0 62.66%;
  }

  .col-9 {
    flex: 1 0 71%;
  }

  .col-10 {
    flex: 1 0 79.33%;
  }

  .col-11 {
    flex: 1 0 87.66%;
  }

  .col-12 {
    flex: 1 0 96%;
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  .mini-title{
    font-size: 17px;
  }

  .container {
    width: 75%;
    max-width: 60rem;
  }

  .hidden-sm {
    display: block;
  }
}

/* mastodon overides */
.mt-container{
  height: 100%;
}


img.team-image {
  padding: 1rem;
  border-radius: 50%;
}

.team-member {
  padding: 10px;
}