/* Layout container */
.membership-center {
  padding: 20px 25px 20px;
}

@media (min-width: 768px) {
  .membership-center {
    padding: 0 2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .membership-center {
    padding: 0 2rem 3rem;
  }
}

/* Hero section */
.membership-hero {
  display: flex;
  flex-direction: column; /* mobile: stacked, image above text */
  /* gap: 2rem; */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.membership-hero__image img {
  display: block;
  width: 100%;
  /* max-width: 550px; */
  height: auto;
}

@media only screen and (min-width: 1024px) {
  .membership-hero__content {
    /* max-width: 600px; */
  }
}

/* Simple spacing between text blocks */
.membership-hero__point + .membership-hero__point {
  margin-top: 1rem;
}

/* Feature grid */
.membership-features {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  max-width: 350px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media only screen and (min-width:500px){
  .membership-features {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* mobile: 2 per row */
    gap: 1rem 2rem;;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* mobile: 2 per row */
    max-width: 450px;
  }
}

/* Individual feature blocks */

.membership-feature {
  position: relative;
  padding: 0 1rem 0;
  text-align: center;
  background-image: url("https://www.domesticworkers.org/wp-content/uploads/2026/02/lavender-burst.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}

@media only screen and (min-width:500px){
  .membership-feature {
    padding: 2.5rem 1rem 1.5rem;
  }
}

.membership-feature__icon {
  display: block;
  height: auto;
  width: 41px;
  max-height: 50px;
  margin: 1rem auto 0.75rem;
}

@media only screen and (min-width:500px){
  .membership-feature__icon {
    width: 55px;
    max-height: 70px;
    margin: 0 auto 1.25rem;
  }
}

.membership-feature:nth-child(1) .membership-feature__icon:nth-child(1){

}

h5.membership-feature__title {
  padding-left: .5rem;
    padding-right: .5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 150px;
    padding-top: 0 !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
    color: #0b1115;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    height: 39px;
    margin-bottom: 15px;
}

@media only screen and (min-width:500px){
  h5.membership-feature__title {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 150px;
    padding-top: 0 !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #0b1115;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    height: 50px;
    margin-bottom: 25px;
  }
}

/* "Try today" burst on 3rd block */

.item.aya .item-image{
  position: relative;
}

.item.aya .item-image::after,
.membership-feature:nth-child(3)::after {
  content: "Try Today";
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  color: #0b1115;
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  position: absolute;
  top: 5px;
  right: -14px;
  width: 65px;
  height: 30px;
  pointer-events: none;
  /* transform: rotate(14deg); */
}

.es .item.aya .item-image::after,
.es .membership-feature:nth-child(3)::after {
  content: "Pruébelo hoy";
}

/* "Try today" burst on 3rd block */
.item.aya .item-image::before,
.membership-feature:nth-child(3)::before {
  content: '';
  position: absolute;
  top: -13px;
  right: -14px;
  width: 65px;
  height: 65px;
  background-color: #F6E46D;
  border-radius: 50%;
  border: 4px solid #faf8f5;
}

@media only screen and (min-width:500px){
  .membership-feature:nth-child(3)::after {
    top: 9px;
    right: -14px;
    width: 80px;
    height: 32px;
    font-size: 12px;
  }
  .membership-feature:nth-child(3)::before {
    top: -13px;
    right: -14px;
    width: 80px;
    height: 80px;
  }
}

.es .item.aya .item-image::before,
.es .membership-feature:nth-child(3)::before {
  width: 95px;
  height: 95px;
  top: -24px;
  right: -24px;
}

.es .item.aya .item-image::after,
.es .membership-feature:nth-child(3)::after {
  font-size: 12px;
  top: 14px;
  right: -24px;
  width: 95px;
  height: 29px;
}

@media only screen and (min-width:500px){
  /* repeated. lazy */
  .es .item.aya .item-image::before,
  .es .membership-feature:nth-child(3)::before {
    width: 95px;
    height: 95px;
  }

  .es .item.aya .item-image::after,
  .es .membership-feature:nth-child(3)::after {
    font-size: 12px;
    top: 14px;
    right: -24px;
    width: 95px;
    height: 29px;
  }
}

/* Tablet breakpoint (≥768px) */
@media (min-width: 768px) {
  .membership-hero {
    flex-direction: row; /* side-by-side layout */
    align-items: center;
  }

  .membership-hero__image{
    flex: 0 0 30%;
    align-self: flex-end;
    margin-right: 2rem;
  }

  .membership-hero__content {
    flex: 0 0 70%;
    padding-right: 1.5rem;
  }

  /* How to become a member: 50-50 layout */
  .membership-how-to .membership-hero .membership-how-to__left,
  .membership-how-to .membership-hero .membership-how-to__steps {
    flex: 1 1 0%;
    min-width: 0;
  }

  .membership-features {
    max-width: 1400px;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 across, then 2 */
  }

  .membership-how-to .membership-hero .membership-how-to__steps{
    padding-left: 2rem;
  }
}

@media (min-width: 992px) {
  .membership-how-to .membership-hero .membership-how-to__steps{
    margin-top: 2rem;
  }
}

@media (min-width: 1200px) {
  .membership-how-to .membership-hero .membership-how-to__steps{
    padding-left: 3rem;
    margin-top: 3rem;
  }

  .membership-hero__image{
    flex: 0 0 50%;
  }

  .membership-hero__content {
    flex: 0 0 50%;
  }
}

@media (min-width: 1400px) {
  .membership-how-to .membership-hero .membership-how-to__steps{
    padding-left: 4rem;
    margin-top: 4rem;
  }
}

/* Desktop breakpoint (≥1024px) */
@media (min-width: 1024px) {

  .membership-features {
    grid-template-columns: repeat(5, minmax(0, 1fr)); /* 5 across */
  }
}

/* "How to Become a Member" page */
.membership-how-to .membership-hero {
  align-items: stretch;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.membership-how-to__left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.membership-how-to__title {
  margin: 0;
}

.membership-how-to__label {
  margin-top: 0.5rem;
  /* margin-top: 0.75rem; */
  text-align: center;
  /* font-weight: 700; */
  color: #0A151B !important;
}

.membership-how-to__steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 2rem 0;
}

@media only screen and (max-width:499px){
  .membership-how-to__steps {
    gap: 1.5rem;
  }
}

.membership-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.membership-step__number {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b1115;
  font-size: 24px;
  line-height: 56px;
  background-image: url("https://www.domesticworkers.org/wp-content/uploads/2026/02/dark-lavender-burst.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.page-class-hub h3:not(.text-color-dark-teal,.text-color-blue,.text-color-coral,.text-color-dark-coral,.text-color-dark-pink,.text-color-green,.text-color-lavender,.text-color-light-coral,.text-color-orange,.text-color-pink,.text-color-purple,.text-color-teal,.text-color-yellow){
  color: #0b1115 !important;
}

.page-class-hub .container-text .membership-step__content h3:not(.text-color-dark-teal,.text-color-blue,.text-color-coral,.text-color-dark-coral,.text-color-dark-pink,.text-color-green,.text-color-lavender,.text-color-light-coral,.text-color-orange,.text-color-pink,.text-color-purple,.text-color-teal,.text-color-yellow){
  /* color: #c8c0f6 !important; */
  /* color: #E9E8F5 !important; */
  color: #0A151B !important;
}

.membership-step__content h3 {
  margin: 0 0 0.5rem;
}

.membership-step__content p {
  margin: 0;
  color: #faf8f5;
}

/* Video quote page */
.video-quote {
  padding: 2.5rem 1rem;
}

.video-quote__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.video-quote__video iframe,
.membership-how-to__card iframe{
  width: 100%;
  height: 56vw;
  border-radius: 0.5rem;
  background-color: #000000;
}

@media only screen and (min-width:768px){
  .video-quote__video iframe,
  .membership-how-to__card iframe{
    height: 26vw;
  }
}

@media only screen and (min-width:1400px){
  .video-quote__video iframe,
  .membership-how-to__card iframe{
    height: 417px;
  }
}

.video-quote__quote {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.video-quote__quote-card {
  background-color: transparent;
  /* color: #faf8f5; */
  padding: 2rem 1rem 0;
  border-radius: 0;
}

@media only screen and (min-width:768px){ 
  .video-quote__quote-card {
    padding: 2rem;
  }
}

.video-quote__quote-text {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  color: #0A151B !important;
}

.video-quote__attribution {
  margin: 0;
  padding-top: 0 !important;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0A151B !important;
}

/* Mobile: stack with video first */
.video-quote__video {
  order: 1;
}

.video-quote__quote {
  order: 2;
}

@media (min-width: 768px) {
  .video-quote {
    padding: 3rem 2rem;
  }

  .video-quote__inner {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .video-quote__video,
  .video-quote__quote {
    flex:  0 0 50%;
  }

  .video-quote__quote-card {
    padding: 2.5rem;
  }

  .video-quote__quote-text {
    font-size: 2rem;
  }

  /* Desktop: quote on the left, video on the right */
  .video-quote__quote {
    order: 1;
  }

  .video-quote__video {
    order: 2;
  }
}

/* ==========================================================================
   .layout-hero: trigger desktop layout at 768px instead of 992px (page 31415)
   ========================================================================== */
@media only screen and (min-width: 768px) {
  .layout-hero.breadcrumbs-yes {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .layout-hero {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 400px;
    flex-flow: row nowrap;
  }

  .layout-hero .hero-body {
    margin-top: 15px;
  }

  .layout-hero .hero-body p{
    line-height: 1.4;
    font-size: 17px;
    color: #0b1115;
  }

  .layout-hero.background-style-background-repeat .hero-container,
  .layout-hero.background-style-background-cover .hero-container,
  .layout-hero.background-style-plain .hero-container,
  .layout-hero.background-style-centered-with-background-gradient .hero-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .layout-hero.no-min-height,
  .layout-hero.background-height-narrow {
  }

  .layout-hero.background-height-narrow .hero-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .layout-hero.background-height-narrow.breadcrumbs-yes {
    padding-top: 45px;
  }

  .layout-hero.background-height-narrow .graphic-title img {
    height: 80px;
  }

  .layout-hero.background-style-background-right .hero-container,
  .layout-hero.background-style-background-cover-with-box .hero-container,
  .layout-hero.background-style-video .hero-container,
  .layout-hero.background-style-left-with-background-gradient .hero-container {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: stretch;
    order: 1;
    max-width: none;
    /* min-height: 410px; */
  }

  .layout-hero.background-style-background-right .hero-container,
  .layout-hero.background-style-left-with-background-gradient .hero-container {
    flex: 1 1 100%;
    padding: 0 2rem 0;
  }

  .layout-hero.background-style-background-right .hero-graphic,
  .layout-hero.background-style-left-with-background-gradient .hero-graphic {
    flex: 0 1 45%;
    height: auto;
    order: 2;
    min-height: 0;
    margin-top: -30px;
    margin-bottom: -30px;
    background-position: right bottom;
  }

  .layout-hero .hero-graphic.preset-graphic {
    background-position: center bottom;
    background-size: auto 95%;
  }

  .layout-hero.background-style-left-with-background-gradient:before {
    max-width: 60%;
    background-position: right top;
  }

  .layout-hero.background-style-left-with-background-gradient:after {
    max-width: 60%;
    background-position: left bottom;
  }

  .layout-hero.background-style-left-with-background-gradient.background-gradient-orange-purple:before {
    height: 130px;
    background-position: right center;
  }

  .layout-hero.background-style-left-with-background-gradient.background-gradient-orange-purple:after {
    height: 130px;
    background-position: left center;
  }
}

.layout-flexible-text.wide .container{
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.layout-what-members-love-section .layout-section-text .container,
.layout-how-to .layout-section-text .container,
.layout-video-quote .layout-section-text .container,

.layout-flexible-text.wide .layout-section-text .container,

.layout-what-members-love-section .layout-section-text,
.layout-how-to .layout-section-text,
.layout-video-quote .layout-section-text,

.layout-flexible-text.wide .layout-section-text{
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.page-class-hub .container-generic h2, 
.page-class-hub .container-text h2{
	font-family: 'Chiswick Grotesque Web', sans-serif;
}

.page-class-hub .container-text h2:not(.text-color-dark-teal,.text-color-blue,.text-color-coral,.text-color-dark-coral,.text-color-dark-pink,.text-color-green,.text-color-lavender,.text-color-light-coral,.text-color-orange,.text-color-pink,.text-color-purple,.text-color-teal,.text-color-yellow){
  color: #0b1115 !important;
}

.page-class-hub .container-text h3:not(.text-color-dark-teal,.text-color-blue,.text-color-coral,.text-color-dark-coral,.text-color-dark-pink,.text-color-green,.text-color-lavender,.text-color-light-coral,.text-color-orange,.text-color-pink,.text-color-purple,.text-color-teal,.text-color-yellow){
  color: #0b1115 !important;
}

.page-class-hub .layout-video-quote .container-text .layout-section-text h2:not(.text-color-dark-teal,.text-color-blue,.text-color-coral,.text-color-dark-coral,.text-color-dark-pink,.text-color-green,.text-color-lavender,.text-color-light-coral,.text-color-orange,.text-color-pink,.text-color-purple,.text-color-teal,.text-color-yellow){
  color: #0A151B !important;
}

@media only screen and (max-width:499px){
  .page-class-hub .container-generic h2, 
  .page-class-hub .container-text h2{
		font-size: 7.5vw;
    line-height: 1.1;
	}
}

@media only screen and (min-width:500px) and (max-width:767px){
  .page-class-hub .container-generic h2, 
  .page-class-hub .container-text h2{
		font-size: 6vw;
    line-height: 1.2;
	}
}

@media only screen and (min-width:768px){
  .page-class-hub .container-generic h2, 
  .page-class-hub .container-text h2{
    font-size: 40px !important;
    line-height: 1.2;
	}
}

@media only screen and (min-width:992px){
  .page-class-hub .container-generic h2, 
  .page-class-hub .container-text h2{
    font-size: 45px !important;
	}
}

@media only screen and (min-width:1200px){
  .page-class-hub .container-generic h2, 
  .page-class-hub .container-text h2{
    font-size: 47px !important;
	}
}

@media only screen and (min-width:1400px){
  .page-class-hub .container-generic h2, 
  .page-class-hub .container-text h2{
    font-size: 50px !important;
    line-height: 1.2;
	}
}

@media only screen and (min-width:1400px){
  .page-class-hub .hero-title.h1-text-title .text-title{
    font-size: 72px;
  }
}

@media only screen and (min-width:768px){
  .hero-title{
    max-width: 500px;
  }
}

@media only screen and (min-width:992px){
  .hero-title{
    max-width: 600px;
  }
}

@media only screen and (min-width:1200px){
  .hero-title{
    max-width: 700px;
  }
}

.hero-title{
	order: 2;
  color: #0b1115;
}

.hero-subtitle{
	order: 1;
	line-height: 1.3;
}

.hero-title{
	order: 2;
	line-height: 1.3;
}

.hero-body{
	order: 3;
}

.hero-custom-markup{
	order: 4;
}

.button.button-black{
	border-radius: 10px;
  background-color: #0A151B;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0;
  text-transform: none;
  font-size: 19px;
  padding: 15px 35px;
  line-height: 55px;
  height: 55px;
  padding: 0 35px;
}

.button:before{
  /* border-top: 3px solid #f6e46d; */
  display: none;
}

.button:after{
  display: none;
  /* border-top: 3px solid #f6e46d; */
  /* border-right: 3px solid #f6e46d; */
}

.button.login{
  border: 3px solid #0A151B;
    background-color: #E9E8F5;
    color: #0A151B;
    line-height: 49px;
}

/* .button.login:before{
  border-top-color: #0A151B;
}

.button.login:after{
  border-top-color: #0A151B;
  border-right-color: #0A151B;
} */

.button.login:hover,
.button.login:focus{
  background-color: #cbc5ff;
  color: #0A151B;
  opacity: 1;
}

@media only screen and (min-width:768px){
  .button + .button{
    margin-left: 10px;
  }
}

.layout-hero.background-style-background-right .hero-container{
  display: flex;
  flex-flow: column wrap;
}

@media only screen and (max-width:599px){
  .layout-hero.background-style-background-right .hero-container{
    padding-top: 0;
  }

  .layout-hero.background-style-background-right .hero-graphic, 
  .layout-hero.background-style-left-with-background-gradient .hero-graphic, 
  .layout-standard-cta .standard-cta-graphic{
    height: 82vw;
    background-size: 90% auto;
  }

  .button-wrapper .button{
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

.hero-title{
  font-size: 9vw;
  line-height: 1.1;
}

@media only screen and (min-width:600px) and (max-width:767px){
  
	..membership-hero__image img{
		max-width: 250px;
	}
	
	.layout-hero.background-style-background-right .hero-container{
		display: flex;
		flex-flow: row wrap;
	}
	
	.hero-title{
		flex: 0 0 70%;
		/* order: 1; */
		font-size: 8vw;
	}
	
	.hero-graphic{
		width: 30%;
		height: 100% !important;
		position: absolute;
		min-height: 0;
		top: 0;
		right: 0;
		background-size: 150% auto !important;
		background-position: left center !important;
	}
	
	/* .hero-body{
		display: none;
	} */
	
	/* .hero-subtitle{
		order: 2;
		flex: 0 0 70%;
	} */

}

@media only screen and (min-width:768px){
	.hero-graphic{
		background-size: 150% auto !important;
		background-position: left center !important;
	}
}

@media only screen and (min-width:992px){
  .button-wrapper{
    padding-top: 15px;
  }
}

@media only screen and (min-width:1024px){
	.hero-graphic{
		background-size: auto 90% !important;
    background-position: left center !important;
	}
}

@media only screen and (min-width:1200px){
  .layout-hero.background-style-background-right{
    justify-content: center;
    max-width: 1400px;
    margin: auto;
    min-height: 500px !important;
  }

	.layout-hero.background-style-background-right .hero-graphic{
    flex: 0 1 40%;
		background-size: auto 95% !important;
    background-position: right center !important;
    /* max-width: 400px !important; */
	}

  .layout-hero.background-style-background-right .hero-container{
    flex: 0 1 60%;
    max-width: 1000px !important;
    /* margin: auto !important; */
  }
}


/* @media only screen and (min-width: 768px){ */
.layout-hero p.hero-subtitle{
  margin-top: 0;
  color: #635a97;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 1.4 !important;
  display: block;
  margin-bottom: 10px;
}
/* } */
.page-class-hub .layout-section-text h2:before, 
.page-class-hub .layout-section-text h3:before, 
.page-class-hub .layout-section-text h4:before{
  display: none;
}

.layout-body .membership-how-to__steps h3 + p{
	padding-top: 0;
  color: #0A151B !important;
}

.layout-body p{
	line-height: 1.4;
}

.what-members-love h2,
.membership-how-to h2,
.layout-faq h2{
  padding: 1.75rem 0;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.what-members-love h2{
  background-color: transparent;
  margin-bottom: 0;
}

.membership-how-to h2{
  background-color: transparent;
  margin-bottom: 0;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.layout-faq h2{
  background-color: transparent;
  text-align: left !important;
  margin-bottom: 0;
}

.layout-explore h2{
  /* text-align: left !important; */
}

@media only screen and (min-width: 500px) and (max-width: 767px){
  .what-members-love h2{
		padding: 0.5rem 28% 0.75rem 1.25rem;
	}

  .membership-how-to h2{
    padding-top: 1rem;
  }

  .layout-faq h2{
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}

@media only screen and (min-width: 768px){
  .what-members-love h2{
    padding: 2rem 0 2rem 2rem;
  }

  .membership-how-to h2{
    padding: 2rem 2rem 0 0;
    margin-bottom: 2rem;
  }

  .layout-faq h2{
    padding: 3rem 0 1rem;
    text-align: center !important;
  }

  .layout-explore h2{
    padding: 0 0 1rem;
    /* text-align: center !important; */
  }
}

@media only screen and (min-width: 1400px){
  .membership-how-to h2{
    margin-bottom: 2rem;
    margin-top: 1rem;
  }

  .what-members-love h2{
    margin-top: 2rem;
  }

  .layout-faq h2 {
    padding: 5rem 0 2rem;
  }
}

@media only screen and (min-width: 500px) and (max-width: 767px){
	.membership-hero.what-members-love{
		position: relative;	
	}
	
	.membership-hero.what-members-love .membership-hero__image{
    width: 42%;
    height: 35vw;
    margin-top: -1vw;
    position: absolute;
    top: 0;
    right: -10vw;
    z-index: 2;
	}
	
	.membership-hero.what-members-love .membership-hero__image img{
		max-height: 100%;
		max-width: 100%;
		width: auto;
		height: auto;
		display: block;
		margin: auto;
	}
}

.membership-hero__point{
	padding-left: 35px;
	background-image: url('https://www.domesticworkers.org/wp-content/uploads/2026/02/yellow-burst.svg');
	background-size: 30px 30px;
	background-position: left top 2px;
	background-repeat: no-repeat;
}

.membership-hero__point + .membership-hero__point{
	margin-top: 1.5rem;
}

@media only screen and (max-width: 499px){
  .membership-hero__point{
    padding-left: 8vw;
    background-size: 6vw 6vw;
    background-position: left top;
  }

  .page-class-hub .container-text h3{
		font-size: 6vw; /* mobile */
	}
}

@media only screen and (min-width: 500px) and (max-width: 767px){
  .membership-hero__point{
    padding-left: 4.9vw;
    background-size: 4vw 4vw;
    background-position: left top;
  }

  .page-class-hub .container-text h3{
		font-size: 4.5vw; /* mobile */
	}
}

.page-class-hub .container-text h3 + p{
	margin-top: 0.5rem;
  padding-top: 0;
}

.membership-hero__point p{
}

.layout-hero .hero-custom-markup{
  margin-top: 0;
}

@media only screen and (min-width:1400px){
  body{
    background-color: #E9E8F5;
  }
}

@media only screen and (min-width: 1400px){
  .layout-hero .hero-body p{
    font-size: 19px;
  }
}

.layout-body .layout-faq .layout-section-text h3 + p{
  padding-top: 0.75rem;
}

.layout-body p{
  color: #0b1115;
}

.list-of-items.image-height-medium .item-image{
  margin-bottom: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.list-of-items a.item .item-image:hover{
  cursor: pointer;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.3);
}

.videos .item-image{
  background-size: cover;
}

.aya .item-image{
  background-size: contain;
  background-position: center center;
  background-color: #0C151A;
}

.events .item-image{
  background-size: contain;
  background-position: center center;
  background-color: #FFFFFF;
}

.layout-body h3 + ul.plain-list{
  padding-top: 0;
}

@media only screen and (min-width: 500px) and (max-width: 767px) {
  .what-members-love h2 {
      padding: 1rem 30% 2rem 0;
  }
}

.video-quote{
  padding: 2.5rem 1.5rem;
}

.layout-faq .container{
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  max-width: 1200px !important;
}

.layout-explore-items .container,
.layout-explore .container{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.layout-explore .layout-section-text,
.layout-faq .layout-section-text{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.layout-faq .layout-section-text{
  max-width: 1200px !important;
}

@media only screen and (min-width: 768px){
  .layout-explore .layout-section-text,
  .layout-faq .layout-section-text{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media only screen and (max-width: 499px){
.layout-faq h2{
  margin-bottom: 0;
  padding-bottom: 0;
}
}

@media only screen and (max-width: 599px){
.layout-hero p.hero-subtitle{
  font-size: 3vw;
}
}

@media only screen and (min-width: 600px) and (max-width: 767px){
  .layout-hero p.hero-subtitle{
  flex: 0 0 70%;
  font-size: 2vw;
}

.hero-title{
  flex: 0 0 70%;
  font-size: 6.5vw;
  line-height: 1;
}

.hero-body{
  flex: 0 0 58%;
}

.hero-body p{
  line-height: 1.4;
}

.layout-hero.background-style-background-right .hero-graphic, .layout-hero.background-style-left-with-background-gradient .hero-graphic{
  width: 40%;
  background-size: auto 80% !important;   
  background-position: left top 15% !important;
}

.layout-hero.background-style-background-right .hero-container, .layout-hero.background-style-left-with-background-gradient .hero-container{
  padding-right: 0.5rem;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px){
.layout-hero p.hero-subtitle{
  font-size: 15px;
}

.hero-title{
  font-size: 6.5vw;
  max-width: none;
  line-height: 1;
}

.layout-hero.background-style-background-right .hero-container, 
.layout-hero.background-style-left-with-background-gradient .hero-container{
  padding-right: 0.5rem;
}

.layout-hero.background-style-background-right .hero-graphic, 
.layout-hero.background-style-left-with-background-gradient .hero-graphic{
  flex: 0 1 55%;
  background-size: 130% auto !important;
}
}

@media only screen and (min-width: 992px) and (max-width: 1399px){
  .layout-hero p.hero-subtitle{
    font-size: 15px;
    max-width: 570px;
  }

  .hero-title{
    font-size: 5.5vw;
    max-width: none;
    line-height: 1;
  }

  .layout-hero.background-style-background-right .hero-container, 
  .layout-hero.background-style-left-with-background-gradient .hero-container{
    padding-right: 0.5rem;
  }

  .layout-hero.background-style-background-right .hero-graphic, 
  .layout-hero.background-style-left-with-background-gradient .hero-graphic{
    flex: 0 1 55%;
    background-size: auto 77% !important;
    background-position: center center !important;
  }
}

.layout-hero{
	background-image: url('https://www.domesticworkers.org/wp-content/uploads/2026/03/mc-shapes-35pct.svg') !important;
	background-size: 77% auto;
	background-repeat: no-repeat;
	background-position: center top 4vw;
}

@media only screen and (min-width: 600px) and (max-width: 991px){
	.layout-hero{
		background-size: 38% auto;
     background-position: right -2vw top 3vw;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
	.layout-hero{
		background-size: auto 86%;
    background-position: right 0 top 3vw;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px){
	.layout-hero{
		background-size: auto 86%;
    background-position: right 7vw top 3vw;
	}
}

@media only screen and (min-width: 1400px){
	.layout-hero{
		background-size: auto 86%;
    background-position: right 4vw top 3vw;
	}
}

@media only screen and (max-width:599px){

  .hero-subtitle{
    order: 1;
  }
  
  .hero-title{
    order: 2;
  }
  
  /* MOVE BUTTONS UP FOR MOBILE */
  .hero-custom-markup{
    order: 3;
  }

  .hero-body{
    order: 4;
  }
}

.list-of-items .item{
  padding: 0 1.5rem;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.list-of-items .item p{
  margin-bottom: 0;
}

/* @media only screen and (min-width: 768px) {
  .list-of-items.box-style-none:not(.list-of-items-4-columns-text, .list-of-items-3-columns-text, .list-of-items-2-columns-text) .item {
      padding-left: 2rem;
      padding-right: 2rem;
  }
} */

@media only screen and (min-width: 992px){
  .layout-explore-items .container, 
  .layout-explore .container{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.item.aya .item-image{
	background-image: none !important;
	display: flex;
	flex-flow: row nowrap;
	padding: 2rem 3rem;
}

.item.aya .item-image img{
	display: block;
	opacity: 1;
	flex: 0 0 15%;
	margin: 0;
	max-width: 85px;
}

.item.aya .item-image .item-image-inner{
	background-image: none !important;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	opacity: 1;
	flex: 0 0 auto;
	height: 100%;
	position: relative;
  margin-left: 0.5rem;
}

.item.aya .item-image .item-image-inner::before{
	content: 'Quick Question?';
	font-family: 'Chiswick Grotesque Web', sans-serif;
	display: block;
	color: #faf8f5;
	font-size: 25px;
	line-height: 1;
	margin: 0.2rem 0;
}

.item.aya .item-image .item-image-inner::after{
	content: 'Quicker Answer.';
	font-family: 'Chiswick Grotesque Web', sans-serif;
	display: block;
	color: #cbc5ff;
	font-size: 25px;
	line-height: 1;
	margin: 0.2rem 0;
}

.es .item.aya .item-image .item-image-inner::before{
	content: '¿Tiene una pregunta difícil del trabajo?';
  font-size: 20px;
  line-height: 1.3;
  margin: 0.15rem 0;
  width: 200px;
}

.es .item.aya .item-image .item-image-inner::after{
	content: 'Pregúntale a Aya.';
  font-size: 20px;
  line-height: 1.3;
  margin: 0.15rem 0;
  width: 200px;
}

@media only screen and (max-width:499px){
	.layout-explore-items .container, .layout-explore .container{
			padding-left: 0;
			padding-right: 0;
	}
	
	.list-of-items .item{
		margin-left: 0;
		margin-right: 0;
		max-width: none;
	}
}


@media only screen and (max-width:767px){
	
	.join-now-footer .container{
		padding-left: 0;	
		padding-right: 0;
	}
	
	.join-now-footer .layout-section-text{
		padding-left: 0;	
		padding-right: 0;
	}

	.join-now-footer .button.button-black{
		display: block;
    margin: 1.5rem 1.5rem 2rem;
	}

  .layout-how-to .button.button-black{
		display: block;
    margin: -1rem 1.5rem 3rem;
	}
}

@media only screen and (min-width:500px) and (max-width:767px){
	.layout-how-to .button.button-black,
  .join-now-footer .button.button-black{
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (min-width:768px){
	.join-now-footer .button.button-black{
		min-width: 250px;
		margin-bottom: 2rem;
	}

  .layout-how-to .button.button-black,
	.join-now-footer .button.button-black{
		min-width: 250px;
		margin: -2rem 2rem 4rem;
	}
}

@media only screen and (min-width:992px){
	.join-now-footer .button.button-black{
		margin-bottom: 0;
	}
}

.page-class-hub .container-text h2 a:hover, 
.page-class-hub .container-text h3 a:hover{
  color: #635a97 !important;
}

/* ASK AYA */

.layout-trusted-advice-section .membership-center,
.layout-coaching-section .membership-center,
.layout-empower-section .membership-center,
.layout-quote-grid-section .membership-center{
	padding: 20px 25px 20px;
}

@media (min-width: 768px) {
  .layout-trusted-advice-section .membership-center,
	.layout-coaching-section .membership-center,
	.layout-empower-section .membership-center,
	.layout-quote-grid-section .membership-center{
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .layout-trusted-advice-section .membership-center,
	.layout-coaching-section .membership-center,
	.layout-empower-section .membership-center,
	.layout-quote-grid-section .membership-center{
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
	.membership-hero.quote-grid-hero{
		display: flex;
		flex-flow: row wrap;
	}
	
	.membership-hero.quote-grid-hero > *{
		flex: 0 0 100%;
	}
}

.membership-hero.trusted-advice-hero .membership-hero__content,
.membership-hero.coaching-hero .membership-hero__content,
.membership-hero.empower-hero .membership-hero__content{
	border: 1px solid green;
}

.membership-hero.trusted-advice-hero .membership-hero__content h2,
.membership-hero.coaching-hero .membership-hero__content h2,
.membership-hero.empower-hero .membership-hero__content h2{
	margin-bottom: 1rem;
}

@media only screen and (min-width:600px){
	.membership-hero.trusted-advice-hero .membership-hero__content,
	.membership-hero.coaching-hero .membership-hero__content,
	.membership-hero.empower-hero .membership-hero__content{
		order: 1;
	}
}

.membership-hero.trusted-advice-hero .membership-hero__image,
.membership-hero.coaching-hero .membership-hero__image,
.membership-hero.empower-hero .membership-hero__image{
	border: 1px solid red;
	margin-bottom: 1rem;
}

.membership-hero.trusted-advice-hero .membership-hero__image img,
.membership-hero.coaching-hero .membership-hero__image img,
.membership-hero.empower-hero .membership-hero__image img{
	height: 60vw;		
	width: auto;
	max-height: 350px;
}

@media only screen and (min-width:768px){
	.membership-hero.trusted-advice-hero .membership-hero__image,
	.membership-hero.coaching-hero .membership-hero__image,
	.membership-hero.empower-hero .membership-hero__image{
		order: 2;
		margin-bottom: auto;
		margin-top: auto;
	}
}

@media only screen and (min-width:768px){	
	.membership-hero.trusted-advice-hero .membership-hero__image img,
	.membership-hero.coaching-hero .membership-hero__image img,
	.membership-hero.empower-hero .membership-hero__image img{
		max-height: 300px;
		height: auto;
		width: auto;
	}
}