/* --------------------------------------------
GLOBAL RESET & BASE STYLES
-------------------------------------------- */

body {
  font-family: "Montserrat", sans-serif !important;
  background-color: #fff;
  color: #000;
  margin: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

@font-face {
  font-family: "Squidle";
  src:
    url("../src/Squidle.woff2") format("woff2"),
    url("../src/Squidle.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5 {
  /* font-family: "Squidle", sans-serif;
  font-weight: normal;
  text-rendering: optimizeLegibility; */
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}
.black_background {
  background: #000;
  color: #fff;
}

/* Social Icons */
.fa {
  padding: 10px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}
.fa-facebook {
  background: #030303;
  color: white;
}
.fa-instagram {
  background: #000000;
  color: white;
}

p {
  font-size: 1em;
  line-height: 2em;
}
/* --------------------------------------------
HEADER / NAVIGATION
-------------------------------------------- */

header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  height: 70px;
  text-decoration: none;
}
header ul li {
  list-style: none;
  font-weight: 500;
  color: #000;
}
.current-menu-item > a {
  color: #404040;
  font-weight: 700;
}
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

nav a:hover {
  color: #404040;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  height: 70px;
  border-bottom: 8px solid #000000;
  padding-left: 10%;
  padding-right: 10%;
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

/* Post and blog pages  */

.content h1 {
  margin-top: 45px;
}
.post-item {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}

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

.blog-thumbnail {
  margin-right: 20px;
}

.blog-thumbnail img {
  width: 250px !important;
  height: 250px !important; /* or any height you want */
  object-fit: cover !important;
  object-position: center center;
  display: block;
}

.blog-single-img {
  width: 50%;
}
.blog-single-img img {
  width: 100%;
  height: auto;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.tent a:link,
h2 {
  text-decoration: none;
  color: #000;
}
/* 
maybe take out */
/* .hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transform: skewX(10deg);
} */
/* ########################## */
.logo img {
  width: 71%;
  height: auto;
  margin-top: 50px;
  z-index: 999;
  position: relative;
}
section {
  margin-left: 10%;
  margin-right: 10%;
}

/* --------------------------------------------
HERO SECTION
-------------------------------------------- */

.hero {
  /* margin-left: 0px;
  margin-right: 0px; */
  display: flex;
  align-items: center;
  border-bottom: none;
  color: rgb(0, 0, 0);
  position: relative;
}

.hero-right img {
  width: auto;
  height: 750px; /* or any height you want */
  object-fit: cover !important;
  object-position: center center;
  display: block;
  clip-path: polygon(16% 0, 100% 0, 82% 100%, 0 100%);
}
.mobile-image {
  display: none;
}

.hero-divider-mobile {
  display: none;
}

.hero-left {
  flex: 1;
  /* padding-left: 80px; */
}

.home-hero .hero-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62%;
  height: 14px; /* thickness of line */
  background: black; /* same as design */
  z-index: 10;
  margin-left: -12.5%;
  clip-path: polygon(0 0, 100% 0, 99.9% 100%, 0 100%);
}

.hero-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15.5%;
  height: 14px; /* thickness of line */
  background: black; /* same as design */
  z-index: 10;
  clip-path: polygon(0.7% 0, 100% 0, 100% 100%, 0 100%);
  margin-right: -12.5%;
}

.home-hero .hero-left h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 30px;
  margin-top: 0px;
  line-height: 1em;
  max-width: 100%;
}

.hero-left p {
  font-size: 1em;
  max-width: 90%;
  line-height: 2em;
  margin-bottom: 40px;
}
.hero-right {
  flex: 1;
}
.hero-right img {
  width: 100%;
  margin-left: 5%;
  height: 700px;
}

.hero button {
  background: #000000;
  color: #ffffff;
  padding: 10px 20px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  cursor: pointer;
  border: solid 5px;
  border-color: #000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  transform: skewX(-10deg);
}

.hero button:hover {
  background: transparent;
  color: #000;
}

/* --------------------------------------------
BLOG / EVENTS SECTION (HOME PAGE)
-------------------------------------------- */

.home-dual-section {
  display: flex;
  gap: 6rem;
  align-items: center;
  margin: 5rem 10%;
  padding-bottom: 20px;
}

.home-column {
  flex: 1;
}

.home-column-title {
  font-size: clamp(2.3rem, 2vw, 3rem);
  margin-bottom: 2.5rem;
  color: #fff;
}

/* Card layout */
.home-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.home-card-thumb {
  flex: 0 0 120px;
  height: 120px;
  background: #e0e0e0; /* grey placeholder box */
}

/* If you later put an image inside: */
.home-card-thumb img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.home-card-body {
  flex: 1;
}

.home-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0%;
  height: 30px;
  color: white;
  font-family: "Days One", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.home-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}
/* RESET BLOG SECTION LINK STYLES */
.home-card-body a,
.home-card-body a:link,
.home-card-body a:visited {
  color: #000 !important;
  text-decoration: none !important;
}

/* On hover, keep it clean or add subtle effect */
.home-card-body a:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.8; /* optional */
}

/* Responsive */
@media (max-width: 900px) {
  .home-dual-section {
    flex-direction: column;
    gap: 3rem;
    margin-inline: 5%;
  }
}

/* --------------------------------------------
MEMBERSHIP SECTION (HOME PAGE)
-------------------------------------------- */

.memberships {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  gap: 20px;
}

.membership-card {
  width: 100%;
}

.membership-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  clip-path: polygon(0% 0, 95% 0%, 100% 100%, 5% 100%);
}
.membership-card h3 {
  font-size: 1.3em;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif !important;
}

.membership-card h4 {
  font-size: 2em;
  margin: 10px 0;
  font-family: "Days One", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.membership-card li {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1em;
  padding-bottom: 10px;
}

.membership-card button {
  margin-top: 10px;
}

.title {
  font-size: 3em;
  margin-bottom: 20px;
}
/* --------------------------------------------
TEAM SECTION (HOME PAGE)
-------------------------------------------- */

.coach-thumbs {
  display: flex;
  gap: 5px;
  padding-bottom: 5px;
}

.coach-thumbs .thumbs {
  flex: 1 1 0; /* allow shrinking */
  min-width: 0; /* IMPORTANT in flex to prevent overflow */
  max-width: 5%;
  height: auto;
  object-fit: cover;
}

.team-members {
  display: flex;
  flex-direction: row;
  gap: 80px;
  justify-content: center;
}

.team-member-right p {
  font-size: 1.2em;
  line-height: 1.5em;
  margin-top: 10px;
}

.team-member-right h3 {
  font-size: 2em;
  margin-top: 0px;
}

.team-member-left img {
  width: 650px;
}

.team-member-left h4 {
  font-weight: 300;
  line-height: 0.25em;
  margin-bottom: 2px;
}

.team-member-left h2 {
  font-size: 3em;
  margin-top: 0px;
  margin-bottom: 20px;
}

.testimonials {
  display: flex;
  flex-direction: row;
  gap: 80px;
  padding: 50px 0;
}

.testimonial {
  width: 50%;
}

.testimonial-vid {
  display: flex;
  width: 20%;
  padding-right: 10px;
}

/* --------------------------------------------
FOOTER
-------------------------------------------- */

.site-footer {
  background-color: #000000;
  color: white;
  padding: 3rem 1rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-inner h4 {
  font-size: 1.5rem;
}

footer img {
  width: 100px;
  height: auto;
}

.footer-nav ul,
.footer-nav a,
.footer-nav li {
  color: white;
  text-decoration: none;
  margin: 0%;
  margin-bottom: 0.5rem;
  list-style: none;
  padding-left: 0%;
}
.socials {
  display: flex;
  gap: 0.2rem;
  margin-top: 1rem;
  font-size: 1.5rem;
}

.footer-brand-text {
  margin-top: 4rem;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}
button {
  background: transparent;
  color: #000000;
  padding: 10px 40px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  cursor: pointer;
  border: solid 5px;
  border-color: #000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  transform: skewX(-10deg);
}

.button-white {
  background: transparent;
  color: #000000;
  padding: 10px 40px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  cursor: pointer;
  border: solid 5px;
  background-color: #fff;
  border-color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  transform: skewX(-10deg);
}

button a {
  text-decoration: none;
  color: black;
}
button a:hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

button:hover {
  background: #000;
  color: #ffffff;
}

/* About Us Page */
.banner {
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;

  margin-right: 0%;
  margin-left: 0%;
  /* clip-path: polygon(0% 0, 95% 0%, 100% 100%, 5% 100%); */
}
.test {
  display: flex;
}

.about-section,
.about-section-reverse {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 50px;
  align-items: stretch;
}

.about-section-reverse h2,
.about-section-reverse p {
  color: #fff;
}
.about-section h1,
.about-section-reverse h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 0px;
}
.about-section-reverse .col-1 .col-2 {
  flex: 1;
}
.about-section-reverse .col-2 {
  padding-left: 20px;
}

.about-section-reverse .col-1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-section p,
.about-section-reverse p {
  font-size: 1em;
  line-height: 2; /* unitless is better */
  max-width: 95%;
}

.about-section h2,
.about-section-reverse h2 {
  font-size: 2em;
  margin: 0 0 20px; /* shorthand */
  font-weight: 800;
  text-transform: uppercase;
}

.col-1,
.col-2 {
  flex: 1;
}
.col-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops nicely instead of squashing */
  display: block;
}

.acf-map {
  width: 100%;
  height: 400px; /* or whatever height you want */
  position: relative;
}

.acf-map .marker {
  display: none; /* hide the placeholder divs */
}

/* --------------------------------------------
TIMETABLE SECTION
-------------------------------------------- */

.timetable-wrapper {
  background: url("your-background.jpg") center/cover no-repeat;
  padding: 40px;
  text-align: center;
  color: #000000;
  position: relative;
}

.timetable-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.6);  dark overlay */
  z-index: 0;
}

.timetable-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
  text-align: center;
}

.timetable-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}

.day {
  font-weight: 700;
  padding: 12px;
  background: rgba(255, 255, 255);
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.class {
  padding: 18px 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1px);
}

.class small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 5px;
}

/* MOBILE */
/* @media (max-width: 900px) {
  .timetable-grid {
    grid-template-columns: 1fr;
  }

  .day {
    background: rgba(0, 0, 0, 0.4);
  }
} */

/* --------------------------------------------
CONTACT PAGE
-------------------------------------------- */

.contact-page {
  padding: 3% 10%;
}
.contact-title {
  font-size: clamp(3.7rem, 3vw, 3rem);
  padding-left: 13%;
}
.hero-left-contact {
  flex: 1;
}
.hero-left h1 {
  font-size: clamp(1.5rem, 3vw, 5rem);
  margin-bottom: 30px;
  margin-top: 0px;
  line-height: 1em;
  max-width: 100%;
}
.hero-right-contact img {
  width: 750px;
  height: 500px; /* or any height you want */
  object-fit: cover !important;
  object-position: center center;
  display: block;
  margin-right: calc(50% - 9.9vw);
  clip-path: polygon(0% 0, 100% 0%, 100% 100%, 5% 100%);
}

/* --------------------------------------------
POST PAGE
-------------------------------------------- */
.post-main {
  margin-left: 15%;
  margin-right: 15%;
}

.post-intro-inner {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 1.25rem;
}

.post-title {
  margin: 0 0 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.post-intro__image img {
  width: 100%;
  height: auto;
}
.post-content {
  margin-left: 10%;
  margin-right: 10%;
}
.breadcrumb {
  /* background-color: #b7b7b7;
  color: #e0e0e0;
  padding: 5px;
  margin-top: 0px; */
}
.home-link {
  background-color: #000000;
  color: #000000;
  padding: 13px;
  margin-top: 0px;
}
.breadcrumb p {
  padding-left: 2px;
}

.breadcrumb span {
  border: #000;
  border-style: solid;
  border-width: 4px;
  padding: 9px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

/* --------------------------------------------
CONTACT SECTION
-------------------------------------------- */

hr {
  border-top: 4px solid #000;
  border-bottom: 0;
  margin-top: 40px;
  margin-bottom: 0;
}

/* GRID LAYOUT */
.contact-section .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr; /* FIXED for desktop */
  gap: 2rem;

  width: 100%;
  align-items: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  height: 85px;
}

/* TEXT */
.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-section .title {
  color: #fff;
  margin-top: 0%;
}

.contact-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.contact-form label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

/* IMAGE */
.image-container img {
  width: 100%;
  height: 100%;
  max-height: 900px;
  object-fit: cover;
  object-position: center center;
  clip-path: polygon(16% 0, 100% 0, 82% 100%, 0 100%);
  display: block;
}

/* FORM FIELDS */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="subject"],
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  background-color: #000;
  border: 5px solid #ffffff;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 180px;
  resize: none;
}

/* SUBMIT BUTTON */
.contact-form input[type="submit"] {
  background: #ffffff;
  color: #000000;
  padding: 10px 20px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  cursor: pointer;
  border: 5px solid #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  transform: skewX(-10deg);
}

.contact-form input[type="submit"]:hover {
  background-color: #000000;
  color: #ffffff;
  border: 5px solid #ffffff;
}

/* --------------------------------------------
RESPONSIVE FIX
-------------------------------------------- */

@media (max-width: 900px) {
  .contact-section .container {
    grid-template-columns: 1fr; /* Stack */
  }

  .image-container img {
    clip-path: none; /* Optional: remove diagonal on mobile */
    max-height: 350px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    z-index: -2;
    position: relative;
    flex-direction: column-reverse;
  }

  .hero-left h2 {
    font-size: 2em;
    text-align: left;
    padding: 0px 0px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .hero-left,
  .hero-right {
    flex: none;
    width: 100%;
    padding: 0px;
  }
  .mobile-image {
    width: 100%;
    /* or any height you want */
    object-fit: cover !important;
    object-position: center center;
    clip-path: polygon(16% 0, 100% 0, 82% 100%, 0 100%);
    display: block;
  }

  .hero-left {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-left p {
    font-size: 1.2em;
    max-width: 100%;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-right img {
    height: auto;
    max-width: 100%;
    display: none;
  }
  .home-hero .hero-left::after,
  .hero-right::after {
    display: none;
  }
  .hero-divider-mobile {
    display: block;
    height: 12px; /* thickness */
    background-color: #000;
    border: none; /* critical */
    margin: 40px 0;
  }

  .memberships {
    flex-direction: column;
    align-items: center;
  }
  .team-members {
    flex-direction: column;
    align-items: center;
  }
  .membership-card button {
    width: 100%;
    margin-bottom: 30px;
  }

  .coach-thumbs .thumbs {
    flex: 1 1 0; /* allow shrinking */
    min-width: 0; /* IMPORTANT in flex to prevent overflow */
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  /* --------------------------------------------
TESTIMONIAL RESPONIVE FIX
-------------------------------------------- */

  .testimonials {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial {
    width: 100%;
  }
  .testimonial-vid {
    flex-direction: column;
    transform: translateX(-15px); /* left */
  }

  .team-member-left img {
    width: 100%;
  }
  .team-members {
    gap: 0%;
  }

  .home-card {
    flex-direction: column;
  }

  .home-card-body {
    margin-top: 71px;
  }
  .home-card-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .thumbs {
    width: 100%;
  }

  footer {
    height: auto;
    flex-direction: column-reverse;
    align-items: center;
  }
  .footer-left {
    align-items: center;
    margin-top: 15px;
    margin-left: 0px;
  }

  .nav-links {
    position: absolute;
    top: 110px;
    right: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    line-height: 30px;
    font-size: 20px;
    background-color: #ffffff;
    height: 100%;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
    color: #000;
    z-index: 1000;
  }

  header ul {
    height: 0px;
    align-items: flex-start;
  }

  /* --------------------------------------------
  ABOUT PAGE FIX
  -------------------------------------------- */

  .about-section,
  .about-section-reverse {
    padding: 0px;
    padding-top: 50px;
  }

  .about-section-reverse {
    flex-direction: column-reverse;
  }
  .about-section {
    flex-direction: column;
  }

  /* --------------------------------------------
  BLOG PAGE FIX
  -------------------------------------------- */

  .post-item {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-direction: column;
  }
  .blog-thumbnail img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
  }
  .blog-thumbnail {
    margin-right: 0px;
  }

  .contact-us-hero {
    flex-direction: column;
  }
  .hero-left h1 {
    font-size: clamp(3rem, 3vw, 5rem);
    text-align: left;
  }
  .hero-left p {
    font-size: 1.2em;
    max-width: 100%;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
  }

  .contact-page {
    padding: 10% 0%;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    height: 85px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .timetable-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px;
  }
  .timetable-wrapper {
    grid-template-columns: 1fr; /* stack everything */
    gap: 12px;
    padding: 0 12px;
    min-width: 700px;
  }

  .day {
    position: sticky; /* optional: keeps day label visible as you scroll */
    top: 0;
    z-index: 2;
    background: #fff;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .class {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  /* post */
  .breadcrumb {
    font-size: 10px;
  }

  .post-intro__image {
    order: 2;
  }
  .post-intro__text {
    order: 1;
  }

  .post-intro-inner {
    grid-template-columns: 1fr;
    padding: 0px;
    margin-top: 20%;
  }
}
