/* ------------------------- Party Doctors Style by Faultless -------------------------------------------------- */
/* ============================================================== */
/* MIXINS */
/* ============================================================== */
/* ------------------------- Side column -------------------------------------------------- */
.maincontent-flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .maincontent-flex {
    flex-direction: row;
  }
}

.widecol {
  width: 100%;
  margin-bottom: 4em;
}
.widecol h2 {
  font-size: calc(var(--title-size) * 0.4);
}
.maincol {
  width: 100%;
  margin-bottom: 4em;
}
@media screen and (min-width: 1000px) {
  .maincol {
    width: 65%;
    margin-bottom: 0;
  }
}

.sidecol {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .sidecol {
    width: 30%;
  }
}

.sidebox-wrapper {
  background: #150e26;
  padding: 2em;
  margin: 0 0 1em;
}
.sidebox-wrapper .h2, .sidebox-wrapper h2 {
  font-size: var(--copy-size-xxxl);
  color: var(--color-primary);
  margin-bottom: 0.5em;
  display: block;
}

/* ------------------------- Mailchimp Form -------------------------------------------------- */
.newsletter-signup {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.newsletter-signup form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-signup label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
  visibility: hidden;
  display: none;
}
.newsletter-signup input[type=email] {
  padding: 0.75rem 0;
  border-bottom: 1px solid #fff;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  background: none;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-signup input[type=email]:focus {
  outline: none;
  border-color: #d41360;
}
.newsletter-signup button[type=submit] {
  padding: 0.75rem 1.25rem;
  background: #d41360;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 100em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.newsletter-signup button[type=submit]:hover {
  background: rgb(165.1948051948, 14.8051948052, 74.8051948052);
}
.newsletter-signup button[type=submit]:active {
  transform: scale(0.97);
}

/* ------------------------- NEWS Tiles -------------------------------------------------- */
.card-row.card-row-info {
  padding: 1em 0;
}
.card-row.card-row-info .card-row.card-row-title h3 {
  padding-bottom: 1rem;
}/*# sourceMappingURL=pd-screen.css.map */