/* ================================
   ACWORTH BIG SKIT COMPETITION PAGE
   Words In Motion Acting Studio
================================ */

.wim_acworth {
  font-family: Georgia, "Times New Roman", serif;
  color: #333333;
  background: #fbf8f3;
  padding: 40px 0;
  box-sizing: border-box;
}

.wim_acworth * {
  box-sizing: border-box;
}

.wim_acworth .wrap {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ================================
   HERO SECTION
================================ */

.wim_acworth .hero {
  background: #f7f1e8;
  border: 1px solid #e3d3aa;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 35px;
}

.wim_acworth .eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b78a2a;
  font-weight: bold;
  margin-bottom: 12px;
}

.wim_acworth h1 {
  font-size: 48px;
  line-height: 1.1;
  color: #2d2926;
  margin: 0 0 12px 0;
}

.wim_acworth h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #2d2926;
  margin: 0 0 18px 0;
}

.wim_acworth h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #2d2926;
  margin: 0 0 12px 0;
}

.wim_acworth p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 18px 0;
}

.wim_acworth .subhead {
  font-size: 24px;
  color: #8e1f1f;
  font-weight: bold;
  margin-bottom: 18px;
}

.wim_acworth .info_line {
  font-size: 18px;
  margin-bottom: 8px;
}

.wim_acworth .info_line strong {
  color: #8e1f1f;
}

/* ================================
   BUTTONS
================================ */

.wim_acworth .button_row {
  margin: 25px 0 18px 0;
}

.wim_acworth .btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: bold;
  margin: 0 12px 12px 0;
  text-align: center;
}

.wim_acworth .btn_primary {
  background: #8e1f1f;
  color: #ffffff !important;
}

.wim_acworth .btn_primary:hover {
  background: #6f1818;
  color: #ffffff !important;
}

.wim_acworth .btn_secondary {
  background: #ffffff;
  color: #2d2926 !important;
  border: 1px solid #d6c08a;
}

.wim_acworth .btn_secondary:hover {
  background: #f7f1e8;
  color: #2d2926 !important;
}

.wim_acworth .small_note {
  font-size: 16px;
  color: #555555;
}

/* ================================
   FLYER
================================ */

.wim_acworth .flyer_box {
  background: #ffffff;
  border: 1px solid #e3d3aa;
  border-radius: 20px;
  padding: 18px;
  margin-top: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.wim_acworth .flyer_box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ================================
   PAGE SECTIONS
================================ */

.wim_acworth .section {
  background: #ffffff;
  border: 1px solid #eee1c4;
  border-radius: 20px;
  padding: 34px;
  margin-bottom: 28px;
}

.wim_acworth .section_soft {
  background: #f7f1e8;
}

.wim_acworth .gold_line {
  width: 80px;
  height: 3px;
  background: #b78a2a;
  margin-bottom: 22px;
}

.wim_acworth .detail_box {
  background: #ffffff;
  border-top: 4px solid #b78a2a;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.wim_acworth .step_box {
  background: #fbf8f3;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
}

.wim_acworth .step_num {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background: #b78a2a;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
}

.wim_acworth .takeaway_box {
  background: #fffaf0;
  border-left: 6px solid #b78a2a;
  border-radius: 18px;
  padding: 28px;
}

.wim_acworth .pillar_box {
  background: #ffffff;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.wim_acworth .pillar_box strong {
  display: block;
  color: #b78a2a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ================================
   FINAL BOX
================================ */

.wim_acworth .final_box {
  background: #2d2926;
  color: #ffffff;
  border-radius: 22px;
  padding: 38px;
}

.wim_acworth .final_box h2,
.wim_acworth .final_box p {
  color: #ffffff;
}

.wim_acworth .final_lines {
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 18px;
}

.wim_acworth .center {
  text-align: center;
}

/* ================================
   MOBILE CLEANUP
================================ */

@media only screen and (max-width: 767px) {

  .wim_acworth {
    padding: 24px 0;
  }

  .wim_acworth .wrap {
    width: 94%;
  }

  .wim_acworth .hero {
    padding: 26px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .wim_acworth h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .wim_acworth h2 {
    font-size: 27px;
    line-height: 1.2;
  }

  .wim_acworth h3 {
    font-size: 22px;
  }

  .wim_acworth p {
    font-size: 17px;
    line-height: 1.65;
  }

  .wim_acworth .subhead {
    font-size: 20px;
  }

  .wim_acworth .info_line {
    font-size: 17px;
  }

  .wim_acworth .section,
  .wim_acworth .section_soft,
  .wim_acworth .final_box {
    padding: 26px 20px;
    border-radius: 16px;
    margin-bottom: 22px;
  }

  .wim_acworth .button_row {
    text-align: center;
    margin: 24px 0 16px 0;
  }

  .wim_acworth .btn {
    display: block;
    width: 100%;
    margin: 0 0 12px 0;
    text-align: center;
  }

  .wim_acworth .flyer_box {
    padding: 10px;
    border-radius: 16px;
    margin-top: 22px;
  }

  .wim_acworth .takeaway_box {
    padding: 22px;
  }

  .wim_acworth .final_lines {
    font-size: 25px;
  }
}

/* ================================
   EXTRA SMALL PHONES
================================ */

@media only screen and (max-width: 480px) {

  .wim_acworth h1 {
    font-size: 30px;
  }

  .wim_acworth h2 {
    font-size: 25px;
  }

  .wim_acworth p {
    font-size: 16px;
  }

  .wim_acworth .hero {
    padding: 24px 18px;
  }

  .wim_acworth .section,
  .wim_acworth .section_soft,
  .wim_acworth .final_box {
    padding: 24px 18px;
  }
}