@charset "UTF-8";
/* ------------------------------------------
   🖋 Poppins Font Family
   ------------------------------------------ */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.woff2") format("woff2"), url("../fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* ------------------------------------------
   🧱 Global Font Variables
   ------------------------------------------ */
:root {
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ------------------------------------------
   ✨ Global Typography
   ------------------------------------------ */
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  background-color: #fafafa;
}

body {
  padding: 0;
  margin: 0;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: #01a69e;
}

p {
  color: #4E4D4E;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  color: #01a69e;
  margin-bottom: 16px;
}

.header-h1 {
  color: #01a69e;
  font-size: 37px;
  line-height: 42px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1024px) {
  .header-h1 {
    font-size: 28px;
  }
}

.header-h2 {
  color: #01a69e;
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
}
@media (max-width: 1024px) {
  .header-h2 {
    font-size: 24px;
  }
}

.text-lg {
  font-size: 24px;
  font-weight: 400;
  color: #4f4d4e;
  line-height: 42px;
}
@media (max-width: 1024px) {
  .text-lg {
    font-size: 18px;
  }
}

.sqs-block-button-element,
.button {
  background-color: #01a69e;
  font-weight: 500;
  line-height: 28px;
  font-size: 14px;
  color: #ffffff;
  padding: 15px;
  text-align: center;
}

.sqs-block-button-element {
  display: block;
  margin-bottom: 12px;
}
.sqs-block-button-element br {
  display: none;
}

.block-content__container {
  position: relative;
}

.block {
  padding: 0 32px;
  margin: 100px 0;
}
@media (max-width: 1024px) {
  .block {
    padding: 0 16px;
  }
}
.block:first-child {
  margin-top: 45px;
  margin-bottom: 45px;
}

.inner-block {
  margin: 0 auto;
  max-width: 1216px;
  width: 100%;
}

.reverse {
  display: flex;
  flex-direction: row-reverse !important;
}
@media (max-width: 1024px) {
  .reverse {
    flex-direction: column !important;
  }
}

.post-container {
  padding: 80px 32px;
  display: block;
  position: relative;
}
.post-container .post-inner-container {
  margin: 0 auto;
  max-width: 969px;
  width: 100%;
}
.post-container h1 {
  color: #01a69e;
  font-size: 37px;
  font-weight: 500;
  display: block;
  margin-bottom: 32px;
  text-align: center;
}
.post-container .post-meta {
  color: #01a69e;
  font-size: 16px;
  text-align: center;
}
.post-container a {
  text-decoration: underline;
}
.post-container h1, .post-container h2, .post-container h3, .post-container h4, .post-container h5, .post-container h6 {
  margin-bottom: 16px;
}

.page-container {
  padding: 0px 32px;
  display: block;
  position: relative;
}
.page-container .page-inner-container {
  margin: 0 auto;
  max-width: 969px;
  width: 100%;
}
.page-container img {
  width: 100%;
  height: auto;
}

.post-grid__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1200px) {
  .post-grid__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .post-grid__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .post-grid__container {
    grid-template-columns: 1fr;
  }
}
.post-grid p {
  white-space: normal !important;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  font-size: 18px;
}

.post-header,
.podcast-header {
  padding: 50px 32px;
  display: block;
  position: relative;
  background-color: #01a69e;
}
.post-header__inner,
.podcast-header__inner {
  display: flex;
  margin: 0 auto;
  max-width: 1216px;
  width: 100%;
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .post-header__inner,
  .podcast-header__inner {
    flex-direction: column;
  }
}
.post-header__image-wrapper img,
.podcast-header__image-wrapper img {
  width: 366px;
}
@media (max-width: 900px) {
  .post-header__image-wrapper img,
  .podcast-header__image-wrapper img {
    max-width: 100%;
  }
}
.post-header h1,
.post-header a,
.post-header p,
.podcast-header h1,
.podcast-header a,
.podcast-header p {
  color: #ffffff;
}
.post-header a,
.podcast-header a {
  text-decoration: underline;
}
.post-header h1,
.podcast-header h1 {
  text-align: left;
}

.um input[type=submit].um-button, .um input[type=submit].um-button:focus {
  background-color: #01a69e !important;
}

.footer {
  padding: 0 32px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.footer__title {
  color: #ffffff;
}
.footer__social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__social-icons img {
  width: 30px;
}
.footer__menu-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 1216px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 0;
}
@media (max-width: 900px) {
  .footer__menu-container {
    flex-direction: column;
    gap: 12px;
  }
}
.footer__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu ul a {
  text-decoration: underline;
}
.footer__menu, .footer__menu-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 12px;
}
.footer__tagline {
  margin: 0 -32px;
  padding: 32px;
  background-color: #01a69e;
}
.footer__tagline a {
  color: #222222;
  text-decoration: underline;
}
.footer__tagline-wrapper {
  max-width: 1216px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer p {
  margin: 0;
  padding: 0;
}

.gallery-strips-wrapper {
  column-count: 3;
  column-gap: 20px;
}

.gallery-strips-item {
  break-inside: avoid;
  margin-bottom: 20px;
  display: block;
}

.gallery-strips-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-masonry-wrapper {
  column-count: 3;
  column-gap: 20px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  display: block;
}

.gallery-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Base: mobile first — single column */
.masonry p {
  white-space: normal !important;
}

.masonry .sqs-row {
  column-count: 1;
  column-gap: 25px;
}

.masonry .sqs-col-3 {
  break-inside: avoid;
  margin-bottom: 25px;
  display: block;
}

.masonry .sqs-col-3 img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet breakpoint */
@media (min-width: 600px) {
  .masonry .sqs-row {
    column-count: 2;
    column-gap: 30px;
  }
  .masonry .sqs-col-3 {
    margin-bottom: 30px;
  }
}
/* Desktop breakpoint */
@media (min-width: 1000px) {
  .masonry .sqs-row {
    column-count: 3;
    column-gap: 35px;
  }
  .masonry .sqs-col-3 {
    margin-bottom: 35px;
  }
}
/* Optional: HR styling */
.masonry .sqs-col-3 hr {
  break-inside: avoid;
  margin: 20px 0;
}

/*# sourceMappingURL=global.css.map */
