@font-face {
  font-family: Lato;
  src: url(../fonts/Lato/Lato-Regular.ttf);
}

@font-face {
  font-family: Playfair;
  src: url(../fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: Lato;
  line-height: 1;
  overflow-x: hidden;
}

.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 6rem;
}

a {
  text-decoration: none;
}

/* Header styles */

header .top-items {
  padding: 2rem 3rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

header .top-items a {
  color: #45256c;
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 0.25rem;
  text-underline-position: from-font;
}

header .main-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
}

header .header-logo {
  width: 9rem;
}

header .main-menu {
  display: flex;
  gap: 2rem;
  list-style-type: none;
}

.menu-item {
  position: relative;
}

.menu-link-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.menu-link-wrapper .dropdown-toggle {
  background-color: transparent;
  border: none;
}

.menu-link-wrapper .dropdown-toggle img {
  width: 0.75rem;
}

.menu-link-wrapper a,
.dropdown-menu a {
  color: #45256c;
  font-size: 1rem;
  font-weight: 800;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  border: 1px solid #ececec;
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Home page styles */

.home-heading {
  width: 26rem;
}

.home-engage-learn {
  padding: 6rem;
  border-radius: 1.62756rem;
  border: 6px solid #f5f0d4;
  background: rgba(245, 240, 212, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.home-engage-learn .top-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  place-items: flex-end;
  position: relative;
}

.home-engage-learn .bottom-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem;
  place-items: flex-end;
  position: relative;
}

.home-engage-learn .top-section h2 {
  color: #f26e25;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 700;
}

.home-engage-learn .bottom-section h2 {
  color: #a9572a;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 700;
}

.home-engage-learn .learn-hero,
.home-engage-learn .magic-hero {
  width: 100%;
}

.home-engage-learn .magic-heart {
  position: absolute;
  right: 0;
  top: -2.5rem;
  height: 5.75rem;
  width: auto;
}

.home-engage-learn .learn-swirls {
  position: absolute;
  left: 3rem;
  top: 0;
  width: 20rem;
  height: auto;
}

.artist-carousel-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-top: 2rem;
  /* overflow: hidden; */
}

.artist-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 4rem 1rem;
}

.artist-carousel::-webkit-scrollbar {
  display: none;
}

.artist-slide {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.artist-slide img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  display: block;
}

.artist-prev,
.artist-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: transparent;
  border: none;
  color: #1feccf;
  font-size: 5rem;
  cursor: pointer;
}

.artist-prev {
  left: -3.5rem;
}

.artist-next {
  right: -3.5rem;
}

.our-work-header {
  margin-top: 10rem;
}

.our-work-header h2,
.home-demonstrations-section h2,
.monthly-meetings-section h2,
.previous-demonstrations h2,
.newsletter-section h2,
.location-section h2 {
  color: #1feccf;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.home-shavings {
  margin-left: calc(50% - 4rem);
  width: 16rem;
}

.home-demonstrations-section {
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.demonstrations-container {
  margin-top: 1rem;
  border-radius: 1.62756rem;
  border: 6px solid rgba(31, 236, 207, 0.2);
  background: rgba(31, 236, 207, 0.03);
  padding: 7rem 5rem;
  width: 100%;

  position: relative;
}

.demonstrations-container .top-section {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  width: 100%;
}

.demonstrations-container .top-section h3 {
  color: #f26e25;
  font-size: 3.75rem;
}

.demonstrations-container .woman-demo,
.demonstrations-container .man-demo {
  width: 100%;
}

.demonstrations-container .man-demo {
  width: 65%;
  margin-top: -4rem;
}

.monthly-meetings-section {
  margin-top: 9rem;
  width: 100%;
}

.monthly-meetings-section .meetings-container {
  border-radius: 1.62756rem;
  border: 3px solid rgba(31, 236, 207, 0.5);
  width: 100%;
  margin-top: 1rem;
  padding: 5rem;
}

.monthly-meetings-section .meetings-container .top-section {
  display: flex;
  gap: 6rem;
}

.monthly-meetings-section .meetings-container .top-section h3 {
  color: #f26e25;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 700;
  backdrop-filter: blur(2px);
}

.monthly-meetings-section .meetings-container .top-section .orange-lathe-home {
  width: 7rem;
  margin-top: -3rem;
}

.main-meetings-grid {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
}

.main-meetings-grid h4 {
  color: #f26e25;
  font-family: Playfair;
  font-size: 2.25rem;
  font-weight: 700;
}

.main-meetings-grid .left-side .meetings-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.main-meetings-grid .left-side .meetings-list .meeting p {
  color: #45256c;
  font-size: 2.25rem;
  font-weight: 700;
}

.meeting-features {
  margin-top: 5rem;
  color: #f4a862;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
  backdrop-filter: blur(2px);
}

.main-meetings-grid .right-side .date-artist {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-meetings-grid .right-side .date-artist .event-date {
  color: #45256c;
  font-size: 2.25rem;
  font-weight: 700;
}

.main-meetings-grid .right-side .date-artist .event-artist {
  color: #45256c;
  font-size: 2.25rem;
  font-weight: 400;
}

.main-meetings-grid .right-side .event-artist-website {
  display: block;
  margin-top: 3rem;
  color: #45256c;
  font-size: 2.25rem;
  font-weight: 400;
  text-decoration: underline;
}

.main-meetings-grid .wp-post-image {
  margin-top: 2rem;
}

.main-meetings-grid .join-us-section {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-meetings-grid .join-us-section p {
  color: #45256c;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.main-meetings-grid .join-us-section p span {
  display: block;
}

.technical-challenges {
  margin-top: 8rem;
  width: 100%;
}

.technical-challenges h2 {
  color: #1feccf;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.challenge-winners-container {
  width: 100%;
  margin-top: 1rem;
  padding: 5rem;
  border-radius: 1.62756rem;
  border: 3px solid #f26e25;
}

.challenge-winners-container h2 {
  color: #a9572a;
  text-align: center;
  font-family: Playfair;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: none;
}

.challenge-winners-container .text-section {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.challenge-winners-container .text-section .challenge-text,
.challenge-winners-container .text-section .challenge-description,
.challenge-winners-container .text-section .winners-list {
  color: #45256c;
  font-size: 1.625rem;
  font-weight: 500;
}

.challenge-winners-container .text-section .winners-list {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.challenge-winners-container .winning-photos-container {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.challenge-winners-container .winning-photos-container .name {
  color: #45256c;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: right;
}

.upcoming-challenge {
  margin-top: 6rem;
}

.upcoming-challenge .challenge-title {
  margin-top: 4rem;
  color: #f26e25;
  font-size: 1.625rem;
  font-weight: 800;
}

.upcoming-challenge .challenge-info,
.upcoming-challenge .need-help-text {
  margin-top: 3rem;
  color: #000;
  font-size: 1.625rem;
  font-weight: 500;
}

.upcoming-challenge .footnote {
  color: #000;
  font-size: 1.625rem;
  font-weight: 500;
}

.upcoming-challenge .need-help-contact {
  margin-top: 6rem;
  color: #f26e25;
  text-align: center;
  font-family: Playfair;
  font-size: 2.5rem;
  font-weight: 700;
  width: 100%;
}

.previous-demonstrations {
  margin-top: 8rem;
}

.previous-demonstrations .previous-demonstrations-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.previous-demonstrations .previous-demonstrations-grid img {
  width: 100%;
}

.newsletter-section {
  margin-top: 8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-section .newsletter-signup-container {
  margin-top: 2rem;
  padding: 3rem;
  border-radius: 1.62756rem;
  border: 6px solid rgba(31, 236, 207, 0.5);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 55rem;
  position: relative;
}

.newsletter-section .newsletter-signup-container .newsletter-icon {
  width: 10rem;
}

.newsletter-signup-container h4 {
  margin-top: 4rem;
  color: #f26e25;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.newsletter-signup-container .signup-text {
  margin-top: 4rem;
  color: #353535;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 500;
}

.newsletter-signup-container .input-container {
  margin-top: 1rem;
  width: 100%;
  max-width: 30rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(31, 236, 207, 0.5);
  padding: 0.875rem 0.625rem;
}

.newsletter-signup-container .input-container input {
  flex: 1;
  outline: none;
  border: none;
  padding-left: 0.5rem;
}

.newsletter-signup-container .sign-up-btn {
  margin-top: 2rem;
  width: 100%;
  max-width: 28rem;
  padding: 1.25rem;
  border-radius: 3.125rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #1feccf;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-signup-container .sign-up-btn img {
  width: 2.5rem;
}

.newsletter-signup-container .sign-up-btn p {
  color: #45256c;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  font-size: 1.625rem;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter-shavings {
  width: 5rem;
  position: absolute;
  left: 1rem;
  bottom: 1.5rem;
}

.location-section {
  margin-top: 8rem;
  width: 100%;
  max-width: 100%;
}

.location-section .location-grid {
  margin-top: 2rem;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.location-section .location-grid .left-side h4 {
  color: #f26e25;
  font-family: Playfair;
  font-size: 2rem;
  font-weight: 700;
}

.location-grid .left-side p {
  color: #3f265d;
  font-size: 1.625rem;
  font-weight: 700;
  margin-top: 1rem;
}

.location-grid .left-side .community-center-logo {
  margin-top: 4rem;
  max-width: 20rem;
}

.location-grid .right-side .google-map {
  width: 100%;
}

/* About us page styles */

.about-us-hero {
  display: flex;
  flex-direction: column;
}

.about-us-hero h2,
.artist-gallery-hero h2 {
  color: #f26e25;
  font-size: 3.5rem;
  font-weight: 900;
  align-self: flex-end;
  margin-right: 5rem;
}

.about-us-container,
.our-history-section,
.presidents-message-section {
  padding: 7rem 4.5rem;
  border-radius: 1.62756rem;
  border: 6px solid rgba(31, 236, 207, 0.5);
  background: rgba(245, 240, 212, 0.05);
  position: relative;
}

.about-us-container h3 {
  color: #a9572a;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 700;
}

.about-us-container h3.non-profit {
  margin-top: 8rem;
}

.about-us-container .body-text {
  margin-top: 2rem;
  padding-left: 2rem;
  color: #3f265d;
  font-size: 1.25rem;
  font-weight: 400;
}

.non-profit-section {
  position: relative;
}

.about-us-container .non-profit-shavings {
  height: 8.25rem;
  position: absolute;
  top: -5rem;
  right: 6rem;
}

.our-history-section {
  margin-top: 8rem;
}

.our-history-section .top-heading {
  display: flex;
  justify-content: space-between;
}

.our-history-section .top-heading h2 {
  color: #f26e25;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 800;
}

.our-history-section .history-content {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.our-history-section .history-content .body-text,
.our-history-section .first-members li,
.our-history-section .leaders li {
  color: #3f265d;
  font-size: 1.25rem;
  font-weight: 500;
}

.our-history-section .first-members,
.our-history-section .leaders {
  list-style-type: none;
}

.milestones-image {
  width: 100%;
  margin-top: 4rem;
}

.presidents-message-section {
  width: 100%;
  margin-top: 8rem;
}

.presidents-message-section .top-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.presidents-message-section h2 {
  color: #f26e25;
  font-family: Playfair;
  font-size: 2.875rem;
  font-weight: 800;
}

.presidents-message-section .president-shaving {
  width: 8rem;
}

.presidents-content {
  margin-top: 3rem;
}

.presidents-content .body-text,
.presidents-content li {
  color: #45256c;
  font-size: 1.125rem;
  font-weight: 400;
}

.presidents-content ul {
  padding-left: 2rem;
}

.national-org-section {
  margin-top: 8rem;
  padding: 7rem 4.5rem;
  border-radius: 1.62756rem;
  border: 6px solid #f4a862;
  background: rgba(245, 240, 212, 0.05);
  position: relative;
  width: 100%;
}

.national-org-section .top-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.national-org-section .top-heading h2 {
  color: #f4a862;
  font-family: Playfair;
  font-size: 2.875rem;
  font-weight: 800;
}

.national-org-section .top-heading img {
  width: 12rem;
}

.national-org-content {
  margin-top: 4rem;
}

.national-org-content .body-text,
.national-org-content li {
  color: #3f265d;
  font-size: 1.25rem;
  font-weight: 400;
}

.national-org-content .key-aspects-heading {
  margin-top: 1.5rem;
}

.national-org-content ul {
  padding-left: 2rem;
}

.national-org-content li span {
  font-weight: 700;
}

.national-org-content a {
  color: #3f265d;
  text-decoration: underline;
}

.national-org-content .heading-text {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3f265d;
}

/* Artists page */

.artist-gallery-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.artist-gallery-hero.collaborative {
  margin-top: 8rem;
}

.artist-gallery-container {
  width: 100%;
  padding: 5rem;
  border-radius: 1.62756rem;
  border: 3px solid #f26e25;
}

.artist-gallery-container .artist-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.artist-gallery-grid .artist-item {
  width: 100%;
  border: 1px solid #f26e25;
  background: #fff;
}

.artist-gallery-grid .artist-item img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.artist-gallery-grid .artist-item .bottom-section {
  padding: 1.5rem;
}

.artist-gallery-grid .artist-item .bottom-section .artist-name-container {
  width: 100%;
  height: 2.6rem;
  background-color: #f5f0d4;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.artist-gallery-grid
  .artist-item
  .bottom-section
  .artist-name-container
  .artist-name {
  color: #3f265d;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.collab-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  place-items: center;
}

.collab-gallery-grid .collab-item {
  width: 100%;
  border: 1px solid #f26e25;
  background: #fff;
}

.collab-gallery-grid .collab-item img {
  width: 100%;
}

.collab-gallery-grid .collab-item .bottom-section {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collab-gallery-grid .collab-item .bottom-section .text-container p {
  color: #3f265d;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
}

/* Single Artist Page */

.artist-images-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Contact page styles */

.contact-heading {
  margin-top: 5rem;
  color: #f26e25;
  font-size: 3.5rem;
  font-weight: 900;
  align-self: flex-end;
}

.contact-container {
  margin-top: 4rem;
  width: 100%;
  padding: 3rem 5rem;
  border-radius: 1.62756rem;
  border: 6px solid #f5f0d4;
  background: rgba(245, 240, 212, 0.1);
}

.contact-container .top-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  place-items: flex-end;
}

.contact-container img {
  width: 100%;
}

.contact-container .top-section h2 {
  color: #f26e25;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 7rem;
}

.contact-container .bottom-section {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  place-items: flex-end;
}

.contact-container .bottom-section h2 {
  color: #a9572a;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12rem;
}

.contact-container .write-to-us {
  margin-top: 7rem;
  color: #1feccf;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: Playfair;
}

.contact-container a {
  display: block;
  margin-top: 1.5rem;
  color: #353535;
  font-size: 1.5rem;
}

/* Single art page */

.single-art-container {
  width: 100%;
}

/* Techniques page styles */

.techniques-header {
  text-align: right;
  align-self: flex-end;
  color: #f26e25;
  font-size: 3.5rem;
  font-weight: 900;
}

.techniques-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.techniques-section h2 {
  text-align: left;
  align-self: flex-start;
  margin-top: 3rem;
  color: #1feccf;
  font-size: 2.625rem;
  font-weight: 700;
}

.techniques-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.techniques-grid .item-container {
  width: 17rem;
  height: 5.2rem;
  border: 1px solid #f26e25;
  display: flex;
  justify-content: center;
  align-items: center;
}

.techniques-grid .item-container a {
  color: #3f265d;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.technique-content {
  margin-top: 3rem;
  width: 100%;
}

/* Supplies and safety page styles */

.supplies-heading {
  text-align: left;
  align-self: flex-start;
  margin-top: 3rem;
  color: #1feccf;
  font-size: 2.625rem;
  font-weight: 700;
}

.supplies-grid {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.supplies-grid-item {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr;
  gap: 2.5rem;
}

.supplies-grid-item .image-container {
  border: 1px solid #f26e25;
}

.supplies-grid-item .image-container img {
  width: 100%;
  object-fit: cover;
}

.supplies-grid-item .image-container .name {
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.supplies-grid-item .address-section {
  align-self: flex-end;
}

.supplies-grid-item .address-section a {
  color: #3f265d;
  font-family: Lato;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.supplies-grid-item .address-section .address span,
.supplies-grid-item .opening-hours-section span {
  display: block;
  color: #3f265d;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.5rem;
}

.supplies-grid-item .opening-hours-section {
  align-self: flex-end;
}

.safety-section {
  margin-top: 8rem;
}

.woodturning-safety-container {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  place-items: center;
}

.woodturning-safety-container h4,
.aaw-safety h4,
.get-started-section h4 {
  color: #3f265d;
  font-size: 1.75rem;
  font-weight: 700;
}

.woodturning-safety-container .body-text {
  color: #3f265d;
  font-size: 1.5rem;
  font-weight: 500;
}

.woodturning-safety-container img {
  width: 100%;
}

.woodturning-safety-container .credit {
  text-align: right;
  color: #3f265d;
  font-size: 0.75rem;
  font-weight: 700;
}

.aaw-safety .recommendations-list,
.get-started-section .start-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 2rem;
}

.aaw-safety .recommendations-list li,
.get-started-section .start-list li a {
  color: #3f265d;
  font-size: 1.5rem;
  font-weight: 500;
}

.get-started-section {
  margin-top: 8rem;
  align-self: flex-start;
}

.get-started-section .start-list li a {
  text-decoration: underline;
}

/* Newsletter page styles */

.newsletter-months {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 2rem;
}

.newsletter-months.active {
  display: flex;
}

.newsletter-year-toggle {
  width: 100%;
  padding: 1rem;
  text-align: left;
  font-size: 1.25rem;
  cursor: pointer;
}

.newsletter-month-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #3f265d;
  font-weight: 800;
}

.newsletter-years {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.newsletter-year button {
  width: 14rem;
  height: 7rem;
  background: rgba(31, 236, 207, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: #3f265d;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
}

.full-screen {
  width: 100%;
}

/* Footer styles */

.site-map-container {
  margin-top: 10rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.site-map-container h2 {
  color: #1feccf;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-map-grid {
  margin-top: 2rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.site-map-grid .list h3 {
  color: #45256c;
  font-size: 1.375rem;
  font-weight: 800;
  text-transform: lowercase;
  text-align: center;
}

.site-map-grid .list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.site-map-grid .list a {
  color: #45256c;
  text-align: center;
  font-family: Lato;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.hamburger {
  display: none;
  width: 2.5rem;
  height: 2rem;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #45256c;
  border-radius: 999px;
  transition: 0.3s ease;
}

.hamburger {
  display: none;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #45256c;
  border-radius: 999px;
  transition: 0.3s ease;
}

/* Desktop nav must stay visible */
.site-nav {
  display: block;
}

@media (max-width: 1000px) {
  header {
    position: relative;
    z-index: 1000;
    background: #fff;
  }

  header .main-items {
    padding: 1.5rem;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    z-index: 1002;
  }

  .site-nav {
    position: fixed;
    top: 8rem;
    right: -100%;
    width: 85%;
    max-width: 24rem;
    height: 100vh;
    background: #fff;
    padding: 6rem 2rem 2rem;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.12);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }

  .site-nav.active {
    right: 0;
  }

  header .main-menu {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .menu-link-wrapper {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 0.75rem;
    padding: 0.75rem 0 0 1rem;
  }

  .has-dropdown.open .dropdown-menu {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* Responsive home page */

@media (max-width: 1100px) {
  .page-container {
    padding: 3rem 2rem;
  }

  .home-heading {
    width: 100%;
    max-width: 24rem;
  }

  .home-engage-learn {
    padding: 3rem;
    gap: 4rem;
  }

  .home-engage-learn .top-section,
  .home-engage-learn .bottom-section,
  .demonstrations-container .top-section,
  .main-meetings-grid,
  .location-section .location-grid {
    grid-template-columns: 1fr;
  }

  .home-engage-learn .top-section h2,
  .home-engage-learn .bottom-section h2,
  .demonstrations-container .top-section h3,
  .monthly-meetings-section .meetings-container .top-section h3 {
    font-size: 2.5rem;
  }

  .demonstrations-container,
  .monthly-meetings-section .meetings-container,
  .challenge-winners-container {
    padding: 3rem;
  }

  .main-meetings-grid {
    gap: 4rem;
  }

  .previous-demonstrations .previous-demonstrations-grid {
    grid-template-columns: 1fr;
  }

  .challenge-winners-container .winning-photos-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .page-container {
    padding: 2rem 1rem;
  }

  .home-heading {
    max-width: 18rem;
  }

  .home-engage-learn {
    padding: 2rem 1.25rem;
    gap: 3rem;
    border-width: 4px;
  }

  .home-engage-learn .top-section,
  .home-engage-learn .bottom-section {
    gap: 2rem;
  }

  .home-engage-learn .top-section h2,
  .home-engage-learn .bottom-section h2 {
    font-size: 2rem;
  }

  .home-engage-learn .magic-heart,
  .home-engage-learn .learn-swirls,
  .home-shavings,
  .newsletter-shavings {
    display: none;
  }

  .our-work-header {
    margin-top: 5rem;
  }

  .our-work-header h2,
  .home-demonstrations-section h2,
  .monthly-meetings-section h2,
  .technical-challenges h2,
  .previous-demonstrations h2,
  .newsletter-section h2,
  .location-section h2 {
    font-size: 2.25rem;
  }

  .artist-carousel {
    padding: 0 1rem 1rem;
  }

  .artist-slide {
    flex: 0 0 80%;
  }

  .artist-prev,
  .artist-next {
    display: none;
  }

  .home-demonstrations-section,
  .monthly-meetings-section,
  .technical-challenges,
  .previous-demonstrations,
  .newsletter-section,
  .location-section {
    margin-top: 5rem;
  }

  .demonstrations-container,
  .monthly-meetings-section .meetings-container,
  .challenge-winners-container,
  .newsletter-section .newsletter-signup-container {
    padding: 2rem 1.25rem;
    border-radius: 1rem;
  }

  .demonstrations-container .top-section h3,
  .monthly-meetings-section .meetings-container .top-section h3,
  .challenge-winners-container h2 {
    font-size: 2rem;
  }

  .demonstrations-container .man-demo {
    width: 100%;
    margin-top: 2rem;
  }

  .monthly-meetings-section .meetings-container .top-section {
    flex-direction: column;
    gap: 2rem;
  }

  .monthly-meetings-section
    .meetings-container
    .top-section
    .orange-lathe-home {
    width: 5rem;
    margin-top: 0;
  }

  .main-meetings-grid {
    margin-top: 4rem;
    gap: 3rem;
  }

  .main-meetings-grid h4,
  .main-meetings-grid .left-side .meetings-list .meeting p,
  .main-meetings-grid .right-side .date-artist .event-date,
  .main-meetings-grid .right-side .date-artist .event-artist,
  .main-meetings-grid .right-side .event-artist-website {
    font-size: 1.5rem;
  }

  .main-meetings-grid .right-side .date-artist {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-meetings-grid .wp-post-image {
    width: 100%;
    height: auto;
  }

  .challenge-winners-container .text-section .challenge-text,
  .challenge-winners-container .text-section .challenge-description,
  .challenge-winners-container .text-section .winners-list,
  .upcoming-challenge .challenge-info,
  .upcoming-challenge .need-help-text,
  .upcoming-challenge .footnote {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .challenge-winners-container .winning-photos-container {
    flex-direction: column;
    gap: 2rem;
  }

  .challenge-winners-container .winning-photos-container img {
    width: 100%;
  }

  .challenge-winners-container .winning-photos-container .name {
    text-align: center;
  }

  .upcoming-challenge .need-help-contact {
    font-size: 1.75rem;
  }

  .upcoming-challenge .need-help-contact span {
    display: block;
  }

  .previous-demonstrations .previous-demonstrations-grid {
    gap: 1.5rem;
  }

  .newsletter-signup-container h4 {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  .newsletter-signup-container .signup-text {
    margin-top: 2rem;
    font-size: 1.2rem;
  }

  .newsletter-signup-container .sign-up-btn {
    padding: 1rem;
  }

  .newsletter-signup-container .sign-up-btn p {
    font-size: 1.2rem;
  }

  .location-grid .left-side p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .location-grid .left-side .community-center-logo {
    width: 100%;
    max-width: 15rem;
  }
}

@media (max-width: 420px) {
  .home-engage-learn .top-section h2,
  .home-engage-learn .bottom-section h2,
  .demonstrations-container .top-section h3,
  .monthly-meetings-section .meetings-container .top-section h3 {
    font-size: 1.75rem;
  }

  .our-work-header h2,
  .home-demonstrations-section h2,
  .monthly-meetings-section h2,
  .technical-challenges h2,
  .previous-demonstrations h2,
  .newsletter-section h2,
  .location-section h2 {
    font-size: 1.9rem;
  }
}

/* Responsive artists page */

@media (max-width: 1100px) {
  .artist-gallery-hero h2 {
    font-size: 3rem;
    margin-right: 0;
    align-self: center;
    text-align: center;
  }

  .artist-gallery-container {
    padding: 3rem;
  }

  .artist-gallery-container .artist-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collab-gallery-grid {
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .artist-gallery-hero h2 {
    font-size: 2.25rem;
  }

  .artist-gallery-container {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .artist-gallery-container .artist-gallery-grid,
  .collab-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .artist-gallery-grid .artist-item img {
    height: 13rem;
  }

  .artist-gallery-grid .artist-item .bottom-section,
  .collab-gallery-grid .collab-item .bottom-section {
    padding: 1rem;
  }

  .artist-gallery-grid .artist-item .bottom-section .artist-name-container {
    height: auto;
    min-height: 2.75rem;
    padding: 0.75rem;
  }

  .artist-gallery-grid
    .artist-item
    .bottom-section
    .artist-name-container
    .artist-name,
  .collab-gallery-grid .collab-item .bottom-section .text-container p {
    font-size: 1.25rem;
  }

  .artist-gallery-hero.collaborative {
    margin-top: 5rem;
  }
}

@media (max-width: 420px) {
  .artist-gallery-container {
    padding: 1rem;
  }

  .artist-gallery-hero h2 {
    font-size: 2rem;
  }

  .artist-gallery-grid .artist-item img {
    height: 11rem;
  }
}

/* Responsive newsletter archive */

.newsletter-archive {
  width: 100%;
}

@media (max-width: 1100px) {
  .techniques-header {
    font-size: 3rem;
    align-self: center;
    text-align: center;
  }

  .newsletter-years {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .techniques-header {
    font-size: 2.25rem;
    text-align: center;
    align-self: center;
    margin-top: 2rem;
  }

  .newsletter-years {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-year {
    width: 100%;
  }

  .newsletter-year button {
    width: 100%;
    height: auto;
    min-height: 4.5rem;
    font-size: 1.75rem;
  }

  .newsletter-months {
    width: 100%;
  }

  .newsletter-month-link {
    font-size: 1.125rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(69, 37, 108, 0.15);
  }
}

@media (max-width: 420px) {
  .techniques-header {
    font-size: 2rem;
  }

  .newsletter-year button {
    font-size: 1.5rem;
  }
}

/* Responsive site map/footer */

@media (max-width: 1100px) {
  .site-map-container {
    margin-top: 6rem;
    padding: 3rem 2rem;
  }

  .site-map-grid {
    justify-content: center;
    gap: 2rem;
  }

  .site-map-grid .list {
    width: calc(33.333% - 2rem);
  }
}

@media (max-width: 700px) {
  .site-map-container {
    margin-top: 4rem;
    padding: 2rem 1rem;
  }

  .site-map-container h2 {
    font-size: 2.25rem;
  }

  .site-map-grid {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .site-map-grid .list {
    width: 100%;
  }

  .site-map-grid .list h3 {
    font-size: 1.25rem;
  }

  .site-map-grid .list ul {
    gap: 0.5rem;
  }

  .site-map-grid .list a {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 420px) {
  .site-map-container h2 {
    font-size: 2rem;
  }
}

/* Responsive about page */

@media (max-width: 1100px) {
  .about-us-hero h2 {
    font-size: 3rem;
    margin-right: 0;
    align-self: center;
    text-align: center;
  }

  .about-us-container,
  .our-history-section,
  .presidents-message-section,
  .national-org-section {
    padding: 4rem 3rem;
  }

  .our-history-section .top-heading,
  .presidents-message-section .top-heading,
  .national-org-section .top-heading {
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .about-us-hero h2 {
    font-size: 2.25rem;
  }

  .about-us-container,
  .our-history-section,
  .presidents-message-section,
  .national-org-section {
    padding: 2rem 1.25rem;
    border-radius: 1rem;
    border-width: 4px;
  }

  .about-us-container h3,
  .about-us-container h3.non-profit,
  .our-history-section .top-heading h2,
  .presidents-message-section h2,
  .national-org-section .top-heading h2 {
    font-size: 2rem;
  }

  .about-us-container h3.non-profit {
    margin-top: 4rem;
  }

  .about-us-container .body-text,
  .our-history-section .history-content .body-text,
  .our-history-section .first-members li,
  .our-history-section .leaders li,
  .presidents-content .body-text,
  .presidents-content li,
  .national-org-content .body-text,
  .national-org-content li,
  .national-org-content .heading-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-us-container .body-text {
    padding-left: 0;
  }

  .about-us-container .non-profit-shavings {
    display: none;
  }

  .our-history-section,
  .presidents-message-section,
  .national-org-section {
    margin-top: 5rem;
  }

  .our-history-section .top-heading,
  .presidents-message-section .top-heading,
  .national-org-section .top-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .presidents-message-section .president-shaving {
    width: 5rem;
  }

  .national-org-section .top-heading img {
    width: 8rem;
  }

  .milestones-image {
    margin-top: 2rem;
  }

  .presidents-content ul,
  .national-org-content ul {
    padding-left: 1.25rem;
  }
}

@media (max-width: 420px) {
  .about-us-hero h2 {
    font-size: 2rem;
  }

  .about-us-container h3,
  .about-us-container h3.non-profit,
  .our-history-section .top-heading h2,
  .presidents-message-section h2,
  .national-org-section .top-heading h2 {
    font-size: 1.75rem;
  }
}

/* Responsive contact page */

@media (max-width: 1100px) {
  .contact-heading {
    font-size: 3rem;
    align-self: center;
    text-align: center;
  }

  .contact-container {
    padding: 3rem;
  }

  .contact-container .top-section h2,
  .contact-container .bottom-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .contact-heading {
    font-size: 2.25rem;
    margin-top: 2rem;
  }

  .contact-container {
    padding: 2rem 1.25rem;
    border-radius: 1rem;
    border-width: 4px;
  }

  .contact-container .top-section,
  .contact-container .bottom-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    place-items: center;
  }

  .contact-container .bottom-section h2 {
    order: 2;
  }

  .contact-container .bottom-section img {
    order: 1;
  }

  .contact-container .top-section h2,
  .contact-container .bottom-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .contact-container .write-to-us {
    margin-top: 3rem;
    font-size: 1.75rem;
    text-align: center;
  }

  .contact-container a {
    font-size: 1.1rem;
    text-align: center;
    word-break: break-word;
  }

  .location-section .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 420px) {
  .contact-heading {
    font-size: 2rem;
  }

  .contact-container .top-section h2,
  .contact-container .bottom-section h2 {
    font-size: 1.75rem;
  }
}

/* Responsive supplies and safety page */

@media (max-width: 1100px) {
  .techniques-header {
    font-size: 3rem;
    align-self: center;
    text-align: center;
  }

  .supplies-grid-item {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .supplies-grid-item .opening-hours-section {
    grid-column: 2;
    align-self: flex-start;
  }

  .woodturning-safety-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .techniques-header {
    font-size: 2.25rem;
    text-align: center;
    margin-top: 2rem;
  }

  .supplies-heading {
    font-size: 2rem;
    text-align: center;
    align-self: center;
  }

  .supplies-grid {
    gap: 2rem;
  }

  .supplies-grid-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(69, 37, 108, 0.2);
  }

  .supplies-grid-item .opening-hours-section {
    grid-column: auto;
  }

  .supplies-grid-item .image-container img {
    width: 100%;
  }

  .supplies-grid-item .image-container .name {
    height: auto;
    min-height: 4rem;
    padding: 1rem;
    text-align: center;
  }

  .supplies-grid-item .address-section a {
    font-size: 1.25rem;
    line-height: 1.5;
    word-break: break-word;
  }

  .supplies-grid-item .address-section .address span,
  .supplies-grid-item .opening-hours-section span {
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-word;
  }

  .safety-section {
    margin-top: 5rem;
  }

  .woodturning-safety-container {
    gap: 2rem;
  }

  .woodturning-safety-container h4,
  .aaw-safety h4,
  .get-started-section h4 {
    font-size: 1.5rem;
  }

  .woodturning-safety-container .body-text,
  .aaw-safety .recommendations-list li,
  .get-started-section .start-list li a {
    font-size: 1rem;
    line-height: 1.6;
  }

  .aaw-safety .recommendations-list,
  .get-started-section .start-list {
    padding-left: 1.25rem;
  }

  .get-started-section {
    margin-top: 5rem;
  }
}

@media (max-width: 420px) {
  .techniques-header {
    font-size: 2rem;
  }

  .supplies-heading {
    font-size: 1.75rem;
  }
}

/* Responsive techniques page */

@media (max-width: 1100px) {
  .techniques-header {
    font-size: 3rem;
    align-self: center;
    text-align: center;
  }

  .techniques-section h2 {
    font-size: 2.25rem;
    align-self: center;
    text-align: center;
  }

  .techniques-grid .item-container {
    width: 14rem;
  }
}

@media (max-width: 700px) {
  .techniques-header {
    font-size: 2.25rem;
    margin-top: 2rem;
  }

  .techniques-section h2 {
    font-size: 2rem;
  }

  .techniques-grid {
    width: 100%;
    gap: 1rem;
  }

  .techniques-grid .item-container {
    width: 100%;
    height: auto;
    min-height: 4.5rem;
    padding: 1rem;
  }

  .techniques-grid .item-container a {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

@media (max-width: 420px) {
  .techniques-header {
    font-size: 2rem;
  }

  .techniques-section h2 {
    font-size: 1.75rem;
  }
}

/* Responsive single art/image page */

.single-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.single-image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

.single-image-container + h3 {
  margin-top: 2rem;
  color: #45256c;
  font-size: 1.5rem;
  text-align: center;
}

.single-image-container + h3 a {
  color: #f26e25;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .single-image-container {
    padding: 0 2rem;
  }
}

@media (max-width: 700px) {
  .single-image-container {
    padding: 0;
  }

  .single-image-container + h3 {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

@media (max-width: 420px) {
  .single-image-container + h3 {
    font-size: 1.1rem;
  }
}

/* Responsive single artist gallery page */

@media (max-width: 1100px) {
  .artist-gallery-hero h2 {
    font-size: 3rem;
    margin-right: 0;
    align-self: center;
    text-align: center;
  }

  .artist-gallery-container {
    padding: 3rem;
  }

  .artist-gallery-container .artist-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .artist-gallery-hero h2 {
    font-size: 2.25rem;
  }

  .artist-gallery-container {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .artist-gallery-container .artist-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 420px) {
  .artist-gallery-hero h2 {
    font-size: 2rem;
  }

  .artist-gallery-container {
    padding: 1rem;
  }
}

/* Responsive single technique page */

.technique-content {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
  color: #45256c;
  line-height: 1.8;
}

.technique-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
}

.technique-content iframe,
.technique-content video {
  width: 100%;
  max-width: 100%;
}

.technique-content table {
  width: 100%;
  display: block;
  overflow-x: auto;
}

.technique-content h1,
.technique-content h2,
.technique-content h3,
.technique-content h4 {
  margin: 2rem 0 1rem;
  line-height: 1.3;
}

.technique-content p,
.technique-content li {
  font-size: 1.125rem;
  line-height: 1.8;
}

.technique-content ul,
.technique-content ol {
  padding-left: 1.5rem;
}

@media (max-width: 1100px) {
  .techniques-header {
    font-size: 3rem;
    text-align: center;
    align-self: center;
  }

  .technique-content {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .techniques-header {
    font-size: 2.25rem;
    margin-top: 2rem;
  }

  .technique-content {
    margin-top: 2rem;
  }

  .technique-content p,
  .technique-content li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .technique-content h1 {
    font-size: 2rem;
  }

  .technique-content h2 {
    font-size: 1.75rem;
  }

  .technique-content h3 {
    font-size: 1.5rem;
  }

  .technique-content h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 420px) {
  .techniques-header {
    font-size: 2rem;
  }

  .technique-content p,
  .technique-content li {
    font-size: 0.95rem;
  }
}

/* Responsive full-screen content page */

.full-screen {
  width: 100%;
  max-width: 100%;
}

.full-screen img {
  max-width: 100%;
  height: auto;
  display: block;
}

.full-screen iframe,
.full-screen video {
  width: 100%;
  max-width: 100%;
}

.full-screen table {
  width: 100%;
  display: block;
  overflow-x: auto;
}

.full-screen p,
.full-screen li {
  line-height: 1.7;
}

@media (max-width: 700px) {
  .full-screen {
    padding: 0;
  }

  .full-screen p,
  .full-screen li {
    font-size: 1rem;
  }
}

/* Responsive single content page */

.technique-content {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.technique-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
}

.technique-content iframe,
.technique-content video,
.technique-content embed {
  width: 100%;
  max-width: 100%;
}

.technique-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.technique-content h1,
.technique-content h2,
.technique-content h3,
.technique-content h4,
.technique-content h5,
.technique-content h6 {
  color: #45256c;
  line-height: 1.3;
  margin: 2rem 0 1rem;
}

.technique-content p,
.technique-content li {
  color: #45256c;
  font-size: 1.125rem;
  line-height: 1.8;
}

.technique-content ul,
.technique-content ol {
  padding-left: 1.5rem;
}

.technique-content blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #f26e25;
}

@media (max-width: 1100px) {
  .techniques-header {
    font-size: 3rem;
    text-align: center;
    align-self: center;
  }

  .technique-content {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .techniques-header {
    font-size: 2.25rem;
    margin-top: 2rem;
  }

  .technique-content {
    margin-top: 2rem;
  }

  .technique-content p,
  .technique-content li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .technique-content h1 {
    font-size: 2rem;
  }

  .technique-content h2 {
    font-size: 1.75rem;
  }

  .technique-content h3 {
    font-size: 1.5rem;
  }

  .technique-content h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 420px) {
  .techniques-header {
    font-size: 2rem;
  }

  .technique-content p,
  .technique-content li {
    font-size: 0.95rem;
  }

  .technique-content ul,
  .technique-content ol {
    padding-left: 1.25rem;
  }
}
