/* =============================================================================
MODALS 
================================================================================ */
/* MODAL */
body.modal-open {
  overflow: hidden;
  /* Optional: prevents layout jump if scrollbar disappears */
  padding-right: 15px; 
}


.confirm-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.confirm-modal .modal-logo {
  position: relative;
  width: 100%;
  text-align: left !important;
  margin-bottom: var(--space-6);
}

.confirm-modal .modal-logo img {
  width: 100%;
  max-width: 7rem;
  height: auto;
}

.confirm-modal-content {
  background:rgba(34, 40, 49, 0.9);
  padding: 2rem;
  margin: var(--space-4);
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius-small);
  border: 1px solid var(--website-color-3);
  box-shadow: 0px 0px 20px -3px rgba(252, 245, 150, 0.75);
  position: relative;
}

.confirm-modal-title {
  font-family: "Merriweather", serif;
  font-size: calc(0.825rem + 0.2vw);
  text-transform: none;
  color: var(--website-color-4);
  margin: 0;
  padding: 0 0 var(--space-2);
}

.confirm-modal-subTitle {
  font-family: "Open Sans", sans-serif;
  font-size: calc(1rem + 0.25vw);
  text-transform: none;
  color: var(--font-color-alt);
  margin: 0;
  padding: 0 0 var(--space-2);
}

.confirm-modal-content p {
  color: rgba(49, 54, 63);
}

.confirm-modal .close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.confirm-modal .btn-4-alt{
  cursor: pointer;
  color: var(--color-gray-100);
  border-color: var(--color-gray-100);
  margin-right:var(--space-4);
  transition: all .4s ease-in-out;
}

.confirm-modal .btn-4-alt:hover{
  color: var(--website-color-3);
  border-color: var(--color-gray-50);
}

.confirm-modal .btn-container {
  width: 100%;
  margin-top: var(--space-4);
  text-align: right;
}

#unsubscribeModal .cta-modal-content {
  background-image: url(../../images/site_imgs/bg/modal-think-logo.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

#unsubscribeModal .cta-modal-content img {
  width: 100%;
  max-width: 7rem !important;
}

.cta-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.cta-modal-content {
  background: #fff;
  padding: 2rem;
  margin: var(--space-4);
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius-small);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.cta-modal-title {
  font-family: "Merriweather", serif;
  font-size: calc(1.225rem + 0.5vw);
  text-transform: none;
  color: var(--font-color-alt);
  margin: 0;
  padding: 0 0 var(--space-6);
}

.cta-modal-subTitle {
  font-family: "Open Sans", sans-serif;
  font-size: calc(1rem + 0.25vw);
  text-transform: none;
  color: var(--font-color-alt);
  margin: 0;
  padding: 0 0 var(--space-2);
}

.cta-modal-content p {
  color: rgba(49, 54, 63);
}

.cta-close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.cta-button {
  display: inline-block;
  margin-top: var(--space-4);
  padding: 0.75rem 1.5rem;
  background: rgb(252, 245, 150);
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: 1px solid rgba(34, 40, 49, 0.8);
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background: rgb(34, 40, 49);
  color: white;
}

input#emailInput {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 1);
  backdrop-filter: blur(3px);
}

input#emailInput:focus {
  background-color: white;
  box-shadow: 0px 0px 20px -3px rgba(252, 245, 150, 0.75);
  -webkit-box-shadow: 0px 0px 20px -3px rgba(252, 245, 150, 0.75);
  -moz-box-shadow: 0px 0px 20px -3px rgba(252, 245, 150, 0.75);
}
/* stats  */
.token-inline-stats {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  font-size: calc(1rem + 0.25vw);
}

.stat-item {
  padding: 4px 12px;
  border-radius: 20px;
  background: #f1f3f5;
  color: #495057;
  border: 1px solid #dee2e6;
  white-space: nowrap;
}

/* Optional Color Coding */
.stat-item.used {
  background: #e7f5ff;
  color: #1971c2;
  border-color: #a5d8ff;
}

.stat-item.unused {
  background: #ebfbee;
  color: #2b8a3e;
  border-color: #b2f2bb;
}

.stat-item.total {
  background: #f8f9fa;
  font-weight: bold;
}
/* DOWNLOAD /EMAIL  */

/* Modal Background */
#emailModal.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  justify-content: center;
  align-items: center;
  padding: var(--space-6) var(--space-4);
}

/* Modal Box */
#emailModal .modal-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  max-height: 100%;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: auto;
  animation: fadeIn 0.3s ease;
}

/* Close Button */
#emailModal .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Form */
#download-form input {
  width: 100%;
  padding: var(--space-4);
  margin-top: var(--space-4);
  border: 1px solid #ddd;
  border-radius: var(--border-radius-medium);
}

#emailModal .submit-btn {
  width: 100%;
  padding: var(--space-4);
  background: var(--website-color-1);
  color: var(--color-white);
  font-weight: 700;
  font-size: calc(0.825rem + 0.2vw);
  border-radius: var(--border-radius-medium);
  border: none;
  cursor: pointer;
  margin-top: var(--space-4);
}

/* Download Button (after submitting email) */
#emailModal .download-btn {
  display: block;
  background: var(--color-success-500);
  padding: var(--space-6);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--border-radius-medium);
  margin-top: var(--space-2);
  font-size: calc(0.825rem + 0.2vw);
}

#emailModal .download-btn.website-color-1 {
  color: var(--color-white) !important;
  background: var(--website-color-1) !important;
  border: 1 solid var(--website-color-3) !important;
}

#emailModal .download-btn.website-color-2 {
  color: var(--color-white) !important;
  background: var(--website-color-2) !important;
  border: 1 solid var(--website-color-3) !important;
}

#emailModal .download-btn.website-color-3 {
  color: var(--website-color-1) !important;
  background: var(--website-color-3) !important;
  border: 1 solid var(--website-color-1) !important;
}

#emailModal .download-btn.website-color-4 {
  color: var(--website-color-1) !important;
  background: var(--website-color-4) !important;
  border: 1 solid var(--website-color-1) !important;
}

#emailModal .subscriptionInputContainer {
  display: flex;
  flex-direction: row;
  text-align: left;
  justify-content: start;
  align-items: center;
}

#emailModal .subscriptionInputContainer label {
  color: var(--color-gray-100) !important;
  font-size: calc(0.67rem + 0.15vw) !important;
  margin: 0 var(--space-4) 0 0 !important;
}

#emailModal .subscriptionInputContainer input {
  width: auto !important;
  margin: 0 !important;
  border-color: var(--color-gray-100) !important;
}

#emailModal .hidden {
  display: none;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =============================================================================
SECTIONS 
================================================================================ */
.msg-banner-container {
  width: 100%;
  max-width: var(--layout-w-1440);
  margin: var(--space-6) auto;
  opacity: 1;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s;
  visibility: visible;
}

.msg-banner {
  display: flex;
  justify-content: space-between;
  color: var(--website-color-1);
  font-size: calc(1rem + 0.25vw);
  font-weight: 600;
  margin: 0 var(--space-4);
  padding: var(--space-4) var(--space-4);
  background-color:  rgba(252, 245, 150, 0.9);
  border: 1px solid var(--website-color-1);
  border-radius: var(--border-radius-medium);
  box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.22);
}

.msg-banner-container.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; 
}

.close-msg-banner {
  cursor: pointer;
}

#msg-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99998;
}
#msg-create {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  min-width: 300px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 23px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 34px;
}

.slider::before {
  content: "";
  position: absolute;
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 3px;
  background-color: var(--website-color-2);
  transition: 0.3s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: var(--website-color-3);
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
}

.toggle-text {
  color: var(--website-color-3);
  font-weight: 700;
  user-select: none;
  font-size: 14px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.avatar-display-container {
  width: 100%;
  display: flex;
  gap: var(--space-2);
  justify-content: start;
  align-items: center;
}
.avatar-display {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(252, 245, 150, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.avatar-display,
.cam-avatar-uploader,
.avatar-file-uploader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-preview {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid rgba(252, 245, 150, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: #fff;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.avatar-preview:active {
  transform: scale(0.97);
}

.avatar-preview img,
.avatar-preview video {
  display: block;
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  border-radius: 50%;
  line-height: 0;
}
.avatar-img,
.camera-img {
  width: 100%;
  height: 100%;
}

.avatar-overlay,
.camera-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  text-align: center;
  cursor: pointer;

  transition: opacity 0.25s ease;
  z-index: 3;
}

.avatar-overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  opacity: 0;
}

.camera-overlay {
  background: rgba(255, 255, 255, 0.1);
  color: var(--site-color-light);
  opacity: 1;
}

@media (hover: hover) {
  .avatar-preview:hover .avatar-overlay {
    opacity: 1;
  }

  .avatar-preview:hover .camera-overlay {
    opacity: 0;
  }
}

/* ---------- MOBILE (NO HOVER DEVICES) ---------- */

@media (hover: none) {
  /* always show overlay hint on mobile */
  .avatar-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.35);
  }

  .camera-overlay {
    opacity: 1;
  }
}

.avatar-preview video {
  z-index: 1;
}

.avatar-preview img {
  z-index: 0;
}

.token-bg {
  width: auto;
  background-color: var(--website-color-2);
  border: 1px solid var(--website-color-4);
  border-radius: var(--border-radius-medium);
  margin: 0 auto;
  padding: var(--space-6);
}

.token-container {
  width: auto;
  max-width: var(--layout-w-1440);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  margin: var(--space-6) auto;
}

.token-btn {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  max-width: 330px;
  color: var(--font-color-alt);
  font-family: monospace;
  font-weight: 600;
  background-color: var(--website-color-3);
  border: 1px solid var(--website-color-1);
  padding: var(--space-2) 5px;
  border-radius: var(--border-radius-50);
  transition: all 0.2s ease;
}

.token-btn:hover {
  background-color: var(--website-color-4);
}

.token-btn.used {
  background-color: #353535;
  border-color: #6b6b6b;
  color: #6b6b6b;
  opacity: 0.6;
  cursor: not-allowed;
}

.token-btn.copy-success {
  width: 330px;
  background-color: #28a745;
  border-color: #28a745;
  color: rgb(0, 0, 0);
}

.token-inline-stats {
  padding: 15px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* .stat-item {
  margin-right: 20px;
  font-family: sans-serif;
} */

.add-btn {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #00c43b;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  pointer-events: auto;
  z-index: 20;
}
.minus-btn {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #ff4757;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  pointer-events: auto;
  z-index: 20;
}

.sample-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

a.sample:hover .sample-overlay {
  opacity: 1;
}
.add-btn:hover {
  transform: scale(1.1);
  background-color: #00d13f;
}

.minus-btn:hover {
  transform: scale(1.1);
  background-color: #ff6b81;
}

a.sample:hover .image-wrapper img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Hide the actual radio dot */
.book-selection-button input[type="radio"] {
  display: none;
}

/* Style the label to look like a button */
.book-selection-button {
  visibility: hidden;
  display: inline-block;
  width: 100%;
  padding: var(--space-2) var(--space-4);
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-small);
  color: var(--font-color);
  text-align: center;
  transition: all 0.3s ease;
  user-select: none;
  margin: var(--space-2) auto 0;
}

/* Hover effect */
/* .book-selection-button:hover {
  color: var(--font-color-alt);
  background-color: rgb(255, 248, 154);
  border-color: rgb(255, 248, 154);
} */

/* Styling for when the button is SELECTED */
.book-selection-button:has(input:checked) {
  background-color: rgb(252, 245, 150);
  color: rgb(0, 0, 0);
  border-color: rgb(243, 233, 87);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.incentive-btn-effect {
  cursor: default !important;
  color: var(--font-color-alt);
  background-color: rgb(255, 248, 154);
  border-color: rgb(255, 248, 154)
}

.sample-hover-effect {
  color: var(--website-color-4);
  border-color:var(--website-color-4);
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.sample-hover-effect:hover {
  cursor: pointer !important;
  color: var(--font-color-alt);
  background-color: rgb(255, 248, 154);
  border-color: rgb(255, 248, 154)
}

h2.hr-title {
  position: relative;
  width: fit-content;
  margin: -61px auto var(--space-10);
  border: 2px solid var(--website-color-3);
  text-align: center;
  color: var(--website-color-4);
  background-color: var(--website-color-2);
  padding: var(--space-8) var(--space-12);
  border-radius: var(--border-radius-50);
  z-index: 3 !important;
  box-shadow: 0px -31px 14px -31px rgba(0, 0, 0, 1);
  -webkit-box-shadow: 0px -31px 14px -31px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px -31px 14px -31px rgba(0, 0, 0, 1);
}

h2.hr-title-call-to-action {
  position: relative;
  width: fit-content;
  font-size: calc(1.225rem + 0.5vw);
  margin: -61px auto var(--space-10);
  border: 2px solid var(--website-color-3);
  text-align: center;
  color: var(--website-color-4);
  background-color: var(--website-color-2);
  padding: var(--space-8) var(--space-12);
  border-radius: var(--border-radius-50);
  z-index: 3 !important;
}

.hr-title-sub {
  position: relative;
  /* letter-spacing: 7px; */
  width: fit-content;
  margin: -5.4rem 0 4rem 1rem;
  text-align: left;
  line-height: 2.2rem;
  color: var(--website-color-1);
  background-color: var(--color-white);
  padding: var(--space-1) var(--space-4);
  z-index: 3;
}

.hr-title-sub-bg {
  background-color: var(--website-color-3);
  background: linear-gradient(135deg, #fff45f, #feb47b);
  /* Angled gradient from one color to another */
  border-radius: var(--border-radius-small);
  border: 1px solid var(--website-color-1);
  padding: var(--space-2) var(--space-4);
}

h3,
h4 {
  color: var(--font-color-alt);
  padding: 0 !important;
  margin: 0;
}

hr {
  width: 100%;
  max-width: var(--layout-w-1440);
  border: 1px solid rgba(238, 238, 238, 0.1);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* #section-login section {
  margin: 0 auto;
  max-width: var(--layout-w-1440);
}

#section-login {
  height: 100%;
  position: relative;
  background-color: rgba(34, 40, 49, 1);
  z-index: 1;
  padding: 0 var(--space-4) var(--space-12);
}  */

/* .create-bg {
  background-image: url(../../../images/site_imgs/section-1/create-bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
} */

/* .create-bg {
  position: relative;
  overflow: hidden;
}

.create-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../images/site_imgs/section-1/create-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
  } */
.breadcrumbs {
  position: relative;
  z-index: 102;
}
#section-1 {
  position: relative;
  /* Adjust the alpha (0.5) to make it more or less transparent */
  background-image: url(../../../images/site_imgs/section-1/create-bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid var(--website-color-4);
  padding: var(--space-12) 0 0;
  /* box-shadow: 1px -15px 13px -15px rgba(0, 0, 0, 0.75) inset; */
  z-index: 100;
}

#section-1 section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Blur settings */
  background: rgba(49, 54, 63, 0.2);
  z-index: 101;
  pointer-events: none;
}

#section-login {
  position: relative;
  /* Adjust the alpha (0.5) to make it more or less transparent */
  background-image: url(../../../images/site_imgs/bg/login-bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 100%;
  border-top: 1px solid var(--website-color-4);
  padding: var(--space-12) 0;
  /* box-shadow: 1px -15px 13px -15px rgba(0, 0, 0, 0.75) inset; */
  z-index: 100;
}

#section-login section {
  width: 100%;
  max-width: var(--layout-w-720);
  height: 70vh;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

#section-login .flexbox-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

#section-1 section {
  max-width: 100% !important;
  background-color: rgba(49, 54, 63, 0);
}

#section-1 article {
  border-top: 1px solid var(--website-color-4);
  position: relative;
  z-index: 102;
}

#section-1 .flexbox-col {
  width: var(--layout-w-720);
  gap: var(--space-2);
}

#section-1 h1,
#section-login h1 {
  width: 100%;
  font-size: calc(1.225rem + 0.5vw);
  position: relative;
  color: var(--website-color-4) !important;
  word-wrap: break-word;
}

#section-1 .flexbox-row li.form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--space-2);
}

#section-1 .flexbox-row li.form input,
#section-login .flexbox-row li.form input {
  width: 100%;
  padding: var(--space-6);
}

#section-1 .flexbox-row .btn,
#section-login .flexbox-row .btn {
  width: 100%;
  background-color: var(--website-color-1);
  border: 1px solid var(--website-color-3);
  border-radius: var(--border-radius-medium);
  padding: var(--space-4);
}

#section-1 .flexbox-row .btn:hover,
#section-1 .flexbox-row .btn:focus,
#section-login .flexbox-row .btn:hover,
#section-login .flexbox-row .btn:focus {
  width: 100%;
  color: var(--website-color-1);
  background-color: var(--website-color-3);
  border: 1px solid var(--website-color-1);
}

#section-1 sub,
#section-login sub {
  color: var(--website-color-4);
}

#section-1 .page-title {
  position: relative;
  max-width: var(--layout-w-1440);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-4);
  z-index: 102;
}

#section-1 .page-title-no-border {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 var(--space-4);
}

#section-1 .page-title:first-child {
  margin-top: 120px;
}

#section-1 .page-title h1,
#section-1 .page-title-no-border h1 {
  width: 100%;
  position: relative;
  text-transform: none;
  font-size: calc(1.5rem + 0.75vw);
  color: var(--website-color-4) !important;
  word-wrap: break-word;
  margin: 0;
}

#section-1 .page-title h2,
#section-1 .page-title-no-border h2 {
  width: 100%;
  font-size: calc(1.125rem + 0.5vw);
  text-transform: none;
  position: relative;
  color: var(--website-color-4) !important;
  word-wrap: break-word;
}

#section-1 .page-title .links {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: var(--space-4);
}

#section-1 .page-title .links a {
  letter-spacing: 0.1rem;
}
#section-1 .profile-header.flexbox-row {
  justify-content: center;
  gap: var(--space-12);
  margin: var(--space-12) 0 0;
  padding: var(--space-10) var(--space-6);
}

#section-1 .profile-header.flexbox-row .profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  max-width: var(--layout-w-480);
  text-align: center;
  /* border: 1px solid var(--website-color-3);
  border-radius: var(--border-radius-medium); */
}

#section-1 .profile-header.flexbox-row .profile h2 {
  color: var(--website-color-3);
  font-size: calc(1.125rem + 0.5vw);
}

#section-1 .profile-header.flexbox-row .update-profile {
  width: 100%;
  max-width: var(--layout-w-480);
}
#section-1 .profile-header.flexbox-row li {
  margin: var(--space-2) 0;
}

#section-1 .profile-header.flexbox-row .update-profile h3 {
  color: var(--website-color-4);
  font-size: calc(1rem + 0.25vw);
}

#section-1 .profile-header.flexbox-row .update-profile input,
#section-1 .profile-header.flexbox-row .update-profile select {
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--website-color-4);
  border-radius: var(--border-radius-medium);
}
#section-1
  .profile-header.flexbox-row
  .update-profile
  select.profile-select:invalid {
  color: #666666;
}

#section-1 .profile-header.flexbox-row .update-profile li:last-child {
  text-align: right;
  margin-top: var(--space-4);
}

#section-1 #login.flexbox-row,
#section-1 #replace-passcode.flexbox-row {
  width: 100%;
  height: 88vh;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 0 var(--space-4);
}

#section-1 .create-menu.flexbox-row {
  width: 100%;
  height: 100%;
  position: relative;
  justify-content: start;
  align-items: start;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin: var(--space-12) 0;
}

#section-1 .create-menu.flexbox-row .form {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

#section-1 .create-menu.flexbox-row .inline-form {
  width: 100%;
  max-width: 960px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-1);
}

#section-1 .create-menu.flexbox-row .inline-form input {
  width: 100%;
  max-width: 720px;
  flex: 0 0 720px;
}

#section-1 .create-menu.flexbox-row:last-of-type {
  margin: var(--space-12) 0 11rem;
}

/* Works in Chrome, Edge, Safari */
.custom-scroll {
  margin: 1rem 0;
  overflow: auto;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--website-color-3) #f2f2f200; /* Firefox */
}

/* WebKit browsers */
#section-1 .create-gallery.flexbox-row.custom-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

#section-1 .create-gallery.flexbox-row.custom-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

#section-1 .create-gallery.flexbox-row.custom-scroll::-webkit-scrollbar-thumb {
  background: var(--website-color-3);
  border-radius: 8px;
}

#section-1
  .create-gallery.flexbox-row.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--website-color-3);
}

#section-1 .create-gallery.flexbox-row {
  max-width: var(--layout-w-1440);
  /* max-height: 980px; */
  position: relative;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: var(--space-12);
  padding: var(--space-12) var(--space-6);
  /* overflow: auto; */
  margin: 0 auto;
}

#section-1 .create-gallery .flexbox-col {
  align-items: center;
  width: fit-content;
  max-width: 220px;
  gap: var(--space-1);
  padding-bottom: var(--space-6);
}

#section-1 .create-gallery h3.title,
#section-1 .create-menu h3.title {
  color: var(--website-color-3);
  font-size: calc(1rem + 0.25vw);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

#section-1 .create-gallery .subtitle {
  color: var(--website-color-4);
  font-size: calc(0.67rem + 0.15vw);
  text-transform: uppercase;
}

#section-1 .create-gallery a,
#section-1 .create-menu a {
  flex-shrink: 0;
  border-radius: var(--border-radius-medium);
}

#section-1 .create-gallery a img,
#section-1 .create-menu a img {
  width: 100%;
  height: 100%;
  background-size: cover;
  flex-shrink: 0;
  border-radius: var(--border-radius-medium);
  border: 0.1rem solid rgba(90, 90, 90, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}

#section-1 .create-gallery a:hover img,
#section-1 .create-menu a:hover img {
  transform: scale(1.05);
  border: 0.5rem solid rgba(252, 245, 150, 0.75);
  box-shadow: 0 22px 18px -15px rgba(0, 0, 0, 0.75);
}

/*CLIENT DASHBOARD IMAGES */
.sub-img {
  display: none;
}

.sub-img.thumb {
  max-width: 240px;
}

.sub-img.is-active {
  display: block;
}

/* Slider */

.bx-like-slider {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--website-color-2);
  border-radius: var(--border-radius-large);
  box-shadow: 0px 12px 18px -9px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 12px 18px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 12px 18px -9px rgba(0, 0, 0, 0.75);
  margin-bottom: var(--space-10);
}

.bx-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.bx-track {
  display: flex;
  transition: transform 0.6s ease;
}

.bx-slide {
  flex: 0 0 100%;
}

.bx-slide img {
  width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Arrows */
.bx-prev,
.bx-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 2;
}

.bx-prev {
  left: 10px;
}

.bx-next {
  right: 10px;
}

#section-2 {
  position: relative;
  background-color: rgb(255, 255, 255);
  /* background-color: rgb(238, 238, 238); */
  /* background-image: url(../images/site_imgs/section-2/bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover; */
  width: 100%;
  max-width: 100%;
  border-top: 1px solid var(--website-color-3);
  padding: var(--space-12) var(--space-4);
  box-shadow: 1px -15px 13px -15px rgba(0, 0, 0, 0.75) inset;
  z-index: 100;
}

#section-2 .mascot-sm {
  text-align: right;
  width: auto;
  height: 250px;
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 400;
  margin-bottom: var(--space-2);
}

#section-2 .mascot-sm img {
  width: auto;
  height: 100%;
}

#section-2 h2 {
  text-align: center;
  color: var(--font-color-alt);
}

#section-2 p {
  text-align: center;
  color: var(--website-color-1);
}

#section-2 article p {
  color: var(--font-color);
}

#section-2 h4 {
  text-transform: none;
  text-align: center;
  color: var(--website-color-1);
}

#section-2 article {
  background-color: rgba(255, 255, 255, 0);
  /* border-radius: var(--border-radius-medium); */
  /* padding: var(--space-8) var(--space-8) var(--space-6); */
  margin-bottom: var(--space-8);
}

#section-2 .flexbox-row {
  gap: var(--space-8);
  text-align: center;
}

#section-2 .flexbox-row .btn {
  width: 100%;
  background-color: var(--website-color-1);
  border: 1px solid var(--website-color-1);
  border-radius: var(--border-radius-medium);
  padding: var(--space-4);
}

#section-2 .flexbox-row .btn:hover,
#section-2 .flexbox-row .btn:focus {
  width: 100%;
  color: var(--website-color-1);
  background-color: var(--website-color-3);
  border: 1px solid var(--website-color-1);
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel {
  margin: auto;
  max-width: 1440px;
  overflow-x: scroll;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.image-track {
  display: flex;
  gap: var(--space-4);
  padding: 2rem 0;
}

.image-track::-webkit-scrollbar {
  display: none;
}

.image-track a {
  height: 220px;
  flex-shrink: 0;
  border-radius: var(--border-radius-medium);
}

.image-track a.grow-btn img {
  height: 100%;
  flex-shrink: 0;
  border-radius: var(--border-radius-medium);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-track a.grow-btn:hover img {
  transform: scale(1.05);
  box-shadow: 0 22px 18px -15px rgba(0, 0, 0, 0.75);
}

/* Nav buttons */
.nav-btn {
  height: auto;
  padding: 20px var(--space-6);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: rgba(255, 255, 255, 1);
  margin: auto -20px;
  border-radius: var(--border-radius-medium);
  border: none;
  opacity: 0;
  pointer-events: none;
  z-index: 300;
  transition: opacity 0.3s ease 0.6s;
  /* delay applies when fading OUT */
}

.carousel-container:hover .nav-btn {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
  /* no delay on fade IN */
}

/* .image-track a.grow-btn img:hover .nav-btn {
  opacity: 1;
  pointer-events:visible;
} */

.nav-btn.left {
  left: 75px;
}

.nav-btn.right {
  right: 75px;
}

#section-3,
#section-profile {
  position: relative;
  /* Adjust the alpha (0.5) to make it more or less transparent */
  background-image: url(../../../images/site_imgs/section-1/create-bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-shadow: 1px -15px 13px -15px rgba(0, 0, 0, 0.75) inset;
  z-index: 100;
}
#section-3 {
  border-top: 1px solid var(--website-color-3);
  padding: var(--space-12) var(--space-4);
}
#section-profile {
  padding: var(--space-12) var(--space-6) var(--space-12);
}

#section-3 section::before,
#section-profile section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Blur settings */
  background: rgba(49, 54, 63, 0.2);
  z-index: 101;
  pointer-events: none;
}

#section-3 section,
#section-profile section {
  background-color: rgba(49, 54, 63, 0);
}

#section-3 article,
#section-profile article {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: var(--space-8) 0;
  z-index: 102;
}

#section-profile .profile-header,
#section-profile .profile-body {
  max-width: var(--layout-w-1440);
  margin: 0 auto;
}

#section-3 h2,
#section-profile h2 {
  text-align: center;
  color: var(--website-color-4);
}
#section-profile h3 {
  text-align: center;
  color: var(--website-color-4);
  font-size: calc(1rem + 0.25vw);
}

#section-3 p,
#section-profile p {
  text-align: center;
  color: var(--website-color-4);
}

#section-3 article p,
#section-profile article p {
  color: var(--font-color);
}

#section-3 .flexbox-row li.form,
#section-profile .flexbox-row li.form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--space-2);
}

#section-3 .flexbox-row,
#section-profile .flexbox-row {
  display: block;
  width: 100%;
}

#submit-form-claim,
#submit-form-verify-tokens,
#submit-form-update-email,
#submit-form-delete-account {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
}

#section-3 .flexbox-row .inline-form,
#section-profile .flexbox-row .inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  gap: 0;
  align-items: stretch;
}

#section-profile .flexbox-row .inline-form input {
  width: 100%;
  min-width: 0;
  padding: var(--space-4) var(--space-6);
  font-size: 1.1rem;
  border: 2px solid var(--website-color-4);
  border-right: none;
  border-radius: 8px 0 0 8px;
  outline: none;
}

#section-3 .flexbox-row .inline-form input {
  width: 100%;
  min-width: 0;
  padding: var(--space-6) var(--space-8);
  font-size: 1.1rem;
  border: 2px solid var(--website-color-4);
  border-right: none;
  border-radius: 8px 0 0 8px;
  outline: none;
}

#section-3 .flexbox-row .inline-form button,
#section-profile .flexbox-row .inline-form button {
  padding: 0 40px;
  min-width: 160px;
  border-radius: 0 8px 8px 0;
  margin: 0;
  white-space: nowrap;
}

#section-profile .delete-account.flexbox-row h3,
#section-profile .delete-account.flexbox-row input,
#section-profile .delete-account.flexbox-row button {
  opacity: 0.5;
  transition: opacity 0.4s ease-in-out;
}

/* This triggers if ANY element inside the row (input or button) is clicked/focused */
#section-profile .delete-account.flexbox-row:focus-within h3,
#section-profile .delete-account.flexbox-row:focus-within input,
#section-profile .delete-account.flexbox-row:focus-within button {
  opacity: 1;
}

#section-profile .delete-account.flexbox-row .inline-form button {
  color: var(--font-color);
  background-color: #ad010f;
  border: 2px solid #94010e;
  transition: all 0.4 ease-in-out;
}
#section-profile .delete-account.flexbox-row .inline-form button:hover {
  background-color: #c91c2a;
  border: 2px solid #c91c2a;
}

/* --- MOBILE FIX --- */
@media (max-width: 600px) {
  #section-3 .flexbox-row .inline-form,
  #section-profile .flexbox-row .inline-form {
    grid-template-columns: 100%;
    gap: 0;
  }

  #section-3 .flexbox-row .inline-form input,
  #section-profile .flexbox-row .inline-form input {
    border-right: 2px solid var(--website-color-4);
    border-radius: 8px 8px 0 0;
    width: 100% !important;
    box-sizing: border-box;
  }

  #section-3 .flexbox-row .inline-form button,
  #section-profile .flexbox-row .inline-form button {
    border-radius: 0 0 8px 8px;
    width: 100% !important;
    min-width: 100% !important;
    padding: 15px 0;
    box-sizing: border-box;
  }
}

#section-3 li.form input,
#section-profile li.form input {
  width: 100%;
  padding: var(--space-6);
}

#section-3 h4,
#section-profile .profile-body h4 {
  text-transform: none;
  text-align: center;
  color: var(--website-color-4);
}

#section-3 .flexbox-row,
#section-profile .flexbox-row {
  gap: var(--space-8);
  text-align: center;
}

#section-3 .flexbox-row .btn,
#section-profile .flexbox-row .btn {
  width: 100%;
  background-color: var(--website-color-1);
  border: 1px solid var(--website-color-1);
  border-radius: var(--border-radius-medium);
  padding: var(--space-4);
}

#section-3 .flexbox-row .btn:hover,
#section-3 .flexbox-row .btn:focus,
#section-profile .flexbox-row .btn:hover,
#section-profile .flexbox-row .btn:focus {
  width: 100%;
  color: var(--website-color-1);
  background-color: var(--website-color-3);
  border: 1px solid var(--website-color-1);
}

/* END OF TEMPLATE SECTION */

#section-call-to-action section {
  max-width: var(--layout-w-960);
}

#section-call-to-action {
  background-color: rgba(34, 40, 49);
  background-image: url(../../../images/site_imgs/splash/default.svg);
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid var(--website-color-3);
  padding: 0 var(--space-4) var(--space-12);
  /* box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.8); */
}

#section-call-to-action h2 {
  text-align: center;
  color: var(--website-color-3);
  padding-bottom: var(--space-6);
}

#section-call-to-action p {
  text-align: center;
  color: var(--website-color-3);
}

#section-call-to-action article p {
  color: var(--font-color);
}

#section-call-to-action h4 {
  text-transform: none;
  text-align: center;
  color: var(--website-color-1);
}

#section-call-to-action article {
  background-color: rgb(238, 238, 238);
  padding: var(--space-8);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

#section-call-to-action .flexbox-row {
  gap: var(--space-8);
  text-align: center;
}

#section-call-to-action .flexbox-row li {
  width: 100%;
  max-width: 50%;
}

#section-call-to-action .flexbox-row li img {
  width: 100%;
  max-width: 100%;

  background-color: transparent;
  background-repeat: no-repeat;
  background-position: cover;
  border: 1px solid var(--website-color-2);
  border-radius: var(--border-radius-large);
}

#section-call-to-action .flexbox-row li.form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--space-2);
}

#section-call-to-action .flexbox-row li.form input {
  width: 100%;
  padding: var(--space-4);
}

#section-call-to-action .flexbox-row .btn {
  width: 100%;
  background-color: var(--website-color-1);
  border: 1px solid var(--website-color-1);
  border-radius: var(--border-radius-medium);
  padding: var(--space-4);
}

#section-call-to-action .flexbox-row .btn:hover,
#section-call-to-action .flexbox-row .btn:focus {
  width: 100%;
  color: var(--website-color-1);
  background-color: var(--website-color-3);
  border: 1px solid var(--website-color-1);
}

/* =============================================================================
MEDIA RESPONSIVE 
================================================================================ */
@media (max-width: 945px) {
  .page-title h1,
  .page-title h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    /* margin: 0 var(--space-4); */
  }
  #section-1 .profile-header.flexbox-row {
    flex-wrap: wrap;
    gap: var(--space-6);
    /* margin: 0 var(--space-4) var(--space-12); */
  }

  #section-1 .image-1 {
    top: 25px;
    max-width: 667px;
  }
  #section-1 .create-gallery.flexbox-row {
    justify-content: center;
    gap: var(--space-6);
    padding-top: var(--space-10);
  }
  #section-1 .create-gallery .flexbox-col,
  #section-1 .create-gallery .flexbox-col li {
    align-items: center;
    text-align: center;
    max-width: 75%;
  }
}

@media (max-width: 48rem) {
  /* 768px */
  /* hr {
    border: none;
  } */

  h1 {
    font-size: calc(1.2rem + 0.65vw) !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  h2 {
    font-size: calc(1rem + 0.25vw) !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  h2.hr-title,
  h2.hr-title-call-to-action {
    padding: var(--space-4) var(--space-6);
    border-radius: var(--border-radius-large);
  }

  h2.hr-title {
    position: relative;
    margin: -7.5rem auto 1rem;
  }

  .login-bg {
    margin-top: 150px;
  }

  #section-1 #login.flexbox-row,
  #section-1 #replace-passcode.flexbox-row {
    height: 60vh;
  }

  #section-1 .page-title:first-child {
    margin: 120px 0 var(--space-4);
  }

  /* .page-title h1,
  .page-title h2 {
    margin: 0 var(--space-4);
  } */

  #section-1 .profile-header.flexbox-row {
    gap: var(--space-4);
    margin: var(--space-6) 0;
  }
  .profile-header.flexbox-row .update-profile li:last-child {
    width: 100%;
  }

  #section-1 .profile-header.flexbox-row .update-profile button {
    width: 100%;
  }

  #section-1 .create-menu.flexbox-row {
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    margin: 0 0 var(--space-12);
  }

  #section-1 .create-menu.flexbox-row li {
    width: 100%;
  }

  #section-1 .create-menu.flexbox-row:last-of-type {
    margin: var(--space-10) 0 var(--space-8);
  }

  #section-1 .create-menu.flexbox-row a {
    text-align: center;
  }

  #section-1 .create-gallery.flexbox-row {
    justify-content: center;
    gap: var(--space-6);
    padding-top: var(--space-10);
  }

  #section-1 .create-menu.flexbox-row .inline-form input,
  #section-1 .create-menu.flexbox-row .inline-form button {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  #section-1 .create-menu.flexbox-row .inline-form button {
    margin-top: var(--space-4);
  }

  h2.hr-title-call-to-action {
    position: relative;
    margin: -3rem auto 3rem;
  }

  h2.hr-title-sub {
    margin: -2rem auto 0;
  }

  h3 {
    font-size: calc(0.825rem + 0.2vw);
  }

  .hr-title-sub {
    position: relative;
    /* letter-spacing: 7px; */
    width: fit-content;
    margin: -4.3rem 0 0 0;
  }

  #section-1 .flexbox-col {
    width: 100%;
    padding: 0;
  }

  #section-1 {
    padding: var(--space-8) 0 0;
  }

  #section-2,
  #section-3 {
    padding: var(--space-12) var(--space-6);
  }

  #section-2 article {
    border-radius: var(--border-radius-small);
    padding: 0;
  }

  #section-2 .mascot-sm {
    height: 120px;
    right: 0px;
    margin-bottom: var(--space-10);
  }

  .nav-btn {
    display: none;
  }

  .image-track a {
    height: 200px;
  }

  #section-call-to-action {
    /* background-image: url("/images/site_imgs/section-1/designers-ckreation-section-1-mobile-bg.svg"); */
    padding: 0 var(--space-8) var(--space-12);
  }

  #section-call-to-action img {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  #section-call-to-action .flexbox-row {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
  }

  #section-call-to-action .flexbox-row .btn {
    width: 100%;
    padding: var(--space-4);
  }

  #section-call-to-action h1 {
    font-size: calc(1.125rem + 0.5vw);
  }

  #section-call-to-action .flexbox-row {
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  #section-call-to-action article {
    padding: var(--space-8);
  }

  #section-call-to-action .flexbox-row li {
    max-width: 100%;
  }
}
