/*
Theme Name: Studio Veld - Fair
Theme URI: http://www.studioveld.com.au
Author: Studio Veld
Author URI: http://www.studioveld.com.au
Description: Global CSS
Version: 1.0
*/
:root {
  --column-1-width: 5.56%;
  --column-2-width: 22.67%;
  --column-3-width: 66.23%;
  --column-4-width: 5.56%;

  --max-width: 1280px;
  --base-padding: 80px;
  --menu-height: 60px;
  --h1-font-size: 56px;
  --h1-line-height: 64px;

  --title-default-font-size: 1.5rem;
  --title-default-line-height: 2rem;
  --tilte-font-size-large: clamp(40px, 5vw, 56px);

  --default-font-family: "Noto Sans";
  --secondary-font-family-serif: "Noto Serif";
  --default-font-size: 16px;

  --Pure-Black: #000;
  --GDS-Cloud-White: #fff;

  --content-block-padding: 0;

  --menu-column-left: 30%;
  --dropdown-gap: 17.5%;

  --nav-menu-offset-right: 80px;
  --mobile-menu-height: 60px;

  --divider-width: 90%;
  --content-inside-container: 92.5%;

  --context-padding-top: 24px;

  --content-card-width: 348px;
  --content-card-inside-width: 453px;

  --article-card-three-col-gap: 24px;
  --article-card-three-col: calc(33.333% - var(--article-card-three-col-gap));
}
@media screen and (max-width: 1280px) {
  :root {
    --max-width: calc(100% - 40px);
    --mobile-menu-height-offset: calc(100dvh - (var(--mobile-menu-height)));
  }
}
@media screen and (max-width: 1280px) {
  .content-container .container {
    --max-width: calc(100%);
  }
}
@media screen and (max-width: 1024px) {
  .content-container .container {
    --max-width: calc(100% - 40px);
  }
}
p,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
a {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin: 0;
  color: unset;
  padding-inline-start: 0;
  padding: 0;
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
a:-webkit-any-link {
  text-decoration: none;
}
p, #wthf-title, #wthf-yes-no span {
  font-family: var(--default-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}
#wthf-yes-no span {
  color: #000;
}
h1 {
  font-family: var(--secondary-font-family-serif);
  font-size: var(--h1-font-size);
  font-style: normal;
  font-weight: 500;
  line-height: var(--h1-line-height);
}

body {
  font-family: "Noto Serif", "Noto Sans";
  font-size: 16px;
}


.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-container {
  display: inline-flex;
  align-items: center;
}
.share {
  width: fit-content;
}
/* Spinner styles */
.spinner {
  display: none; /* Hidden by default */
  width: 24px;
  height: 24px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px; /* Space between text and spinner */
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Container Grid System */
.content-container {
  display: grid;
  grid-template-columns: var(--content-inside-container) 7.5%;
  /* grid-template-columns: 24px 1fr; */

  .row {
    width: 100%;
    display: grid;
    grid-template-columns: 24px 30% 67%;
  }
  .col-left {
    grid-column: 2;
  }
  .col-right {
    grid-column: 3;
  }
  .divider {
    grid-column: 2 / 4;
  }
}


.full-width-section {
  grid-column: 1 / -1 !important;

  .container {
    display: grid;
  }
  .row {
    display: grid;
    grid-template-columns: 24px 28% 62% 8%;
  }
}
.cta-btn-white {
  color: #fff;
  font-family: var(--default-font-family);
  width: fit-content;
  font-weight: 500;
  position: relative;
  width: fit-content;
}
.cta-btn-white:hover {
  cursor: pointer;
}
.cta-btn-white::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -0.25rem;
  left: 0;
  background-color: #fff;
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}

.cta-btn-white:hover::after {
  transform: scaleX(0);
  transform-origin: bottom right;
}


.cta-btn {
  color: var(--Pure-Black, #000);
  font-family: var(--default-font-family);
  width: fit-content;
  font-weight: 500;
  position: relative;
  width: fit-content;
}
.cta-btn:hover {
  cursor: pointer;
}
.cta-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -0.25rem;
  left: 0;
  background-color: var(--Pure-Black, #000);
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}

.cta-btn:hover::after {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.cta-btn_rev {
  position: relative;
  display: block;
  width: fit-content;
}
.cta-btn_rev:hover {
  cursor: pointer;
}
.cta-btn_rev::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -0.25rem;
  left: 0;
  background-color: var(--Pure-Black, #000);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.cta-btn_rev:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Content Richtextbox */
.content {
  span {
    color: #000;
    font-family: var(--default-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }
  strong {
    font-weight: 500;
  }
}
