@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Bangers&family=Days+One&family=Lato:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400;1,700&display=swap");

:root {
  --lpl-orange: #ed6630;
  --lpl-orange-light: #f5996c;
  --lpl-dark: #171717;
  --lpl-top: #333333;
}

body {
  font-family: Lato, Arial, Helvetica, sans-serif;
  color: #252525;
}

.container-header {
  background: #fff;
  background-image: none;
  box-shadow: none;
}

.container-header .navbar-brand,
.container-header .site-description {
  display: none !important;
}

.container-topbar {
  background: var(--lpl-top);
  color: #aaa;
  padding: 0;
}

.container-topbar > .container,
.container-below-top > .container,
.container-nav > .container,
.container-banner > .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.lpl-top-module,
.lpl-brand-module,
.lpl-nav-module,
.lpl-hero-module {
  width: 100%;
}

.lpl-top-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 40px;
  padding: 4px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lpl-top-inner--user-only {
  justify-content: flex-end;
}

.lpl-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lpl-social img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.lpl-user-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lpl-user-links a {
  color: #ddd;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: .02em;
}

.lpl-user-links a:hover {
  color: #fff;
}

.container-below-top {
  background: #000;
  padding: 0;
}

.lpl-brand-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 18px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lpl-logo img {
  display: block;
  width: min(460px, 48vw);
  height: auto;
}

.lpl-tagline {
  color: #757575;
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 300;
  text-align: right;
  white-space: nowrap;
}

.lpl-tagline span {
  color: var(--lpl-orange);
}

.container-nav {
  background: #000;
  border-bottom: 3px solid var(--lpl-orange);
  padding: 0;
}

.lpl-main-nav {
  max-width: 1180px;
  min-height: 49px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.lpl-main-nav > a,
.lpl-nav-drop > button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  padding: 16px 14px 14px;
  white-space: nowrap;
  cursor: pointer;
}

.lpl-main-nav > a:hover,
.lpl-nav-drop:hover > button,
.lpl-nav-drop:focus-within > button {
  color: var(--lpl-orange-light);
}

.lpl-main-nav > a.is-active,
.lpl-nav-drop.is-active > button {
  color: var(--lpl-orange);
}

.lpl-nav-drop {
  position: relative;
  display: flex;
}

.lpl-dropdown {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  top: 100%;
  min-width: 235px;
  background: #050505;
  border-top: 3px solid var(--lpl-orange);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  padding: 7px 0;
}

.lpl-nav-drop:hover .lpl-dropdown,
.lpl-nav-drop:focus-within .lpl-dropdown {
  display: block;
}

.lpl-dropdown a {
  display: block;
  padding: 8px 16px;
  color: #eee;
  text-decoration: none;
  font-size: 13px;
}

.lpl-dropdown a:hover {
  color: var(--lpl-orange-light);
  background: #161616;
}

.lpl-dropdown strong {
  display: block;
  color: var(--lpl-orange);
  padding: 9px 16px 5px;
  text-transform: uppercase;
  font-size: 12px;
}

.lpl-wide-dropdown {
  min-width: 520px;
  grid-template-columns: 1fr 1fr;
}

.lpl-nav-drop:hover .lpl-wide-dropdown,
.lpl-nav-drop:focus-within .lpl-wide-dropdown {
  display: grid;
}

.container-banner {
  margin: 0;
  padding: 0;
}

.lpl-live-hero {
  min-height: 340px;
  background:
    linear-gradient(rgba(255,255,255,.16),rgba(255,255,255,.16)),
    url('/images/helix/grey-piano-bg-3.jpg') center bottom / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 20px;
}

.lpl-live-box {
  width: min(900px, 94vw);
  text-align: center;
}

.lpl-live-title {
  display: inline-block;
  background: rgba(255,255,255,.86);
  color: #444;
  padding: 12px 28px 8px;
  font-size: clamp(25px, 3.1vw, 42px);
  font-weight: 300;
}

.lpl-countdown {
  background: rgba(0,0,0,.72);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 70px);
  padding: 18px 22px 16px;
}

.lpl-countdown div {
  min-width: 90px;
}

.lpl-countdown strong {
  display: block;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  font-weight: 300;
}

.lpl-countdown span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.lpl-subscribe-button {
  display: inline-block;
  margin-top: 25px;
  padding: 11px 18px;
  border: 2px solid var(--lpl-orange);
  background: rgba(255,255,255,.7);
  color: var(--lpl-orange);
  font-weight: 700;
  text-decoration: none;
}

.lpl-subscribe-button:hover {
  color: #fff;
  background: var(--lpl-orange);
}

a {
  color: var(--lpl-orange);
}

a:hover {
  color: #c94e10;
}

@media (max-width: 900px) {
  .lpl-brand-row {
    flex-direction: column;
    gap: 10px;
  }

  .lpl-logo img {
    width: min(600px, 92vw);
  }

  .lpl-tagline {
    text-align: center;
    white-space: normal;
  }

  .lpl-main-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .lpl-main-nav > a,
  .lpl-nav-drop > button {
    padding: 12px 9px;
    font-size: 12px;
  }

  .lpl-wide-dropdown {
    min-width: min(520px, 94vw);
  }
}

@media (max-width: 600px) {
  .lpl-social {
    display: none;
  }

  .lpl-top-inner {
    justify-content: flex-end;
  }

  .lpl-user-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .lpl-countdown {
    gap: 10px;
  }

  .lpl-countdown div {
    min-width: 56px;
  }

  .lpl-countdown strong {
    font-size: 36px;
  }
}

/* =========================================================
   LEARN PIANO LIVE HOMEPAGE
   ========================================================= */

.lpl-home {
  margin: 0;
  padding: 0;
}

.lpl-home .lpl-wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.lpl-home h1,
.lpl-home h2 {
  font-weight: 300;
  line-height: 1.2;
}

.lpl-home p {
  line-height: 1.65;
}

.lpl-programs {
  padding: 70px 0 75px;
  background: #fff;
  text-align: center;
}

.lpl-programs h1 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 10px;
  color: #2f2d2e;
}

.lpl-lead {
  font-size: 20px;
  color: #666;
  margin: 0 auto 45px;
  max-width: 850px;
}

.lpl-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lpl-feature-card {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 10px 18px 25px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.lpl-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  color: #333;
}

.lpl-feature-card img {
  width: 100%;
  max-width: 215px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 15px;
}

.lpl-feature-card h2 {
  font-size: 24px;
  margin: 8px 0 10px;
  color: #222;
}

.lpl-feature-card p {
  font-size: 15px;
  color: #555;
}

.lpl-testimonials {
  padding: 65px 0;
  background: #f5f5f5;
}

.lpl-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.lpl-testimonial-grid blockquote {
  margin: 0;
  padding: 25px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  text-align: center;
}

.lpl-testimonial-grid img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
}

.lpl-testimonial-grid p {
  font-size: 15px;
  color: #555;
  font-style: italic;
}

.lpl-testimonial-grid cite {
  display: block;
  color: #ed6630;
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
}

.lpl-imagine {
  min-height: 640px;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.18)),
    url('/images/2018/08/22/lighterparkpianojamin.jpg') center center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.lpl-imagine-inner {
  display: flex;
  justify-content: flex-start;
}

.lpl-imagine-copy {
  max-width: 620px;
  background: rgba(0,0,0,.50);
  padding: 42px;
}

.lpl-imagine h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-top: 0;
  color: #fff;
}

.lpl-imagine ul {
  columns: 2;
  column-gap: 36px;
  padding-left: 20px;
  margin: 25px 0 30px;
}

.lpl-imagine li {
  margin: 0 0 8px;
}

.lpl-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lpl-big-button,
.lpl-outline-button {
  display: inline-block;
  padding: 13px 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .02em;
}

.lpl-big-button {
  background: #d65d20;
  color: #fff;
  border: 2px solid #d65d20;
}

.lpl-big-button:hover {
  background: #ba581c;
  border-color: #ba581c;
  color: #fff;
}

.lpl-outline-button {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.lpl-outline-button:hover {
  background: #fff;
  color: #333;
}

.lpl-how {
  padding: 75px 0 80px;
  background:
    linear-gradient(rgba(0,0,0,.77), rgba(0,0,0,.77)),
    url('/images/2018/08/17/pianoinsidedark.jpg') center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.lpl-how h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 35px;
}

.lpl-video {
  width: min(850px, 100%);
  margin: 0 auto 35px;
  aspect-ratio: 16 / 9;
}

.lpl-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.lpl-how-intro {
  max-width: 900px;
  margin: 0 auto 45px;
  font-size: 17px;
}

.lpl-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lpl-how-grid img {
  width: min(210px, 80%);
  margin-bottom: 16px;
}

.lpl-how-grid p {
  font-size: 15px;
}

.lpl-subscribe {
  padding: 80px 0;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.84)),
    url('/images/2018/08/27/carousellake1.jpg') center / cover no-repeat;
}

.lpl-subscribe h2 {
  font-size: clamp(38px, 5vw, 58px);
  color: #333;
  margin-bottom: 8px;
}

.lpl-subscribe > .lpl-wrap > p {
  font-size: 19px;
  color: #555;
  margin-bottom: 35px;
}

.lpl-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.lpl-plan {
  background: rgba(255,255,255,.95);
  border: 2px solid #ed6630;
  text-decoration: none;
  padding: 30px 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,.10);
}

.lpl-plan strong {
  display: block;
  font-size: 21px;
  color: #333;
  margin-bottom: 9px;
}

.lpl-plan span {
  display: block;
  font-size: 24px;
  color: #ed6630;
}

.lpl-plan:hover {
  background: #ed6630;
}

.lpl-plan:hover strong,
.lpl-plan:hover span {
  color: #fff;
}

.lpl-private {
  padding: 60px 0;
  background: #f2f2f2;
  text-align: center;
}

.lpl-private h2 {
  font-size: 38px;
}

.lpl-private p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 25px;
}

.lpl-about {
  padding: 70px 0;
  background: #fff;
}

.lpl-about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 45px;
  align-items: center;
}

.lpl-about-grid img {
  width: 220px;
  height: auto;
}

.lpl-about h2 {
  font-size: 42px;
  margin: 0 0 5px;
}

.lpl-about-kicker {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  font-size: 13px;
}

.lpl-about p {
  max-width: 760px;
  font-size: 16px;
}

@media (max-width: 950px) {
  .lpl-feature-grid,
  .lpl-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lpl-how-grid {
    grid-template-columns: 1fr;
  }

  .lpl-plan-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 650px) {
  .lpl-feature-grid,
  .lpl-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .lpl-imagine {
    min-height: auto;
    padding: 55px 0;
  }

  .lpl-imagine-copy {
    padding: 28px;
  }

  .lpl-imagine ul {
    columns: 1;
  }

  .lpl-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lpl-about-grid img {
    margin: 0 auto;
  }
}

/* LPL PUBLIC PAGES */

.lpl-page {
  background: #fff;
}

.lpl-page .lpl-wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.lpl-page-hero {
  padding: 65px 20px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url('/images/2018/08/17/pianoinsidedark.jpg') center / cover no-repeat;
}

.lpl-page-hero h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(38px,5vw,58px);
  font-weight: 300;
}

.lpl-page-hero p {
  margin: 0;
  font-size: 19px;
}

.lpl-page-body {
  padding: 65px 0 80px;
}

.lpl-testimonial-page-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.lpl-testimonial-page-grid blockquote {
  margin: 0;
  padding: 28px;
  text-align: center;
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
}

.lpl-testimonial-page-grid img {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 50%;
}

.lpl-testimonial-page-grid cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: bold;
  color: #ed6630;
}

.lpl-page-cta {
  text-align: center;
  margin-top: 42px;
}

.lpl-bio-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: start;
}

.lpl-bio-photo {
  width: 100%;
  height: auto;
}

.lpl-bio-grid h2,
.lpl-private-page h2 {
  font-size: 36px;
  font-weight: 300;
}

.lpl-bio-grid p,
.lpl-private-page p {
  font-size: 17px;
  line-height: 1.7;
}

.lpl-private-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 45px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 55px;
}

.lpl-private-intro img {
  width: 240px;
  max-width: 100%;
}

.lpl-private-offer {
  max-width: 700px;
  margin: 0 auto;
  padding: 38px;
  text-align: center;
  background: #f5f5f5;
  border-top: 4px solid #ed6630;
}

.lpl-private-price {
  margin: 10px 0 18px;
  color: #ed6630;
  font-size: 42px;
  font-weight: 300;
}

.lpl-private-price span {
  color: #777;
  font-size: 18px;
}

@media (max-width: 800px) {
  .lpl-testimonial-page-grid {
    grid-template-columns: 1fr;
  }

  .lpl-bio-grid,
  .lpl-private-intro {
    grid-template-columns: 1fr;
  }

  .lpl-bio-photo,
  .lpl-private-intro img {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* LPL STUDENT ZONE */

.lpl-student-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.lpl-student-card {
  display: block;
  padding: 30px 24px;
  text-align: center;
  text-decoration: none;
  color: #333;
  background: #f6f6f6;
  border-top: 4px solid #ed6630;
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.lpl-student-card:hover {
  color: #333;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.lpl-student-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.lpl-student-card h2 {
  margin: 5px 0 10px;
  font-size: 25px;
  font-weight: 300;
}

.lpl-student-card p {
  margin: 0;
  color: #666;
}

.lpl-card-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 78px;
}

@media (max-width: 850px) {
  .lpl-student-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 560px) {
  .lpl-student-grid {
    grid-template-columns: 1fr;
  }
}

/* LPL CURRENT-SITE HOMEPAGE ENRICHMENT */
.lpl-compare-section,
.lpl-freebie-section,
.lpl-samples-section {
  padding: 62px 20px;
}
.lpl-compare-section,
.lpl-samples-section { background: #fff; }
.lpl-freebie-section { background: #f5f5f5; text-align: center; }
.lpl-compare-section h2,
.lpl-freebie-section h2,
.lpl-samples-section h2 {
  margin: 0 0 24px;
  text-align: center;
  font-weight: 300;
}
.lpl-compare-scroll {
  overflow-x: auto;
  border: 1px solid #ddd;
  box-shadow: 0 3px 16px rgba(0,0,0,.08);
}
.lpl-compare-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  background: #fff;
}
.lpl-compare-table th,
.lpl-compare-table td {
  padding: 12px 13px;
  border-bottom: 1px solid #e7e7e7;
  border-right: 1px solid #eee;
  text-align: center;
  vertical-align: middle;
}
.lpl-compare-table th:first-child {
  text-align: left;
  min-width: 210px;
}
.lpl-compare-table thead th {
  background: #333;
  color: #fff;
  font-size: 14px;
}
.lpl-compare-table thead th:nth-child(2),
.lpl-compare-table tbody td:nth-child(2),
.lpl-compare-table tfoot td:nth-child(2) {
  background: #fff3ed;
  font-weight: 700;
}
.lpl-compare-table tfoot th,
.lpl-compare-table tfoot td {
  border-top: 3px solid #ed6630;
  font-weight: 700;
}
.lpl-form-frame iframe {
  width: 100%;
  max-width: 760px;
  height: 600px;
  border: 0;
  background: #fff;
}
.lpl-sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}
.lpl-sample-card {
  padding: 22px;
  background: #f7f7f7;
  border-top: 4px solid #ed6630;
}
.lpl-sample-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 760px) {
  .lpl-sample-grid { grid-template-columns: 1fr; }
  .lpl-compare-section,
  .lpl-freebie-section,
  .lpl-samples-section { padding: 42px 14px; }
}

/* LPL PRIVATE INSTRUCTION DETAIL */
.lpl-coach-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}
.lpl-info-card,
.lpl-private-block {
  border: 1px solid #e5e8ee;
  border-radius: 12px;
  background: #fff;
}
.lpl-info-card { padding: 20px; }
.lpl-private-block { margin-top: 24px; padding: 24px; }
.lpl-info-card h2,
.lpl-info-card h3,
.lpl-private-block h2 { margin-top: 0; }
.lpl-info-card li { margin-bottom: 6px; }
.lpl-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #777;
}
.lpl-private-faq h3 {
  margin: 20px 0 5px;
  font-size: 17px;
}
.lpl-private-faq p { margin-top: 0; }
.lpl-private-cta {
  margin-top: 26px;
  padding: 28px;
  text-align: center;
  color: #fff;
  background: #333;
  border-radius: 12px;
}
.lpl-private-cta h2 { color: #fff; margin-top: 0; }
.lpl-private-cta .lpl-outline-button {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
@media (max-width: 760px) {
  .lpl-coach-grid { grid-template-columns: 1fr; }
  .lpl-private-block { padding: 18px; }
}

/* LPL WATCH LIVE */
.lpl-live-actions {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.lpl-live-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px;
  border-radius: 12px;
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.lpl-live-zoom { background: #2563eb; }
.lpl-live-youtube { background: #111; }
.lpl-live-materials,
.lpl-live-help {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid #e5e8ee;
  border-radius: 12px;
}
.lpl-live-materials audio {
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 700px) {
  .lpl-live-actions { grid-template-columns: 1fr; }
}

/* LPL lesson materials: unavailable legacy files are explicit, not dead links. */
a[data-lpl-missing-resource="true"],
.lpl-resource-unavailable {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid #d5d5d5;
  border-radius: 7px;
  background: #f1f1f1;
  color: #777 !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: default;
}
.lpl-lesson-materials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
  border-left: 4px solid #ed6630;
  border-radius: 9px;
  background: #fafafa;
}
.lpl-lesson-material-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.lpl-resource-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border-radius: 7px;
  background: #333;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 600px) { .lpl-lesson-materials { align-items: flex-start; flex-direction: column; } }

/* LPL FAQ, FULL TESTIMONIALS, CONTACT */
.lpl-hero-kicker { display:block; margin-bottom:10px; font-size:12px; font-weight:800; letter-spacing:.16em; color:#f5a176; }
.lpl-faq-lead, .lpl-faq-bottom, .lpl-review-intro { display:flex; align-items:center; justify-content:space-between; gap:30px; padding:26px 30px; margin-bottom:30px; background:#f7f7f7; border-left:4px solid #ed6630; border-radius:10px; }
.lpl-faq-lead h2, .lpl-faq-bottom h2 { margin:0 0 6px; }
.lpl-faq-lead p, .lpl-faq-bottom p { margin:0; color:#666; }
.lpl-outline-dark-button { display:inline-block; flex:0 0 auto; padding:12px 20px; border:2px solid #333; color:#333; text-decoration:none; font-weight:700; }
.lpl-outline-dark-button:hover { background:#333; color:#fff; }
.lpl-faq-list { max-width:920px; margin:0 auto 36px; }
.lpl-faq-item { margin:0 0 13px; border:1px solid #e4e5e7; border-radius:10px; background:#fff; box-shadow:0 3px 12px rgba(0,0,0,.04); overflow:hidden; }
.lpl-faq-item summary { position:relative; padding:20px 54px 20px 22px; cursor:pointer; list-style:none; font-size:19px; font-weight:700; color:#333; }
.lpl-faq-item summary::-webkit-details-marker { display:none; }
.lpl-faq-item summary::after { content:'+'; position:absolute; right:22px; top:50%; transform:translateY(-50%); color:#ed6630; font-size:30px; font-weight:300; }
.lpl-faq-item[open] summary::after { content:'−'; }
.lpl-faq-item[open] summary { background:#fff7f2; }
.lpl-faq-answer { padding:2px 25px 22px; line-height:1.7; color:#4c4c4c; }
.lpl-faq-answer ul { margin:10px 0 0; padding-left:22px; }
.lpl-faq-answer li { margin-bottom:12px; }
.lpl-faq-bottom { margin-top:38px; margin-bottom:0; background:#333; border-left-color:#ed6630; color:#fff; }
.lpl-faq-bottom h2, .lpl-faq-bottom p { color:#fff; }
.lpl-review-intro strong { display:block; font-size:44px; line-height:1; color:#ed6630; }
.lpl-review-intro span { display:block; margin-top:5px; font-weight:700; color:#444; }
.lpl-review-intro p { max-width:650px; margin:0; line-height:1.65; color:#555; }
.lpl-all-reviews { align-items:start; }
.lpl-review-card { border-radius:12px; box-shadow:0 5px 18px rgba(0,0,0,.06); transition:transform .15s ease,box-shadow .15s ease; }
.lpl-review-card:hover { transform:translateY(-3px); box-shadow:0 9px 25px rgba(0,0,0,.1); }
.lpl-review-card p { line-height:1.6; color:#4f4f4f; }
.lpl-review-avatar { display:flex; align-items:center; justify-content:center; width:105px; height:105px; margin:0 auto; border-radius:50%; background:#333; color:#fff; font-size:28px; font-weight:700; letter-spacing:.03em; }
.lpl-contact-layout { display:grid; grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr); gap:34px; align-items:start; max-width:980px; }
.lpl-contact-aside { padding:30px; background:#333; color:#fff; border-radius:14px; }
.lpl-contact-aside h2 { margin:5px 0 12px; color:#fff; font-size:30px; }
.lpl-contact-aside p, .lpl-contact-aside li { color:#eee; line-height:1.6; }
.lpl-contact-aside ul { padding-left:20px; }
.lpl-contact-spam-note { margin-top:26px; padding-top:20px; border-top:1px solid rgba(255,255,255,.2); font-size:14px; }
.lpl-contact-card { padding:32px; border:1px solid #e4e5e7; border-top:4px solid #ed6630; border-radius:14px; box-shadow:0 7px 24px rgba(0,0,0,.07); background:#fff; }
.lpl-contact-card > h2 { margin:0 0 4px; font-size:32px; }
.lpl-contact-card > p { margin:0 0 24px; color:#777; }
.lpl-contact-card .control-group, .lpl-contact-card .mb-3 { margin-bottom:18px; }
.lpl-contact-card label { display:block; margin-bottom:6px; font-weight:700; color:#444; }
.lpl-contact-card input[type="text"], .lpl-contact-card input[type="email"], .lpl-contact-card textarea { width:100%; border:1px solid #cfd2d6; border-radius:7px; padding:11px 12px; background:#fff; }
.lpl-contact-card textarea { min-height:190px; resize:vertical; }
.lpl-contact-card .btn-primary { padding:12px 24px; border-color:#d65d20; background:#d65d20; font-weight:700; text-transform:uppercase; }
.lpl-contact-card .btn-primary:hover { border-color:#ba581c; background:#ba581c; }
.lpl-contact-card altcha-widget { display:block; margin:8px 0 18px; }
@media (max-width:800px) { .lpl-contact-layout { grid-template-columns:1fr; } .lpl-faq-lead,.lpl-faq-bottom,.lpl-review-intro { align-items:flex-start; flex-direction:column; } }

/* Testimonial masonry: keeps 238 reviews readable without giant grid-row gaps. */
.lpl-testimonial-page-grid.lpl-all-reviews { display:block; column-count:3; column-gap:24px; }
.lpl-testimonial-page-grid.lpl-all-reviews .lpl-review-card { display:inline-block; width:100%; margin:0 0 24px; break-inside:avoid; }
@media (max-width:900px) { .lpl-testimonial-page-grid.lpl-all-reviews { column-count:2; } }
@media (max-width:580px) { .lpl-testimonial-page-grid.lpl-all-reviews { column-count:1; } }
.lpl-testimonials-continued .lpl-page-body { padding-top:0; }

/* LPL complete biography */
.lpl-bio-story {
  background: linear-gradient(180deg, #fff 0, #fafafa 100%);
}
.lpl-bio-section {
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(0, 1.5fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: 0 0 70px;
}
.lpl-bio-section + .lpl-bio-section {
  padding-top: 70px;
  border-top: 1px solid #e7e7e7;
}
.lpl-bio-section-reverse {
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, .82fr);
}
.lpl-bio-image-wrap {
  position: relative;
}
.lpl-bio-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid #ed6630;
  border-radius: 16px;
}
.lpl-bio-story-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}
.lpl-section-kicker {
  display: block;
  margin-bottom: 8px;
  color: #d85d25;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
.lpl-bio-copy h2 {
  margin: 0 0 20px;
  color: #292929;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 300;
  line-height: 1.12;
}
.lpl-bio-copy p {
  margin: 0 0 17px;
  color: #4b4b4b;
  font-size: 17px;
  line-height: 1.72;
}
.lpl-bio-cta {
  margin-top: 5px;
  padding: 42px 28px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.78)),
    url('/images/2018/08/17/pianoinsidedark.jpg') center / cover no-repeat;
  border-radius: 16px;
}
.lpl-bio-cta p {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(21px, 2.5vw, 30px);
}
@media (max-width: 800px) {
  .lpl-bio-section,
  .lpl-bio-section-reverse {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
  .lpl-bio-section + .lpl-bio-section {
    padding-top: 50px;
  }
  .lpl-bio-section-reverse .lpl-bio-image-wrap {
    order: -1;
  }
  .lpl-bio-image-wrap {
    width: min(430px, calc(100% - 18px));
    margin: 0 auto;
  }
}

/* LPL equipment guide: replaces retired Amazon image widgets. */
.lpl-equipment-page { max-width:1100px; margin:0 auto; color:#333; }
.lpl-equipment-hero { position:relative; overflow:hidden; padding:clamp(34px,6vw,72px); margin-bottom:28px; border-radius:18px; background:linear-gradient(135deg,#242424 0%,#3c3c3c 62%,#d85d25 150%); color:#fff; }
.lpl-equipment-hero::after { content:""; position:absolute; width:220px; height:220px; right:-70px; top:-80px; border:34px solid rgba(255,255,255,.06); border-radius:50%; }
.lpl-equipment-hero h1 { position:relative; z-index:1; max-width:760px; margin:0 0 18px; color:#fff; font-size:clamp(38px,5.5vw,64px); font-weight:300; line-height:1.03; }
.lpl-equipment-lead { position:relative; z-index:1; max-width:780px; margin:0; color:#f3f3f3; font-size:clamp(17px,2vw,21px); line-height:1.65; }
.lpl-affiliate-note { position:relative; z-index:1; max-width:820px; margin-top:28px; padding:16px 18px; border:1px solid rgba(255,255,255,.2); border-radius:10px; background:rgba(0,0,0,.18); color:#eee; font-size:14px; line-height:1.55; }
.lpl-equipment-section { padding:38px 0; border-top:1px solid #e6e6e6; }
.lpl-equipment-section:first-of-type { border-top:0; }
.lpl-equipment-heading { display:grid; grid-template-columns:54px minmax(0,1fr); gap:20px; margin-bottom:24px; }
.lpl-equipment-heading > span { display:flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:50%; background:#fff1e9; color:#d85d25; font-weight:800; }
.lpl-equipment-heading h2 { margin:2px 0 8px; color:#292929; font-size:clamp(28px,3.6vw,42px); font-weight:400; }
.lpl-equipment-heading p { max-width:850px; margin:0; color:#666; font-size:16px; line-height:1.65; }
.lpl-equipment-feature-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.lpl-equipment-feature { padding:24px; border:1px solid #e2e2e2; border-radius:14px; background:#fff; box-shadow:0 6px 18px rgba(0,0,0,.05); }
.lpl-equipment-feature h3 { margin:0 0 8px; font-size:22px; }
.lpl-equipment-feature p { margin:0 0 18px; color:#666; line-height:1.55; }
.lpl-equipment-buttons { display:flex; flex-wrap:wrap; gap:9px; }
.lpl-equipment-buttons a,.lpl-equipment-list a { display:inline-block; padding:9px 13px; border:1px solid #d85d25; border-radius:8px; color:#bd4d1c; font-size:13px; font-weight:800; text-decoration:none; white-space:nowrap; }
.lpl-equipment-buttons a:hover,.lpl-equipment-list a:hover { background:#d85d25; color:#fff; }
.lpl-equipment-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin:0; padding:0; list-style:none; }
.lpl-equipment-list li { display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:68px; padding:15px 16px; border:1px solid #e5e5e5; border-radius:10px; background:#fafafa; }
.lpl-equipment-list strong { color:#353535; }
.lpl-equipment-list p { margin:5px 0 0; color:#6a6a6a; font-size:14px; line-height:1.45; }
.lpl-equipment-list-wide { grid-template-columns:1fr; }
.lpl-equipment-footer { margin-top:26px; padding:40px 28px; border-radius:16px; background:#fff5ef; text-align:center; }
.lpl-equipment-footer h2 { margin:0 0 8px; font-size:30px; }
.lpl-equipment-footer p { margin:0 0 20px; color:#5f5f5f; }
.lpl-equipment-contact { display:inline-block; padding:12px 22px; border-radius:8px; background:#333; color:#fff!important; font-weight:800; text-decoration:none; }
@media (max-width:760px) { .lpl-equipment-feature-grid,.lpl-equipment-list { grid-template-columns:1fr; } .lpl-equipment-heading { grid-template-columns:42px minmax(0,1fr); gap:12px; } .lpl-equipment-heading > span { width:40px; height:40px; } .lpl-equipment-list li { align-items:flex-start; flex-direction:column; } }

/* LPL comparison-table pricing clarification. */
.lpl-compare-note { max-width:760px; margin:14px auto 0; color:#666; font-size:13px; line-height:1.55; text-align:center; }

/* LPL visual parity pass: restore the edge-to-edge Helix composition. */
.container-header {
  gap: 0 !important;
  row-gap: 0 !important;
}
.container-header .container-below-top,
.container-header .container-nav {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
.container-header .container-below-top .mod-custom,
.container-header .container-nav .mod-custom {
  width: 100% !important;
  max-width: none !important;
}
body:has(.lpl-home-module) .site-grid > .container-component,
body:has(.lpl-page-module) .site-grid > .container-component {
  grid-column: 1 / -1 !important;
  width: 100%;
  max-width: none;
}
.container-header > .grid-child:empty,
.container-header > .grid-child:has(> .navbar-brand),
body:has(.lpl-home-module) .container-component > main:empty,
body:has(.lpl-page-module) .container-component > main:empty {
  display: none !important;
  margin: 0 !important;
}
.main-bottom.card.lpl-home-module,
.main-bottom.card.lpl-page-module {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body:has(.lpl-home-module) .main-bottom.card > .card-body,
body:has(.lpl-page-module) .main-bottom.card > .card-body {
  padding: 0 !important;
}
.container-header .container-nav .mod-custom {
  margin: 0 !important;
  padding: 0 !important;
}
.lpl-live-hero {
  min-height: 420px;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.38)),
    url('/images/2018/04/06/countdown-bg-1.jpg') center / cover no-repeat;
}
.lpl-live-title {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lpl-countdown {
  padding: 0;
  background: transparent;
}
.lpl-countdown strong {
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(0,0,0,.75);
}
.lpl-live-box > p,
.lpl-live-box > p strong {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.75);
}
.lpl-subscribe-button {
  min-width: 330px;
  padding: 14px 24px;
  border: 0;
  border-radius: 4px;
  background: #f76624;
  color: #fff;
  text-transform: none;
  box-shadow: 0 5px 18px rgba(0,0,0,.22);
}
.lpl-subscribe-button:hover {
  background: #dc5418;
  color: #fff;
}
.lpl-programs {
  background: #f76624;
  color: #fff;
}
.lpl-programs h1,
.lpl-programs .lpl-lead,
.lpl-programs .lpl-feature-card,
.lpl-programs .lpl-feature-card h2,
.lpl-programs .lpl-feature-card p {
  color: #fff;
}
.lpl-programs .lpl-feature-card:hover {
  background: rgba(255,255,255,.09);
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
}

/* Testimonials: preserve all reviews while restoring the original airy SPPB composition. */
.lpl-testimonials-page .lpl-testimonial-hero {
  min-height: 0;
  padding: 132px 20px 70px;
  background: #fff;
  color: #4a4a4a;
  text-align: center;
}
.lpl-testimonials-page .lpl-testimonial-hero h1 {
  margin: 0 0 24px;
  color: #555;
  font-size: clamp(36px,4.5vw,50px);
  font-weight: 300;
  letter-spacing: .01em;
}
.lpl-subscribe-bar {
  display: block;
  width: 100%;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f4662f;
  color: #fff !important;
  font-size: 18px;
  text-decoration: none;
}
.lpl-subscribe-bar:hover { background: #dc5418; }
.lpl-testimonials-page .lpl-page-body { padding-top: 0; }
.lpl-testimonials-page .lpl-review-intro { display: none; }
.lpl-testimonials-page .lpl-testimonial-page-grid .lpl-review-card {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  align-content: start;
  align-items: center;
  column-gap: 14px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
  text-align: left;
}
.lpl-testimonials-page .lpl-review-card p {
  order: 1;
  grid-column: 1 / -1;
  margin: 0 0 18px;
}
.lpl-testimonials-page .lpl-review-card img {
  order: 2;
  grid-column: 1;
  width: 54px;
  height: 54px;
  margin: 0;
}
.lpl-testimonials-page .lpl-review-card cite {
  order: 3;
  grid-column: 2;
}
@media (max-width: 640px) {
  .lpl-testimonials-page .lpl-testimonial-hero { padding: 70px 18px 42px; }
}

/* Biography: lead with the original portrait-and-story composition. */
.lpl-page:has(> .lpl-bio-story) > .lpl-page-hero { display: none; }
.lpl-bio-story {
  padding-top: 48px;
  background: #fff;
}
.lpl-bio-story > .lpl-wrap { max-width: 1115px; }
.lpl-bio-story .lpl-bio-section:first-child {
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 80px;
}
.lpl-bio-story .lpl-bio-section:first-child .lpl-bio-image-wrap::before,
.lpl-bio-story .lpl-bio-section:first-child .lpl-section-kicker,
.lpl-bio-story .lpl-bio-section:first-child h2 { display: none; }
.lpl-bio-story .lpl-bio-section:first-child .lpl-bio-story-image {
  border-radius: 0;
  box-shadow: none;
}
.lpl-bio-story .lpl-bio-section:first-child .lpl-bio-copy p {
  font-size: 17px;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .lpl-bio-story { padding-top: 28px; }
  .lpl-bio-story .lpl-bio-section:first-child { grid-template-columns: 1fr; }
}

/* Private lessons: restore the original goal-first introduction above current terms. */
.lpl-private-lead {
  padding: 48px 20px 72px;
  background: #fff;
  color: #2f3038;
  text-align: center;
}
.lpl-private-lead > .lpl-wrap { max-width: 1115px; }
.lpl-private-lead h1 {
  margin: 0 0 30px;
  color: #515463;
  font-size: clamp(38px,4vw,50px);
  font-weight: 700;
}
.lpl-private-lead h1 span {
  border-left: 2px solid #f4662f;
  color: #515463;
}
.lpl-private-lead p {
  margin: 0 0 15px;
  font-size: clamp(17px,1.7vw,21px);
  line-height: 1.45;
}
.lpl-private-trial {
  margin: 30px 0 68px;
  text-transform: uppercase;
}
.lpl-video-frame {
  position: relative;
  width: min(966px,100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.lpl-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 640px) {
  .lpl-private-lead { padding: 36px 18px 52px; }
  .lpl-private-trial { margin-bottom: 42px; }
}

/* User-approved: suppress the Kit badge in the embedded signup form. */
.lpl-kit-form .formkit-powered-by-convertkit,
.lpl-kit-form .formkit-powered-by {
  display: none !important;
}

/* Native visual rebuild: Music Lessons In A Box */
.lpl-box-page {
  --box-blue: #78abd7;
  --box-mint: #d0eed4;
  --box-orange: #f05a28;
  --box-ink: #171717;
  color: var(--box-ink);
  background: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.lpl-box-page * { box-sizing: border-box; }
.lpl-box-page .lpl-wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.lpl-box-page h1,
.lpl-box-page h2,
.lpl-box-page h3,
.lpl-box-page h4 { margin-top: 0; line-height: 1.05; }
.lpl-box-page h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: .035em;
  text-transform: uppercase;
}
.lpl-box-eyebrow {
  margin: 0 0 12px;
  color: var(--box-orange);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lpl-box-hero {
  min-height: clamp(560px, 62vw, 760px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.22)),
    url("/images/2018/09/01/coverphoto.jpg") center / cover no-repeat;
}
.lpl-box-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}
.lpl-box-hero-copy {
  grid-column: 2;
  padding: clamp(28px, 5vw, 64px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(4px);
}
.lpl-box-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 300;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.lpl-box-hero h1 span { color: var(--box-orange); font-weight: 800; }
.lpl-box-hero-copy > p:not(.lpl-box-eyebrow) {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.lpl-box-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.lpl-box-actions-center { justify-content: center; }
.lpl-box-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.lpl-box-button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.lpl-box-button-primary { color: #fff; background: var(--box-orange); }
.lpl-box-button-secondary { color: #111; border-color: #111; background: transparent; }
.lpl-box-button-dark { color: #fff; background: #151515; }
.lpl-box-press { padding: 25px 0; background: var(--box-mint); text-align: center; }
.lpl-box-press img { width: min(920px, 100%); max-height: 100px; object-fit: contain; }
.lpl-box-media { padding: 78px 0; }
.lpl-box-media-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; }
.lpl-box-media article { padding: 24px; border: 1px solid #e6e6e6; box-shadow: 0 16px 44px rgba(20,40,60,.09); }
.lpl-box-media h2 { margin-bottom: 20px; text-align: center; }
.lpl-box-video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.lpl-box-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.lpl-box-steps { padding: 84px 0; background: var(--box-mint); text-align: center; }
.lpl-box-steps > .lpl-wrap > h2 { margin-bottom: 38px; }
.lpl-box-step-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.lpl-box-step-grid article {
  position: relative;
  min-height: 305px;
  padding: 56px 28px 30px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(48,85,56,.13);
}
.lpl-box-step-grid article > span {
  position: absolute;
  top: -24px;
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--box-orange);
  font-size: 1.3rem;
  font-weight: 900;
}
.lpl-box-step-grid h3 { margin-bottom: 13px; color: var(--box-blue); font-size: 1.55rem; text-transform: uppercase; }
.lpl-box-step-grid h4 { margin-bottom: 12px; font-size: 1.12rem; }
.lpl-box-step-grid p { margin-bottom: 0; line-height: 1.65; }

.lpl-box-students { padding: 86px 0; color: #fff; background: var(--box-blue); text-align: center; }
.lpl-box-students .lpl-box-eyebrow { color: #ffe5d7; }
.lpl-box-students h2 { margin-bottom: 34px; }
.lpl-box-student-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.lpl-box-student-grid figure { margin: 0; background: #111; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.lpl-box-student-grid figcaption { padding: 14px 18px; font-weight: 800; letter-spacing: .04em; }
.lpl-box-reviews { padding: 84px 0; text-align: center; }
.lpl-box-reviews h2 { margin-bottom: 38px; }
.lpl-box-review-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.lpl-box-review-grid blockquote {
  margin: 0;
  padding: 30px 26px;
  border: 0;
  background: #f7f7f7;
  box-shadow: none;
}
.lpl-box-review-grid img { width: 88px; height: 88px; margin-bottom: 18px; border-radius: 50%; object-fit: cover; }
.lpl-box-review-grid p { min-height: 145px; margin: 0 0 18px; font-size: 1.02rem; line-height: 1.65; }
.lpl-box-review-grid cite { display: block; font-style: normal; font-weight: 900; }
.lpl-box-review-grid cite span { display: block; color: #6b6b6b; font-size: .82rem; font-weight: 600; text-transform: uppercase; }

.lpl-box-newsletter { padding: 78px 0; background: #eff6fb; }
.lpl-box-newsletter > .lpl-wrap {
  display: grid;
  grid-template-columns: minmax(280px,.8fr) minmax(360px,1.2fr);
  gap: 46px;
  align-items: center;
}
.lpl-box-newsletter h2 { margin-bottom: 16px; }
.lpl-box-newsletter-copy > p:last-child { font-size: 1.12rem; line-height: 1.65; }
.lpl-box-newsletter .lpl-kit-form { min-height: 210px; }
.lpl-box-keyboards {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.25)),
    url("/images/2018/08/30/piano1.jpg") center / cover no-repeat;
}
.lpl-box-keyboard-card {
  max-width: 610px;
  padding: 42px;
  color: #fff;
  background: rgba(0,0,0,.72);
  box-shadow: 0 20px 55px rgba(0,0,0,.3);
}
.lpl-box-keyboard-card h2 { margin-bottom: 14px; }
.lpl-box-keyboard-card p { font-size: 1.1rem; }

.lpl-box-staff { padding: 86px 0; background: var(--box-mint); text-align: center; }
.lpl-box-staff h2 { margin-bottom: 38px; }
.lpl-box-staff-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.lpl-box-staff-grid article { overflow: hidden; padding-bottom: 26px; background: #fff; box-shadow: 0 16px 40px rgba(30,75,40,.12); }
.lpl-box-staff-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.lpl-box-staff-grid h3 { margin: 20px 18px 8px; color: var(--box-orange); font-size: 1.5rem; text-transform: uppercase; }
.lpl-box-staff-grid p { min-height: 72px; margin: 0 20px 18px; line-height: 1.5; }
.lpl-box-staff-grid a { color: #111; font-weight: 900; text-transform: uppercase; text-underline-offset: 4px; }
.lpl-box-story-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.lpl-box-story {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px,6vw,78px);
  color: #fff;
  text-decoration: none;
}
.lpl-box-story:hover { color: #fff; }
.lpl-box-story-jamin { background: linear-gradient(0deg,rgba(0,0,0,.76),rgba(0,0,0,.05)),url("/images/2018/08/27/jamin0medium.jpg") center / cover no-repeat; }
.lpl-box-story-klopol { background: linear-gradient(0deg,rgba(0,0,0,.76),rgba(0,0,0,.05)),url("/images/2024/06/30/junior-band-color-small.jpg") center / cover no-repeat; }
.lpl-box-story span { color: #ffd6c7; font-size: .86rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.lpl-box-story strong { max-width: 550px; margin: 12px 0 22px; font-size: clamp(1.7rem,3vw,3rem); line-height: 1.08; }
.lpl-box-story em { font-style: normal; font-weight: 900; text-decoration: underline; text-underline-offset: 6px; text-transform: uppercase; }

@media (max-width: 900px) {
  .lpl-box-hero { min-height: 620px; background-position: 35% center; }
  .lpl-box-hero-grid { display: block; padding-top: 270px; }
  .lpl-box-hero-copy { width: min(650px,100%); margin-left: auto; }
  .lpl-box-media-grid,
  .lpl-box-newsletter > .lpl-wrap,
  .lpl-box-story-grid { grid-template-columns: 1fr; }
  .lpl-box-step-grid { grid-template-columns: 1fr; gap: 46px; }
  .lpl-box-staff-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .lpl-box-review-grid { grid-template-columns: 1fr; }
  .lpl-box-review-grid p { min-height: 0; }
}
@media (max-width: 600px) {
  .lpl-box-page .lpl-wrap { width: min(100% - 26px,1120px); }
  .lpl-box-hero { min-height: 660px; align-items: end; background-position: 28% center; }
  .lpl-box-hero-grid { padding-top: 280px; }
  .lpl-box-hero-copy { padding: 28px 22px; }
  .lpl-box-hero h1 { font-size: clamp(2.75rem,15vw,4.4rem); }
  .lpl-box-button { width: 100%; }
  .lpl-box-media,
  .lpl-box-steps,
  .lpl-box-students,
  .lpl-box-reviews,
  .lpl-box-newsletter,
  .lpl-box-staff { padding: 58px 0; }
  .lpl-box-student-grid,
  .lpl-box-staff-grid { grid-template-columns: 1fr; }
  .lpl-box-keyboard-card { padding: 30px 22px; }
  .lpl-box-story { min-height: 440px; }
}

/* Native visual rebuild: Klopol */
.lpl-klopol-page {
  --kp-blue: #78abd7;
  --kp-aqua: #08a9c8;
  --kp-pink: #f6dce9;
  --kp-orange: #f05a28;
  color: #242424;
  background: #fff;
}
.lpl-klopol-page * { box-sizing: border-box; }
.lpl-klopol-page .lpl-wrap { width: min(1120px,calc(100% - 40px)); margin-inline: auto; }
.lpl-klopol-page h1,
.lpl-klopol-page h2,
.lpl-klopol-page h3 { margin-top: 0; line-height: 1.08; }
.lpl-klopol-page h2 { font-size: clamp(2rem,4vw,3.4rem); }
.lpl-klopol-eyebrow {
  margin: 0 0 10px;
  color: var(--kp-orange);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lpl-klopol-hero { padding: 62px 0 76px; }
.lpl-klopol-hero > .lpl-wrap { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr); gap: 52px; align-items: center; }
.lpl-klopol-hero-art img { width: 100%; display: block; box-shadow: 0 24px 60px rgba(0,0,0,.15); }
.lpl-klopol-hero h1 { margin-bottom: 6px; color: var(--kp-aqua); font-size: clamp(3.3rem,7vw,6.4rem); text-transform: uppercase; }
.lpl-klopol-hero h2 { margin-bottom: 22px; color: #555; font-size: clamp(1.45rem,2.8vw,2.25rem); }
.lpl-klopol-hero-copy p { font-size: 1.06rem; line-height: 1.7; }

.lpl-klopol-story { padding: 82px 0; color: #fff; background: var(--kp-blue); text-align: center; }
.lpl-klopol-story .lpl-klopol-eyebrow { color: #ffe2d4; }
.lpl-klopol-story > .lpl-wrap > p:not(.lpl-klopol-eyebrow) { max-width: 900px; margin-inline: auto; font-size: 1.08rem; line-height: 1.7; }
.lpl-klopol-video-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px; margin-top: 38px; }
.lpl-klopol-video-grid article { padding: 16px 16px 20px; background: #fff; color: #222; box-shadow: 0 18px 45px rgba(0,0,0,.17); }
.lpl-klopol-video { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.lpl-klopol-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lpl-klopol-video-grid h3 { margin: 18px 8px 0; font-size: 1.22rem; }
.lpl-klopol-childhood { padding: 82px 0; background: #fff; }
.lpl-klopol-childhood > .lpl-wrap { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.7fr); gap: 54px; align-items: center; }
.lpl-klopol-childhood p { font-size: 1.08rem; line-height: 1.75; }
.lpl-klopol-childhood img { width: 100%; border: 12px solid var(--kp-pink); box-shadow: 0 22px 50px rgba(0,0,0,.13); }
.lpl-klopol-song { padding: 82px 0; background: var(--kp-pink); text-align: center; }
.lpl-klopol-song h2 { margin-bottom: 10px; }
.lpl-klopol-message { max-width: 850px; margin: 45px auto 0; padding: 34px; color: #fff; background: #1e1e1e; box-shadow: 0 18px 45px rgba(0,0,0,.16); }
.lpl-klopol-message h3 { margin-bottom: 12px; color: #ffd3bf; font-size: 1.65rem; }
.lpl-klopol-message p { margin: 0; font-size: 1.08rem; line-height: 1.72; }

.lpl-klopol-facts { padding: 86px 0; background: #eef8fb; text-align: center; }
.lpl-klopol-facts h2 { margin-bottom: 12px; }
.lpl-klopol-facts-intro { margin-bottom: 38px; font-size: 1.08rem; }
.lpl-klopol-fact-grid { counter-reset: kp-fact; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; text-align: left; }
.lpl-klopol-fact-grid article {
  counter-increment: kp-fact;
  position: relative;
  min-height: 150px;
  padding: 46px 20px 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(36,94,110,.1);
}
.lpl-klopol-fact-grid article::before {
  content: counter(kp-fact);
  position: absolute;
  top: 14px;
  left: 20px;
  color: var(--kp-orange);
  font-size: .78rem;
  font-weight: 900;
}
.lpl-klopol-fact-grid b { display: block; margin-bottom: 8px; color: var(--kp-aqua); font-size: 1.14rem; text-transform: uppercase; }
.lpl-klopol-fact-grid span { display: block; color: #4b4b4b; line-height: 1.45; }
.lpl-klopol-gallery { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); background: #111; }
.lpl-klopol-gallery img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

@media (max-width: 900px) {
  .lpl-klopol-hero > .lpl-wrap,
  .lpl-klopol-childhood > .lpl-wrap { grid-template-columns: 1fr; }
  .lpl-klopol-hero-copy { max-width: 760px; }
  .lpl-klopol-childhood img { max-width: 620px; margin-inline: auto; }
  .lpl-klopol-fact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .lpl-klopol-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .lpl-klopol-page .lpl-wrap { width: min(100% - 26px,1120px); }
  .lpl-klopol-hero,
  .lpl-klopol-story,
  .lpl-klopol-childhood,
  .lpl-klopol-song,
  .lpl-klopol-facts { padding: 56px 0; }
  .lpl-klopol-video-grid,
  .lpl-klopol-fact-grid { grid-template-columns: 1fr; }
  .lpl-klopol-message { padding: 26px 20px; }
  .lpl-klopol-gallery img { min-height: 190px; }
}

.lpl-klopol-hero > .lpl-wrap { align-items: start; }

/* Native visual rebuild: Kids Song List */
.lpl-songlist{background:#fffdf8;color:#15324a;padding-bottom:4rem}
.lpl-song-hero{background:linear-gradient(135deg,#fff3cf 0%,#dff7f4 52%,#e7f1ff 100%);border-bottom:6px solid #f5a623;padding:4rem 1.25rem 3.5rem;text-align:center}
.lpl-song-hero .lpl-wrap{max-width:980px}
.lpl-song-logo{display:block;width:min(690px,92%);height:auto;margin:0 auto 1.25rem}
.lpl-song-hero .lpl-eyebrow{color:#d86b21;font-size:.85rem;font-weight:800;letter-spacing:.14em;margin:.5rem 0;text-transform:uppercase}
.lpl-song-hero h1{color:#173f67;font-size:clamp(2.15rem,6vw,4.25rem);line-height:1;margin:.35rem 0 1rem}
.lpl-song-hero>div>p:not(.lpl-eyebrow):not(.lpl-song-count){font-size:1.12rem;margin:0 auto 1.4rem;max-width:650px}
.lpl-song-search-label{display:block;font-size:.9rem;font-weight:800;margin:.5rem auto .5rem}
.lpl-song-search{background:#fff;border:3px solid #173f67;border-radius:999px;box-shadow:0 8px 24px rgba(23,63,103,.13);font-size:1.05rem;max-width:650px;padding:.95rem 1.25rem;width:100%}
.lpl-song-search:focus{border-color:#d86b21;box-shadow:0 0 0 4px rgba(216,107,33,.18);outline:0}
.lpl-song-count{color:#48657c;font-size:.9rem;font-weight:700;margin:.8rem 0 0}
.lpl-song-grid{display:grid;gap:1.5rem;margin-top:2rem}
.lpl-song-section{background:#fff;border:1px solid #dbe6ed;border-radius:20px;box-shadow:0 12px 34px rgba(23,63,103,.08);overflow:hidden;padding:0 1.35rem 1.35rem}

.lpl-song-section h2{background:#173f67;color:#fff;font-size:1.35rem;margin:0 -1.35rem 1rem;padding:1rem 1.35rem}
.lpl-song-section:nth-child(2n) h2{background:#d86b21}
.lpl-song-section:nth-child(3n) h2{background:#168b88}
.lpl-song-section ul{columns:3 250px;column-gap:2.25rem;list-style:none;margin:0;padding:0}
.lpl-song-item{break-inside:avoid;border-bottom:1px dotted #c8d7df;margin:0;padding:.45rem 0}
.lpl-song-item a{color:#164f7b;font-weight:650;text-decoration:none}
.lpl-song-item a:hover,.lpl-song-item a:focus{color:#c95717;text-decoration:underline}
.lpl-song-item[hidden],.lpl-song-section[hidden]{display:none!important}
.lpl-song-empty{background:#fff2d7;border-radius:16px;color:#7d481b;font-weight:800;margin-top:2rem;padding:1.25rem;text-align:center}
@media (max-width:760px){
 .lpl-song-hero{padding:2.75rem 1rem 2.5rem}
 .lpl-song-section ul{columns:1}
 .lpl-song-section{border-radius:14px;padding:0 1rem 1rem}
 .lpl-song-section h2{font-size:1.15rem;margin:0 -1rem 1rem;padding:.9rem 1rem}
}

/* Native visual rebuild: Support The Business */
.lpl-support-page{background:#fffdf8;color:#17374f}
.lpl-support-hero{background:radial-gradient(circle at 18% 15%,rgba(255,255,255,.45),transparent 28%),linear-gradient(135deg,#f7a728,#ec6a2c);color:#fff;padding:5rem 1.25rem;text-align:center}
.lpl-support-hero .lpl-wrap{max-width:820px}
.lpl-support-hero h1{color:#fff;font-size:clamp(2.4rem,7vw,5rem);line-height:.98;margin:.35rem 0 1rem;text-transform:uppercase}
.lpl-support-hero p:last-child{font-size:1.15rem;margin:0 auto;max-width:720px}
.lpl-support-page .lpl-eyebrow{font-size:.82rem;font-weight:850;letter-spacing:.13em;text-transform:uppercase}
.lpl-support-section{padding:4rem 1.25rem}
.lpl-support-section:nth-of-type(3){background:#e8f7f5}
.lpl-support-intro{align-items:center;display:grid;gap:1.5rem;grid-template-columns:auto 1fr;margin-bottom:1.75rem}
.lpl-support-intro span{color:#f6a51c;font-size:clamp(1.5rem,4vw,2.6rem);letter-spacing:.08em}
.lpl-support-section h2{color:#173f67;font-size:clamp(1.8rem,4vw,2.65rem);margin:.15rem 0 .6rem}
.lpl-support-links{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.25rem}
.lpl-support-links a{background:#173f67;border-radius:999px;color:#fff;font-weight:800;padding:.8rem 1.15rem;text-decoration:none}
.lpl-support-links a:hover,.lpl-support-links a:focus{background:#d35f1e;color:#fff}

.lpl-support-social{text-align:center}
.lpl-support-social .lpl-support-links{justify-content:center}
.lpl-support-columns{display:grid;gap:1.5rem;grid-template-columns:repeat(2,minmax(0,1fr))}
.lpl-support-columns article{background:#fff;border:1px solid #dce7ed;border-radius:20px;box-shadow:0 12px 30px rgba(23,63,103,.08);padding:2rem}
.lpl-support-columns h3{color:#d35f1e;margin:1.5rem 0 .35rem}
.lpl-support-columns blockquote{background:#fff3da;border-left:5px solid #f6a51c;margin:1rem 0;padding:1.2rem}
.lpl-support-thanks{background:#173f67;color:#fff;padding:4rem 1.25rem;text-align:center}
.lpl-support-thanks h2{color:#fff;font-size:clamp(2rem,5vw,3.5rem);margin:0 0 .6rem}
.lpl-support-thanks p{font-size:1.1rem;margin:0}
@media(max-width:720px){
 .lpl-support-hero{padding:3.5rem 1rem}
 .lpl-support-section{padding:3rem 1rem}
 .lpl-support-intro,.lpl-support-columns{grid-template-columns:1fr}
 .lpl-support-intro{text-align:center}
 .lpl-support-intro span{line-height:1}
}

/* Native visual rebuild: Private Lessons Schedule */
.lpl-schedule-page{background:#fbfdfd;color:#17374f}
.lpl-schedule-hero{background:linear-gradient(120deg,rgba(9,45,73,.96),rgba(21,112,124,.92));color:#fff;padding:5rem 1.25rem;text-align:center}
.lpl-schedule-hero .lpl-wrap{max-width:850px}
.lpl-schedule-page .lpl-eyebrow{color:#f5aa31;font-size:.82rem;font-weight:850;letter-spacing:.14em;text-transform:uppercase}
.lpl-schedule-hero h1{color:#fff;font-size:clamp(2.4rem,7vw,4.8rem);line-height:1;margin:.35rem 0 1rem}
.lpl-schedule-hero p:not(.lpl-eyebrow){font-size:1.15rem;margin:0 auto;max-width:700px}
.lpl-schedule-page .lpl-hero-actions{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center;margin-top:1.6rem}
.lpl-schedule-page .lpl-btn-secondary{border:2px solid #fff;color:#fff}
.lpl-schedule-openings{background:#fff;padding:4rem 1.25rem;text-align:center}
.lpl-schedule-openings h2{color:#173f67;font-size:clamp(2rem,5vw,3.2rem);margin:.2rem 0 1.7rem}
.lpl-slot-grid{display:grid;gap:1rem;grid-template-columns:repeat(3,minmax(0,1fr));margin:0 auto;max-width:850px}
.lpl-slot-grid article{background:linear-gradient(145deg,#fff4d8,#fff);border:2px solid #f2b747;border-radius:20px;box-shadow:0 10px 28px rgba(23,63,103,.08);padding:1.5rem}
.lpl-slot-grid span{display:block;font-size:.9rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.lpl-slot-grid strong{color:#c95717;display:block;font-size:1.8rem;margin-top:.25rem}

.lpl-schedule-contact{font-size:1.05rem;font-weight:650;margin:1.5rem 0 0}
.lpl-schedule-details{background:#e8f5f4;padding:4rem 1.25rem}
.lpl-schedule-cards{display:grid;gap:1.5rem;grid-template-columns:repeat(2,minmax(0,1fr))}
.lpl-schedule-cards article{background:#fff;border-radius:20px;box-shadow:0 12px 30px rgba(23,63,103,.08);padding:2rem}
.lpl-schedule-cards h2{color:#173f67;margin:0 0 .7rem}
.lpl-schedule-cards a{color:#c95717;font-weight:800}
.lpl-schedule-cta{background:#f5a623;padding:4rem 1.25rem;text-align:center}
.lpl-schedule-cta h2{color:#173f67;font-size:clamp(2rem,5vw,3.2rem);margin:0 0 .6rem}
.lpl-schedule-cta p{font-size:1.08rem;margin:0 auto 1.4rem;max-width:650px}
@media(max-width:700px){
 .lpl-schedule-hero{padding:3.5rem 1rem}
 .lpl-schedule-openings,.lpl-schedule-details,.lpl-schedule-cta{padding:3rem 1rem}
 .lpl-slot-grid,.lpl-schedule-cards{grid-template-columns:1fr}
 .lpl-slot-grid{max-width:420px}
}

/* Final header parity sizing and alignment. */
.lpl-top-inner{min-height:46px}
.container-header .container-below-top{padding:0!important}
.lpl-brand-row{padding:20px 18px 15px}
.lpl-logo img{width:min(395px,42vw)}
.container-header .container-nav{padding:0!important}
.lpl-main-nav{justify-content:flex-start;min-height:57px}
.lpl-main-nav>a,.lpl-nav-drop>button{padding:20px 14px 18px}
@media(max-width:900px){
 .lpl-brand-row{padding:16px 18px 13px}
 .lpl-logo img{width:min(395px,88vw)}
 .lpl-main-nav{justify-content:center}
 .lpl-main-nav>a,.lpl-nav-drop>button{padding:12px 9px}
}

/* LPL MEMBER PARITY 20260904 */
/* Member-area parity: original SPPB typography and tile composition. */
.lpl-student-zone-old{padding:66px 0 90px;background:#fff;color:#252525}
.lpl-zone-wrap{width:min(1110px,92vw);margin:0 auto}
.lpl-student-zone-old h1{margin:0 0 25px;color:#ff8421;font-family:"Days One",sans-serif;font-size:clamp(48px,6.4vw,75px);font-weight:400;line-height:1;text-align:center}
.lpl-zone-welcome{display:block;padding:12px 24px;border-radius:999px;background:#ed6630;color:#fff!important;font-size:18px;text-align:center;text-decoration:none}
.lpl-zone-welcome:hover{background:#d6531d}
.lpl-zone-notice{max-width:990px;margin:42px auto 50px;font-family:Helvetica,Arial,sans-serif;font-size:36px;font-weight:300;line-height:1.22;text-align:center}
.lpl-zone-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:42px 34px}
.lpl-zone-tile{display:flex;min-width:0;flex-direction:column;align-items:center;color:#252525!important;text-align:center;text-decoration:none}
.lpl-zone-tile>i{display:flex;min-height:108px;align-items:center;color:var(--tile);font-size:88px;line-height:1}
.lpl-zone-tile>strong{display:block;width:100%;min-height:48px;margin:15px 0 12px;padding:12px 14px;border-radius:9px;background:var(--tile);color:#fff;font-size:18px;font-weight:700;line-height:1.25}
.lpl-zone-tile>span{display:block;max-width:300px;color:#252525;font-size:14px;line-height:1.55}
.lpl-zone-tile:hover>i{transform:translateY(-3px)}
.lpl-zone-tile>i{transition:transform .15s ease}
.lpl-kids-heading{height:122px;margin:70px 0 38px;padding:18px 20px;background:linear-gradient(175deg,transparent 0 27%,#ed6630 28% 68%,transparent 69%);text-align:center}
.lpl-kids-heading span{display:inline-block;padding:0 18px;background:#fff;color:#e8161b;font-family:"Architects Daughter",cursive;font-size:clamp(48px,6vw,64px);line-height:1.25}
.lpl-zone-kids-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.lpl-nav-nested>.lpl-dropdown{min-width:215px}
.lpl-sub-drop{position:relative}
.lpl-sub-drop>button{width:100%;padding:8px 16px;border:0;background:transparent;color:#eee;font-size:13px;text-align:left}
.lpl-sub-drop:hover>button,.lpl-sub-drop:focus-within>button{background:#161616;color:#f5996c}
.lpl-submenu{display:none;position:absolute;z-index:10000;top:-7px;left:100%;min-width:220px;padding:7px 0;border-top:3px solid #ed6630;background:#050505;box-shadow:0 8px 20px rgba(0,0,0,.35)}
.lpl-sub-drop:hover>.lpl-submenu,.lpl-sub-drop:focus-within>.lpl-submenu{display:block}
@media(max-width:900px){.lpl-zone-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.lpl-submenu{position:static;display:block;padding-left:12px;border-top:0;box-shadow:none}.lpl-sub-drop>button{color:#ed6630}}
@media(max-width:600px){.lpl-student-zone-old{padding:44px 0 64px}.lpl-zone-grid,.lpl-zone-kids-grid{grid-template-columns:1fr}.lpl-zone-notice{font-size:26px}.lpl-kids-heading{height:100px;margin-top:52px}.lpl-zone-tile>strong{max-width:420px}}

.lpl-musipedia-catalog{padding:114px 0 80px;background:#fff;color:#252525;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}
.lpl-catalog-wrap{width:min(1110px,92vw);margin:0 auto}
.lpl-catalog-crumb{margin-bottom:34px;padding:12px 14px;border-radius:3px;background:#e9eef2;color:#1682b8;font-size:14px}.lpl-catalog-crumb span{color:#bbb}
.lpl-musipedia-catalog h1{margin:0 0 35px;color:#252525;font-size:24px;font-weight:400}
.lpl-catalog-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:34px 36px}
.lpl-catalog-card{position:relative;background:#f5f5f5;box-shadow:none}
.lpl-catalog-image{position:relative;display:flex;height:180px;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),var(--image) center/cover no-repeat;color:#fff!important;text-decoration:none}
.lpl-catalog-image>span{padding:0 28px;font-size:clamp(30px,3.4vw,48px);font-weight:300;line-height:1;text-align:center;text-shadow:0 2px 8px rgba(0,0,0,.7)}
.lpl-catalog-image>b{position:absolute;top:9px;right:10px;padding:3px 7px;border-radius:10px;background:#f5a623;color:#fff;font-size:11px}
.lpl-catalog-card>div{padding:17px 15px 18px}.lpl-catalog-card h2{margin:0 0 15px;font-size:18px;font-weight:400}.lpl-catalog-card h2 a{color:#0784c1;text-decoration:none}.lpl-catalog-card p{margin:0 0 15px;font-size:14px;line-height:1.55}
.lpl-course-links{display:flex;flex-wrap:wrap;gap:7px}.lpl-course-links a,.lpl-course-links span{display:inline-block;padding:6px 9px;background:#eaeaea;color:#444;text-decoration:none;font-size:12px}.lpl-course-links a:hover{background:#ed6630;color:#fff}.lpl-course-links span{width:100%;background:#fff4ec;color:#814421}
@media(max-width:760px){.lpl-musipedia-catalog{padding-top:60px}.lpl-catalog-grid{grid-template-columns:1fr}.lpl-catalog-image>span{font-size:36px}}


/* Member resource destination pages. */
.lpl-member-resource{padding:64px 20px 84px;background:#fff;color:#252525}
.lpl-resource-inner{width:min(1100px,100%);margin:0 auto}
.lpl-member-resource h1{margin:0 0 18px;font:300 38px/1.2 Lato,sans-serif}
.lpl-member-resource>p,.lpl-resource-inner>p{font-size:15px;line-height:1.65}
.lpl-resource-link-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;margin-top:28px}
.lpl-resource-link-grid a{display:block;padding:10px 12px;border:1px solid #e2e2e2;background:#f7f7f7;color:#bd4d1c;text-decoration:none}
.lpl-resource-link-grid a:hover{border-color:#ed6630;background:#fff3ec}
.lpl-resource-button{display:inline-block;margin-top:20px;padding:12px 20px;background:#ed6630;color:#fff!important;text-decoration:none}
.lpl-resource-feature{text-align:center}
.lpl-member-resource .tool{display:grid;grid-template-columns:36px minmax(0,1fr);gap:12px;align-items:start;padding:13px 0;border-bottom:1px solid #e7e7e7}
.lpl-member-resource .tool i{color:#ed6630;font-size:22px}
body:has(.lpl-student-zone-old) .lpl-live-hero{min-height:305px;background:linear-gradient(rgba(255,255,255,.72),rgba(255,255,255,.72)),url('/images/helix/grey-piano-bg-3.jpg') center bottom/cover no-repeat}
body:has(.lpl-student-zone-old) .lpl-live-title,body:has(.lpl-student-zone-old) .lpl-countdown,body:has(.lpl-student-zone-old) .lpl-live-box>p,body:has(.lpl-student-zone-old) .lpl-live-box>p strong{color:#444;text-shadow:none}
body:has(.lpl-student-zone-old) .lpl-subscribe-button{box-shadow:none}
@media(max-width:760px){.lpl-resource-link-grid{grid-template-columns:1fr}}


/* LPL ARCHIVE AND GUIDE PARITY 20260904 */
.lpl-musipedia-guide{
  width:min(1110px,92vw);
  margin:0 auto;
  padding:86px 0 60px;
  color:#333;
  font-family:Lato,Arial,Helvetica,sans-serif;
  font-size:15px;
  line-height:1.75;
}
.lpl-musipedia-guide h1{margin:0 0 34px;font-size:44px;font-weight:300;line-height:1.1}
.lpl-musipedia-guide h2{margin:38px 0 12px;font-size:32px;font-weight:300;line-height:1.2}
.lpl-musipedia-guide a{color:#0784c1}
.lpl-adult-archive{padding:86px 0 70px;color:#333;font-family:Lato,Arial,Helvetica,sans-serif}
.lpl-archive-wrap{width:min(1110px,92vw);margin:0 auto}
.lpl-adult-archive h1{margin:0 0 12px;font-size:36px;font-weight:300;line-height:1.2}
.lpl-archive-intro{margin:0 0 28px;font-size:16px}
.lpl-archive-tools{display:grid;grid-template-columns:2fr 1fr;gap:18px;padding:18px 20px;border-radius:6px;background:#ed6630;color:#fff}
.lpl-archive-tools label{display:grid;gap:7px;font-size:13px;font-weight:700;text-transform:uppercase}
.lpl-archive-tools input,.lpl-archive-tools select{width:100%;min-height:44px;padding:9px 12px;border:1px solid rgba(0,0,0,.15);border-radius:3px;background:#fff;color:#333;font:15px Lato,Arial,sans-serif}
.lpl-archive-status{margin:16px 0 8px;color:#666;font-size:14px}

.lpl-archive-table-wrap{overflow-x:auto;border:1px solid #ddd}
.lpl-archive-table{width:100%;border-collapse:collapse;background:#fff;font-size:14px}
.lpl-archive-table th{padding:12px 14px;background:#333;color:#fff;font-weight:700;text-align:left}
.lpl-archive-table td{padding:11px 14px;border-bottom:1px solid #e8e8e8;vertical-align:top}
.lpl-archive-table tbody tr:nth-child(even){background:#fafafa}
.lpl-archive-table a{color:#ed6630;font-weight:600;text-decoration:none}
.lpl-archive-table a:hover,.lpl-archive-table a:focus{text-decoration:underline}
.lpl-archive-table th:first-child{width:72%}
.lpl-archive-table th:nth-child(2){width:28%}
.lpl-archive-table tr[hidden]{display:none}
.lpl-archive-pages{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:22px}
.lpl-archive-pages button{padding:9px 16px;border:0;border-radius:3px;background:#ed6630;color:#fff;font-weight:700}
.lpl-archive-pages button:disabled{cursor:not-allowed;opacity:.4}
.lpl-archive-pages span{min-width:95px;text-align:center}
@media(max-width:700px){
  .lpl-musipedia-guide,.lpl-adult-archive{padding-top:56px}
  .lpl-archive-tools{grid-template-columns:1fr}
  .lpl-archive-table th:nth-child(2),.lpl-archive-table td:nth-child(2){display:none}
  .lpl-archive-table th:first-child{width:72%}
}

/* Restore the old Kids Archive personality */
.lpl-songlist{padding-bottom:60px;background:#fff;color:#333;font-family:Lato,Arial,Helvetica,sans-serif}
.lpl-song-hero{padding:72px 20px 34px;border:0;background:#fff;text-align:center}
.lpl-song-hero .lpl-wrap{max-width:1110px}
.lpl-song-hero h1{margin:0 0 12px;color:#222;font-family:Bangers,Impact,sans-serif;font-size:44px;font-weight:400;letter-spacing:.02em;line-height:1}
.lpl-song-logo{width:min(790px,94%);margin:0 auto 18px}
.lpl-song-hero>div>p:not(.lpl-song-count){margin:0 auto 20px;color:#444;font-size:15px}
.lpl-song-search-label{display:block;margin:0 auto 7px;color:#333;font-size:13px;font-weight:700}
.lpl-song-search{width:min(740px,90%);max-width:none;margin:0 auto;padding:14px 18px;border:1px solid #ccc;border-radius:5px;background:#fff;box-shadow:0 0 0 10px #ed6630;font:16px Lato,Arial,sans-serif}
.lpl-song-search:focus{border-color:#555;box-shadow:0 0 0 10px #ed6630;outline:2px solid #222}
.lpl-song-count{margin:20px 0 0;color:#666;font-size:13px;font-weight:400}
.lpl-song-grid{display:grid;gap:34px;margin-top:22px}
.lpl-song-section{padding:0;border:0;border-radius:0;background:#fff;box-shadow:none;overflow:visible}
.lpl-song-section h2,.lpl-song-section:nth-child(2n) h2,.lpl-song-section:nth-child(3n) h2{margin:0 0 13px;padding:0;background:transparent;color:#222;font-family:Bangers,Impact,sans-serif;font-size:32px;font-weight:400;letter-spacing:.02em}
.lpl-song-section ul{columns:3 250px;column-gap:34px;margin:0;padding:0;list-style:none}
.lpl-song-item{padding:4px 0;border:0;break-inside:avoid}
.lpl-song-item a{color:#ed6630;font-weight:400;text-decoration:none}
.lpl-song-item a:hover,.lpl-song-item a:focus{color:#b94218;text-decoration:underline}
@media(max-width:700px){.lpl-song-hero{padding:50px 16px 28px}.lpl-song-hero h1{font-size:38px}.lpl-song-section ul{columns:1}.lpl-song-section h2{font-size:28px}}

/* Adult archive supplies its own styled heading and navigation tools. */
.itemid-102 .com-content-article > .page-header,
.itemid-102 .com-content-article > .article-info { display: none; }

/* Final old-site typography parity for the main navigation and homepage program row. */
.lpl-main-nav > a,
.lpl-main-nav > .lpl-nav-drop > button {
  font-family: Lato, Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}
.lpl-home,
.lpl-home h1,
.lpl-home h2,
.lpl-home h3 {
  font-family: Lato, Arial, Helvetica, sans-serif !important;
}
.lpl-programs .lpl-wrap { max-width: 1100px; }
.lpl-programs h1 {
  font-size: 36px !important;
  line-height: 40px !important;
  font-weight: 300 !important;
}
.lpl-programs .lpl-lead {
  color: #222 !important;
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
}
.lpl-programs .lpl-feature-card img { max-width: 192px; }
.lpl-programs .lpl-feature-card h2 {
  color: #000 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}
.lpl-programs .lpl-feature-card p {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 21px !important;
  font-weight: 700 !important;
}

/* Old homepage comparison-table styling. */
.lpl-compare-section h2 {
  font-weight: 600 !important;
  color: #252525 !important;
}
.lpl-compare-scroll {
  border-radius: 14px;
  overflow-x: auto;
}
.lpl-compare-table thead th {
  background: #fff !important;
  color: #6b7280 !important;
  text-transform: uppercase;
  font-weight: 700;
}
.lpl-compare-table tbody tr:nth-child(odd) > th,
.lpl-compare-table tbody tr:nth-child(odd) > td {
  background: #f1f2f3;
}
.lpl-compare-table thead th:nth-child(2),
.lpl-compare-table tbody td:nth-child(2),
.lpl-compare-table tfoot td:nth-child(2) {
  border-left: 2px solid #ed9a2b;
  border-right: 2px solid #ed9a2b;
}
.lpl-compare-table thead th:nth-child(2) {
  border-top: 2px solid #ed9a2b;
}
.lpl-compare-table tbody td:nth-child(2) { color: #ed9a2b; }
.lpl-sample-card h3 {
  color: #666 !important;
  font-size: 28px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
}

/* Old homepage Imagine section: bright, centered, and spacious. */
.lpl-imagine {
  min-height: 980px;
  background:
    linear-gradient(rgba(255,255,255,.68),rgba(255,255,255,.68)),
    url('/images/2018/08/22/lighterparkpianojamin.jpg') center center / cover no-repeat;
  color: #252525;
  align-items: flex-start;
}
.lpl-imagine-inner { justify-content: center; }
.lpl-imagine-copy {
  max-width: 1040px;
  width: 100%;
  padding: 105px 24px 70px;
  background: transparent;
  color: #252525;
  text-align: center;
}
.lpl-imagine h2 {
  color: #252525 !important;
  font-size: 64px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
}
.lpl-imagine ul {
  columns: 1;
  max-width: 760px;
  margin: 55px auto 40px;
  padding: 0;
  list-style: none;
}
.lpl-imagine li {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 700;
}
.lpl-imagine li::before { content: "- "; }
.lpl-imagine .lpl-button-row { justify-content: center; }
.lpl-how h2 {
  font-size: 66px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
}
@media (max-width: 760px) {
  .lpl-imagine { min-height: auto; }
  .lpl-imagine-copy { padding: 60px 20px; }
  .lpl-imagine h2 { font-size: 42px !important; }
  .lpl-imagine li { font-size: 17px; }
  .lpl-how h2 { font-size: 46px !important; }
}

/* Preserved legacy Office Hours route, restyled for the modern site. */
.itemid-138 .com-content-article > .page-header,
.itemid-138 .com-content-article > .article-info { display:none; }
.lpl-office-hours{
  max-width:1120px;
  margin:0 auto;
  padding:46px 20px 76px;
  font-family:Lato,Arial,Helvetica,sans-serif;
}
.lpl-office-hero{
  padding:64px 7%;
  border-radius:18px;
  background:linear-gradient(135deg,#f36f35 0%,#d85421 58%,#7b2511 100%);
  color:#fff;
  box-shadow:0 18px 45px rgba(76,28,10,.18);
}
.lpl-office-hero .lpl-eyebrow{
  margin:0 0 12px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.12em;
}
.lpl-office-hero h1{
  margin:0 0 18px;
  color:#fff;
  font-family:Lato,Arial,Helvetica,sans-serif;
  font-size:54px;
  font-weight:600;
  line-height:1.05;
}
.lpl-office-lead{
  max-width:780px;
  margin:0;
  font-size:21px;
  line-height:1.55;
}
.lpl-office-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.lpl-office-actions .lpl-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 22px;
  border:2px solid #fff;
  border-radius:5px;
  font-weight:800;
  text-decoration:none;
}
.lpl-office-actions .lpl-btn-primary{background:#fff;color:#d85421}
.lpl-office-actions .lpl-btn-secondary{background:transparent;color:#fff}
.lpl-office-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin-top:28px;
}
.lpl-office-grid article{
  padding:30px;
  border:1px solid #e3e3e3;
  border-radius:12px;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.lpl-office-grid h2{
  margin:0 0 12px;
  color:#222;
  font-family:Lato,Arial,Helvetica,sans-serif;
  font-size:27px;
  font-weight:700;
}
.lpl-office-grid p{font-size:16px;line-height:1.65}
.lpl-office-grid .lpl-text-link{color:#e75f2c;font-weight:800}
@media(max-width:700px){
  .lpl-office-hours{padding:24px 14px 52px}
  .lpl-office-hero{padding:44px 24px}
  .lpl-office-hero h1{font-size:39px}
  .lpl-office-lead{font-size:18px}
  .lpl-office-actions{display:grid}
  .lpl-office-grid{grid-template-columns:1fr}
}
/* Final archive presentation: large lesson players, clean metadata-free pages, and readable indexes. */
.com-content-article > .article-info,
.itemid-102 .com-content-article > .page-header,
.itemid-103 .com-content-article > .page-header,
.itemid-102 .com-content-article > .article-info,
.itemid-103 .com-content-article > .article-info,
.itemid-102 .pagenavigation,
.itemid-103 .pagenavigation {
  display: none !important;
}

body.view-category .lpl-home-module {
  display: none !important;
}

body.view-article .pagenavigation,
body.view-article.itemid-123 .lpl-page-module.lpl-student-zone-old,
body.view-article.itemid-123 .lpl-rotating-resource {
  display: none !important;
}

.itemid-102.view-article .container-component,
.itemid-103.view-article .container-component {
  padding: 36px clamp(18px, 4vw, 58px) 72px;
  background: #f6f7f8;
}

.itemid-102.view-article .com-content-article__body,
.itemid-103.view-article .com-content-article__body {
  max-width: 1220px;
  margin: 0 auto;
}

.itemid-102 .archive-player-window,
.itemid-103 .archive-player-window,
.itemid-103 .archive-player-window-kids {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid #e1e4e7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(25, 35, 45, .09);
}

.itemid-102 .archive-player-window > div:first-child,
.itemid-103 .archive-player-window > div:first-child,
.itemid-103 .archive-player-window-kids > div:first-child {
  text-align: center;
}

.itemid-102 .archive-player-window > div:first-child > p,
.itemid-103 .archive-player-window > div:first-child > p,
.itemid-103 .archive-player-window-kids > div:first-child > p {
  display: none !important;
}

.itemid-102 .archive-player-window h3,
.itemid-103 .archive-player-window h3,
.itemid-103 .archive-player-window-kids h3 {
  margin: 0 0 12px;
  color: #222;
  font: 700 clamp(28px, 3vw, 42px)/1.18 Lato, Arial, sans-serif;
}

.itemid-102 .archive-player-window .row,
.itemid-103 .archive-player-window .row,
.itemid-103 .archive-player-window-kids .row {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.itemid-102 .archive-player-window .col-md-10,
.itemid-102 .archive-player-window .col-md-12,
.itemid-103 .archive-player-window .col-md-10,
.itemid-103 .archive-player-window .col-md-12,
.itemid-103 .archive-player-window-kids .col-md-10,
.itemid-103 .archive-player-window-kids .col-md-12 {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.itemid-102 .vidresp-container,
.itemid-103 .vidresp-container,
.itemid-103 .archive-player-window-kids .vidresp-container {
  position: relative;
  width: 100%;
  height: auto !important;
  margin: 26px 0 22px;
  padding: 0 !important;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}

.itemid-102 .vidresp-container iframe,
.itemid-103 .vidresp-container iframe,
.itemid-103 .archive-player-window-kids .vidresp-container iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.itemid-102 a.lesson-btn-pdf,
.itemid-102 a.lesson-btn-mp3,
.itemid-103 a.lesson-btn-pdf,
.itemid-103 a.lesson-btn-mp3 {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 48px;
  margin: 8px 6px;
  padding: 12px 22px;
  border: 0;
  border-radius: 7px;
  color: #fff !important;
  font: 800 15px/1 Lato, Arial, sans-serif;
  letter-spacing: .04em;
  text-decoration: none !important;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .13);
}

.itemid-102 a.lesson-btn-pdf,
.itemid-103 a.lesson-btn-pdf {
  background: #e85f2b;
}

.itemid-102 a.lesson-btn-mp3,
.itemid-103 a.lesson-btn-mp3 {
  background: #176d87;
}

.itemid-102 a.lesson-btn-pdf::before,
.itemid-103 a.lesson-btn-pdf::before {
  content: "↓";
  margin-right: 8px;
  font-size: 18px;
}

.itemid-102 a.lesson-btn-mp3::before,
.itemid-103 a.lesson-btn-mp3::before {
  content: "▶";
  margin-right: 8px;
  font-size: 13px;
}

.itemid-102 audio,
.itemid-103 audio {
  display: block !important;
  width: min(680px, 100%) !important;
  margin: 18px auto 0 !important;
}

.itemid-102 .lpl-resource-unavailable,
.itemid-103 .lpl-resource-unavailable {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 8px 6px;
  padding: 12px 18px;
  border-radius: 7px;
  background: #eceff1;
  color: #65717b;
  font-weight: 700;
}

/* Kids archive: compact centered heading, generous side padding, and color-coded categories. */
.lpl-songlist {
  padding: 0 clamp(18px, 6vw, 86px) 72px !important;
  background: #f7f8fa !important;
}

.lpl-song-hero {
  margin: 0 calc(-1 * clamp(18px, 6vw, 86px)) 34px;
  padding: 60px clamp(18px, 6vw, 86px) 42px !important;
  background: #fff !important;
}

.lpl-song-hero h1 {
  text-align: center;
}

.lpl-song-count {
  display: none !important;
}

.lpl-song-grid {
  max-width: 1180px;
  margin: 0 auto !important;
  gap: 28px !important;
}

.lpl-song-section {
  overflow: hidden !important;
  padding: 0 28px 28px !important;
  border: 1px solid #dfe5ea !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 10px 28px rgba(28, 45, 60, .07) !important;
}

.lpl-song-section h2,
.lpl-song-section:nth-child(2n) h2,
.lpl-song-section:nth-child(3n) h2 {
  margin: 0 -28px 20px !important;
  padding: 16px 24px !important;
  color: #fff !important;
  text-align: center;
  font-family: Bangers, Impact, sans-serif !important;
  font-size: clamp(27px, 3vw, 36px) !important;
  letter-spacing: .035em;
}

.lpl-song-section:nth-child(4n+1) h2 { background: #17577a !important; }
.lpl-song-section:nth-child(4n+2) h2 { background: #df622d !important; }
.lpl-song-section:nth-child(4n+3) h2 { background: #16847f !important; }
.lpl-song-section:nth-child(4n) h2 { background: #76529c !important; }

.lpl-song-section ul {
  columns: 3 250px !important;
  column-gap: 38px !important;
}

.lpl-song-item {
  padding: 7px 0 !important;
  border-bottom: 1px dotted #d5dde2 !important;
}

@media (max-width: 700px) {
  .itemid-102.view-article .container-component,
  .itemid-103.view-article .container-component {
    padding: 18px 10px 46px;
  }

  .itemid-102 .archive-player-window,
  .itemid-103 .archive-player-window,
  .itemid-103 .archive-player-window-kids {
    padding: 20px 14px 28px;
    border-radius: 12px;
  }

  .lpl-songlist {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .lpl-song-hero {
    margin-right: -12px;
    margin-left: -12px;
  }

  .lpl-song-section {
    padding: 0 18px 22px !important;
  }

  .lpl-song-section h2,
  .lpl-song-section:nth-child(2n) h2,
  .lpl-song-section:nth-child(3n) h2 {
    margin-right: -18px !important;
    margin-left: -18px !important;
  }

  .lpl-song-section ul {
    columns: 1 !important;
  }
}

/* Native Musipedia course shell while the LMS decision is pending. */
.lpl-nonhome-item101 .lpl-home-module {
  display: none !important;
}

.lpl-native-course-page .container-component,
.lpl-native-course-lesson .container-component {
  padding: 46px clamp(18px, 5vw, 72px) 80px;
  background: linear-gradient(180deg, #f4f7f8 0%, #fff 260px);
}

.lpl-native-course-header,
.lpl-course-lesson-card {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.lpl-native-course-header {
  margin-bottom: 30px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 18px;
  background: linear-gradient(135deg, #183e58 0%, #176f7b 72%, #de6a32 145%);
  color: #fff;
  box-shadow: 0 16px 42px rgba(24, 62, 88, .18);
}

.lpl-native-course-header a {
  color: #d9f7f5;
  font-weight: 800;
  text-decoration: none;
}

.lpl-native-course-header h1 {
  margin: 18px 0 12px;
  color: #fff;
  font: 700 clamp(36px, 5vw, 58px)/1.08 Lato, Arial, sans-serif;
}

.lpl-native-course-header p {
  max-width: 760px;
  margin: 0;
  color: #edf9fa;
  font-size: 18px;
  line-height: 1.65;
}

.lpl-native-course-page .com-content-category-blog {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.lpl-native-course-page .alert-info,
.lpl-native-course-page .com-content-category-blog > h3 {
  display: none !important;
}

.lpl-native-course-page .cat-children,
.lpl-native-course-page .com-content-category-blog__items {
  display: grid;
  gap: 18px;
}

.lpl-native-course-page .lpl-course-unit,
.lpl-native-course-page .lpl-course-step {
  position: relative;
  min-height: 92px;
  margin: 0 !important;
  padding: 24px 26px 24px 92px;
  overflow: hidden;
  border: 1px solid #dce3e7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 44, 60, .07);
}

.lpl-native-course-page .lpl-step-number {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 66px;
  align-items: center;
  justify-content: center;
  background: #e96731;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .04em;
}

.lpl-native-course-page .lpl-course-unit .page-header,
.lpl-native-course-page .lpl-course-step .page-header {
  margin: 0;
  padding: 0;
  border: 0;
}

.lpl-native-course-page .lpl-course-unit h3,
.lpl-native-course-page .lpl-course-step h2 {
  margin: 0;
  font: 700 clamp(21px, 2.4vw, 29px)/1.3 Lato, Arial, sans-serif;
}

.lpl-native-course-page .lpl-course-unit a,
.lpl-native-course-page .lpl-course-step h2 a {
  color: #183e58;
  text-decoration: none;
}

.lpl-native-course-page .lpl-course-unit a:hover,
.lpl-native-course-page .lpl-course-step h2 a:hover {
  color: #d95724;
}

.lpl-native-course-page .article-info,
.lpl-native-course-page .lpl-course-step .category-name {
  display: none !important;
}

.lpl-native-course-page .lpl-course-step .item-content {
  width: 100%;
}

.lpl-native-course-page .lpl-course-step .lpl-lesson-video {
  width: min(980px, 100%);
  margin: 22px auto 0;
}

.lpl-native-course-page .lpl-course-step .lpl-lesson-video iframe,
.lpl-native-course-lesson .lpl-lesson-video iframe {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
}

.lpl-course-lesson-card {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid #dce3e7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(20, 44, 60, .09);
}

.lpl-native-course-lesson .article-info {
  display: none !important;
}

.lpl-course-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #d95724;
  font-weight: 800;
  text-decoration: none;
}

.lpl-course-sequence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid #dce3e7;
}

.lpl-course-sequence a {
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 19px 22px;
  border: 1px solid #d5e0e7;
  border-radius: 13px;
  background: #f7fafc;
  color: #183e58;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.lpl-course-sequence a:hover {
  transform: translateY(-2px);
  border-color: #e96731;
  box-shadow: 0 10px 24px rgba(20, 44, 60, .1);
}

.lpl-course-sequence a span {
  color: #d95724;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lpl-course-sequence a strong {
  font-size: 18px;
  line-height: 1.35;
}

.lpl-course-sequence-next {
  text-align: right;
}

.lpl-course-outline {
  margin-top: 38px;
  padding: 26px;
  border: 1px solid #d5e0e7;
  border-radius: 14px;
  background: #f7fafc;
}

.lpl-course-outline h2 {
  margin: 0 0 16px;
  color: #183e58;
  font: 800 25px/1.25 Lato, Arial, sans-serif;
}

.lpl-course-outline ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 26px;
}

.lpl-course-outline li {
  padding: 6px 4px;
}

.lpl-course-outline li small {
  display: block;
  margin-top: 2px;
  color: #6b7c87;
  font-size: 12px;
}

.lpl-course-outline a {
  color: #183e58;
  font-weight: 700;
  text-decoration: none;
}

.lpl-course-outline a:hover {
  color: #d95724;
  text-decoration: underline;
}

.lpl-course-outline .is-current {
  color: #d95724;
  font-weight: 900;
}

.lpl-shipping-note {
  max-width: 680px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 5px solid #f2a32b;
  border-radius: 8px;
  background: rgba(255, 245, 218, .96);
  color: #4f3b16;
}

@media (max-width: 650px) {
  .lpl-course-sequence { grid-template-columns: 1fr; }
  .lpl-course-sequence-next { text-align: left; }
}

.lpl-native-course-lesson .page-header h1,
.lpl-native-course-lesson .page-header h2 {
  margin: 0 0 24px;
  color: #1f3442;
  font: 700 clamp(34px, 4.5vw, 52px)/1.12 Lato, Arial, sans-serif;
}

.lpl-native-course-lesson .com-content-article__body {
  color: #344955;
  font-size: 17px;
  line-height: 1.75;
}

.lpl-native-course-lesson .lpl-lesson-video {
  width: min(980px, 100%);
  margin: 28px auto;
}

@media (max-width: 700px) {
  .lpl-native-course-page .container-component,
  .lpl-native-course-lesson .container-component {
    padding: 20px 12px 54px;
  }

  .lpl-native-course-header,
  .lpl-course-lesson-card {
    padding: 28px 20px;
    border-radius: 13px;
  }

  .lpl-native-course-page .lpl-course-unit,
  .lpl-native-course-page .lpl-course-step {
    padding: 20px 16px 20px 68px;
  }

  .lpl-native-course-page .lpl-step-number {
    width: 52px;
    font-size: 15px;
  }
}

/* Musipedia explainer page: visual overview instead of a long text wall. */
.lpl-musipedia-guide-modern {
  width: min(1180px, 92vw);
  padding-top: 56px;
}

.lpl-musi-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 20px;
  background: linear-gradient(135deg, #183e58 0%, #175f72 65%, #d85f2c 145%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(23, 63, 91, .2);
}

.lpl-musipedia-guide-modern .lpl-musi-hero h1 {
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
}

.lpl-musi-eyebrow {
  margin: 0;
  color: #f8c6ae;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.lpl-musi-hero-copy > p:not(.lpl-musi-eyebrow) {
  margin: 0;
  color: #edf7f9;
  font-size: 18px;
  line-height: 1.65;
}

.lpl-musi-video {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.lpl-musi-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.lpl-musi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.lpl-musipedia-guide-modern .lpl-musi-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 2px solid #fff;
  border-radius: 7px;
  background: #fff;
  color: #17465d;
  font-weight: 900;
  text-decoration: none;
}

.lpl-musipedia-guide-modern .lpl-musi-actions a + a {
  background: transparent;
  color: #fff;
}

.lpl-musi-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.lpl-musi-steps article {
  padding: 30px;
  border: 1px solid #dfe5e8;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 27px rgba(25, 47, 62, .06);
}

.lpl-musi-steps span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff0e9;
  color: #d85825;
  font-weight: 900;
}

.lpl-musipedia-guide-modern .lpl-musi-steps h2 {
  margin: 20px 0 10px;
  font-size: 25px;
  font-weight: 700;
}

.lpl-musi-steps p,
.lpl-musi-choice p,
.lpl-musi-story p,
.lpl-musi-cta p {
  margin: 0;
  color: #52646f;
  line-height: 1.7;
}

.lpl-musi-choice {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 28px;
  margin: 28px 0;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 18px;
  background: #f3f7f8;
}

.lpl-musipedia-guide-modern .lpl-musi-choice h2,
.lpl-musipedia-guide-modern .lpl-musi-story h2,
.lpl-musipedia-guide-modern .lpl-musi-cta h2 {
  margin: 10px 0 20px;
  font-size: clamp(29px, 3.6vw, 43px);
  font-weight: 700;
}

.lpl-musi-choice > div > p {
  margin-bottom: 14px;
}

.lpl-musi-choice aside {
  padding: 26px;
  border-radius: 12px;
  background: #183e58;
  color: #fff;
}

.lpl-musi-choice aside strong {
  font-size: 22px;
}

.lpl-musi-choice aside p {
  margin: 12px 0 18px;
  color: #eaf4f7;
}

.lpl-musipedia-guide-modern .lpl-musi-choice aside a {
  color: #ffb28d;
  font-weight: 900;
}

.lpl-musi-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 52px 0;
}

.lpl-musi-cta {
  padding: 44px;
  border-radius: 17px;
  background: #e96731;
  color: #fff;
  text-align: center;
}

.lpl-musipedia-guide-modern .lpl-musi-cta h2,
.lpl-musipedia-guide-modern .lpl-musi-cta p {
  color: #fff;
}

.lpl-musi-cta .lpl-musi-actions {
  justify-content: center;
}

@media (max-width: 820px) {
  .lpl-musi-hero,
  .lpl-musi-choice,
  .lpl-musi-story {
    grid-template-columns: 1fr;
  }

  .lpl-musi-steps {
    grid-template-columns: 1fr;
  }

  .lpl-musi-hero {
    padding: 32px 22px;
  }

  .lpl-musi-cta {
    padding: 34px 20px;
  }
}

/* 2026-09-04 testimonial and homepage polish */
.lpl-testimonials-page .lpl-review-card .lpl-review-avatar {
  width: 54px !important;
  height: 54px !important;
  flex: 0 0 54px;
  margin: 0 auto;
  border: 0;
  background: #183c59 url('/images/testimonials/anonymous-avatar.svg?v=2') center/cover no-repeat;
  color: transparent !important;
  font-size: 0 !important;
  overflow: hidden;
}
.lpl-testimonial-signup-break {
  grid-column: 1 / -1;
  margin: 10px 0 28px;
  padding: 28px 20px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(135deg, #153b5a, #245f86);
  box-shadow: 0 14px 35px rgba(16, 45, 68, .18);
}
.lpl-testimonial-signup-break p { margin: 0 0 14px; color: #fff; font-size: 20px; font-weight: 700; }
.lpl-testimonial-signup-break .lpl-big-button { margin: 0; }
.lpl-home-testimonial-cta { margin-top: 34px; }
.lpl-imagine { background-position: center 36% !important; }
.lpl-imagine::before { background: rgba(255, 255, 255, .12) !important; }

/* Keep homepage photography visible while preserving text contrast. */
.lpl-live-hero {
  background-image: linear-gradient(rgba(0,0,0,.30), rgba(0,0,0,.30)), url('/images/2018/04/06/countdown-bg-1.jpg') !important;
}
.lpl-imagine {
  background-image: linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.25)), url('/images/2018/08/22/lighterparkpianojamin.jpg') !important;
}
.lpl-how {
  background-image: linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)), url('/images/2018/08/17/pianoinsidedark.jpg') !important;
}
.lpl-subscribe {
  background-image: linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)), url('/images/2018/08/27/carousellake1.jpg') !important;
}

/* 2026-09-04 protected student video submission */
.lpl-video-submit-page { background: #f4f7fa; }
.lpl-video-submit-hero {
  padding: 76px 20px 66px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #132f47, #235f84);
}
.lpl-video-submit-hero .lpl-eyebrow {
  margin: 0 0 8px;
  color: #f5b041;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lpl-video-submit-hero h1 { margin: 0 0 14px; color: #fff; }
.lpl-video-submit-hero p:last-child { max-width: 720px; margin: 0 auto; font-size: 20px; }
.lpl-video-submit-layout {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.35fr);
  gap: 34px;
  align-items: start;
  padding-top: 58px;
  padding-bottom: 70px;
}
.lpl-video-submit-guide,
.lpl-video-submit-form {
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 52, 78, .12);
}
.lpl-video-submit-guide h2 { margin-top: 0; color: #173d59; }
.lpl-video-submit-guide li { margin-bottom: 13px; }
.lpl-video-submit-form { display: grid; gap: 20px; }
.lpl-video-submit-form label { display: grid; gap: 7px; color: #173d59; font-weight: 750; }
.lpl-video-submit-form input,
.lpl-video-submit-form select,
.lpl-video-submit-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b9c9d5;
  border-radius: 9px;
  background: #fff;
  color: #1f2933;
  font: inherit;
}
.lpl-video-submit-form input:focus,
.lpl-video-submit-form select:focus,
.lpl-video-submit-form textarea:focus { outline: 3px solid rgba(22, 119, 190, .2); border-color: #1677be; }
.lpl-video-submit-form .lpl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lpl-video-submit-form .lpl-video-permission { display: grid; gap: 10px; margin: 0; padding: 18px; border: 1px solid #b9c9d5; border-radius: 10px; }
.lpl-video-submit-form .lpl-video-permission legend { padding: 0 6px; color: #173d59; font-weight: 800; }
.lpl-video-submit-form .lpl-video-permission label { display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 9px; font-weight: 500; }
.lpl-video-submit-form .lpl-video-permission input { width: 18px; height: 18px; margin-top: 3px; }
.lpl-video-submit-form .lpl-video-permission small { color: #526879; }
.lpl-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.lpl-video-submit-form button { justify-self: start; border: 0; }
@media (max-width: 780px) {
  .lpl-video-submit-layout { grid-template-columns: 1fr; padding: 34px 16px 48px; }
  .lpl-video-submit-form .lpl-form-row { grid-template-columns: 1fr; }
  .lpl-video-submit-guide, .lpl-video-submit-form { padding: 24px 20px; }
}
body.lpl-nonhome-item101.view-article .lpl-home-module { display: none !important; }
.com-content-article:has(.lpl-video-submit-page) > .page-header,
.com-content-article:has(.lpl-video-submit-page) > .article-info { display: none !important; }
.com-content-article:has(.lpl-video-submit-page) { padding: 0 !important; max-width: none !important; }

/* Scheduled Student Zone resources. Joomla publish dates keep one item per series visible. */
.lpl-rotating-resource {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid #d9e3e8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(17, 52, 78, .1);
}

.lpl-rotating-resource > h2,
.lpl-rotating-resource > h3,
.lpl-rotating-resource .module-title {
  margin: 0 0 22px;
  color: #173d59;
  font: 800 clamp(28px, 3.6vw, 42px)/1.15 Lato, Arial, sans-serif;
  text-align: center;
}

.lpl-rotating-weekly { border-top: 8px solid #ff831b; }
.lpl-rotating-bingo { border-top: 8px solid #2ab2e7; }
.lpl-rotating-coloring { border-top: 8px solid #8dc63f; }
.lpl-rotating-mliab { border-top: 8px solid #f27908; }

.lpl-rotating-card {
  scroll-margin-top: 100px;
}

.lpl-rotating-card iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
  border-radius: 12px;
}

.lpl-rotating-card .vidresp-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
}

.lpl-rotating-card .vidresp-container iframe {
  position: absolute;
  inset: 0;
  height: 100% !important;
}

@media (max-width: 700px) {
  .lpl-rotating-resource {
    width: min(100% - 20px, 1180px);
    padding: 20px 14px;
  }
}

/* Native kids archive polish. */
.itemid-103.view-category .container-component {
  padding: 58px clamp(22px, 6vw, 88px) 80px;
  background: #f5f7f9;
}
.itemid-103 .com-content-category.category-list {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.itemid-103 .content-category > h1 {
  margin: 0 0 34px;
  color: #27313a;
  font: 700 clamp(34px, 4vw, 50px)/1.15 Lato, Arial, sans-serif;
  text-align: center;
}
.itemid-103 .com-content-category__pagination {
  display: none;
}
.itemid-103 .com-content-category__articles {
  margin: 0 0 42px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28,45,60,.08);
}
.itemid-103 .com-content-category__table {
  margin: 0;
}
.itemid-103 .com-content-category__table th:nth-child(n+2),
.itemid-103 .com-content-category__table td:nth-child(n+2) {
  display: none;
}
.itemid-103 .com-content-category__table a {
  color: #cb5525;
  font-weight: 750;
}
.itemid-103 .cat-children {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}
.itemid-103 .cat-children > h3 {
  grid-column: 1 / -1;
  margin: 8px 0 4px;
  color: #27313a;
  font-size: 28px;
  text-align: center;
}
.itemid-103 .com-content-category__children {
  min-height: 88px;
  overflow: hidden;
  border: 1px solid #dfe5ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(28,45,60,.07);
}
.itemid-103 .com-content-category__children .page-header {
  display: flex;
  min-height: 88px;
  margin: 0;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  text-align: center;
}
.itemid-103 .com-content-category__children:nth-of-type(4n+1) .page-header { background: #17577a; }
.itemid-103 .com-content-category__children:nth-of-type(4n+2) .page-header { background: #df622d; }
.itemid-103 .com-content-category__children:nth-of-type(4n+3) .page-header { background: #16847f; }
.itemid-103 .com-content-category__children:nth-of-type(4n) .page-header { background: #76529c; }
.itemid-103 .com-content-category__children .page-header a {
  color: #fff !important;
  font: 700 clamp(22px, 2.4vw, 31px)/1.15 Lato, Arial, sans-serif;
  text-decoration: none;
}
@media (max-width: 700px) {
  .itemid-103.view-category .container-component { padding: 38px 14px 60px; }
  .itemid-103 .cat-children { grid-template-columns: 1fr; }
  .itemid-103 .cat-children > h3 { grid-column: auto; }
}

/* 2026-09-04 in-browser practice tools */
.lpl-practice-tools-page { background: #f4f7fa; }
.lpl-practice-tools-hero { padding: 72px 20px 62px; text-align: center; color: #fff; background: linear-gradient(135deg,#173d59,#1677be); }
.lpl-practice-tools-hero .lpl-eyebrow { margin: 0 0 8px; color: #ffd071; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lpl-practice-tools-hero h1 { margin: 0 0 12px; color: #fff; }
.lpl-practice-tools-hero p:last-child { max-width: 760px; margin: 0 auto; font-size: 19px; }
.lpl-practice-tools-page .lpl-page-body > .lpl-wrap { padding-top: 54px; padding-bottom: 70px; }
.lpl-practice-widget-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px; }
.lpl-practice-widget { padding: 30px; border-radius: 18px; background: #fff; box-shadow: 0 14px 36px rgba(17,52,78,.11); }
.lpl-practice-widget h2 { margin-top: 0; color: #173d59; }
.lpl-practice-widget output { display: block; margin: 20px 0; color: #173d59; font-size: 42px; font-weight: 850; text-align: center; }
#lpl-bpm { width: 100%; accent-color: #1677be; }
.lpl-beat-light { width: 28px; height: 28px; margin: 18px auto; border-radius: 50%; background: #d7e1e8; box-shadow: 0 0 0 0 rgba(245,176,65,.4); transition: .08s ease; }
.lpl-beat-light.is-beat { background: #f5b041; transform: scale(1.25); box-shadow: 0 0 0 12px rgba(245,176,65,.15); }
#lpl-practice-timer label { display: grid; gap: 6px; max-width: 190px; margin: 0 auto; font-weight: 700; }
#lpl-practice-timer select { padding: 10px 12px; border: 1px solid #b9c9d5; border-radius: 8px; }
#lpl-practice-timer .lpl-button-row { justify-content: center; }
.lpl-practice-log { min-width: 0; }
.lpl-practice-log .lpl-form-row { display: grid; grid-template-columns: minmax(0,1fr) 120px; gap: 14px; }
.lpl-practice-log label { display: grid; gap: 7px; color: #173d59; font-weight: 700; }
.lpl-practice-log input { width: 100%; padding: 12px 13px; border: 1px solid #b9c9d5; border-radius: 8px; }
.lpl-practice-goals { margin-top: 24px; padding: 22px; border: 1px solid #d8e2e9; border-radius: 14px; background: #f7fafc; }
.lpl-practice-goals h4 { margin: 0 0 14px; color: #173d59; font-size: 20px; }
.lpl-goal-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-bottom: 14px; }
.lpl-goal-progress { display: grid; grid-template-columns: minmax(130px,auto) minmax(150px,1fr); align-items: center; gap: 8px 16px; margin-top: 18px; }
.lpl-goal-progress p { margin: 0; color: #435b6b; font-weight: 700; }
.lpl-goal-progress progress { width: 100%; height: 14px; accent-color: #1677be; }
.lpl-practice-total { margin: 20px 0 10px; color: #1677be; font-weight: 800; }
#lpl-practice-history { display: grid; gap: 8px; padding-left: 24px; }
#lpl-practice-history li { padding: 9px 12px; border-radius: 8px; background: #f2f6f9; }
#lpl-practice-history li span { float: right; color: #526879; }
.lpl-song-form { display: flex; align-items: end; gap: 12px; }
.lpl-song-form label { display: grid; flex: 1 1 auto; gap: 7px; color: #173d59; font-weight: 700; }
.lpl-song-form input { width: 100%; padding: 12px 13px; border: 1px solid #b9c9d5; border-radius: 8px; }
.lpl-song-summary { margin: 20px 0 10px; color: #1677be; font-weight: 800; }
#lpl-song-history { display: grid; gap: 8px; max-height: 300px; overflow-y: auto; padding-left: 24px; }
#lpl-song-history li { padding: 9px 12px; border-radius: 8px; background: #f2f6f9; }
#lpl-song-history li span { display: block; margin-top: 2px; color: #526879; font-size: 13px; }
.lpl-reward-panel { margin-top: 24px; padding: 18px; border: 1px solid #eadcae; border-radius: 14px; background: #fffaf0; }
.lpl-reward-panel h4 { margin: 0 0 6px; color: #173d59; }
.lpl-reward-panel > p { margin: 0 0 14px; color: #526879; }
.lpl-reward-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.lpl-reward-badge { padding: 12px; border: 1px solid #d9e2e7; border-radius: 12px; background: #fff; color: #647783; font-weight: 800; }
.lpl-reward-badge::before { content: "☆"; margin-right: 7px; color: #a6b3bb; }
.lpl-reward-badge.is-earned { border-color: #f5b041; background: #fff1c9; color: #7d5013; }
.lpl-reward-badge.is-earned::before { content: "★"; color: #e69618; }
.lpl-resource-links { margin-top: 38px; padding: 32px; border-radius: 18px; background: #fff; box-shadow: 0 14px 36px rgba(17,52,78,.09); }
.lpl-resource-links h2 { margin-top: 0; text-align: center; color: #173d59; }
.lpl-resource-link-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 15px; }
.lpl-resource-link-grid a { display: grid; gap: 4px; padding: 17px; border: 1px solid #d8e2e9; border-radius: 12px; color: #173d59; text-decoration: none; }
.lpl-resource-link-grid a:hover { border-color: #1677be; box-shadow: 0 8px 18px rgba(22,119,190,.12); transform: translateY(-2px); }
.lpl-resource-link-grid span { color: #526879; }
.com-content-article:has(.lpl-practice-tools-page) > .page-header,
.com-content-article:has(.lpl-practice-tools-page) > .article-info { display: none !important; }
.com-content-article:has(.lpl-practice-tools-page) { padding: 0 !important; max-width: none !important; }
@media (max-width: 780px) {
  .lpl-practice-widget-grid, .lpl-resource-link-grid { grid-template-columns: 1fr; }
  .lpl-practice-log { grid-column: auto; }
  .lpl-practice-log .lpl-form-row,
  .lpl-goal-fields,
  .lpl-goal-progress,
  .lpl-reward-grid { grid-template-columns: 1fr; }
  .lpl-song-form { align-items: stretch; flex-direction: column; }
  #lpl-practice-history li span { display: block; float: none; margin-top: 3px; }
}

/* 2026-09-05 homepage signup polish and consistent CTA alignment */
.lpl-home .lpl-button-row {
  justify-content: center;
  text-align: center;
}
.lpl-home .lpl-big-button,
.lpl-home .lpl-outline-button {
  display: block;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.lpl-home .lpl-plan,
.lpl-home .lpl-feature-card {
  text-align: center;
}
.lpl-freebie-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef7fb 0%, #fff8ee 100%);
}
.lpl-freebie-section::before,
.lpl-freebie-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  opacity: .16;
  pointer-events: none;
}
.lpl-freebie-section::before {
  top: -150px;
  left: -90px;
  background: #2ab2e7;
}
.lpl-freebie-section::after {
  right: -95px;
  bottom: -170px;
  background: #ed6630;
}
.lpl-freebie-section .lpl-wrap {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  margin-inline: auto;
}
.lpl-newsletter-eyebrow {
  margin: 0 0 10px;
  color: #d65d20;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .13em;
}
.lpl-freebie-section h2 {
  margin-bottom: 12px;
  color: #173d59;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 750;
}
.lpl-newsletter-lead {
  max-width: 670px;
  margin: 0 auto 26px;
  color: #435b6b;
  font-size: 18px;
  line-height: 1.6;
}
.lpl-kit-form {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.lpl-kit-form .formkit-form {
  width: min(700px, 100%) !important;
  margin-inline: auto !important;
  text-align: center !important;
}
.lpl-kit-form .formkit-header,
.lpl-kit-form .formkit-subheader {
  display: none !important;
}
.lpl-kit-form .formkit-fields {
  justify-content: center !important;
  margin-inline: auto !important;
}
.lpl-kit-form .formkit-field,
.lpl-kit-form .formkit-submit {
  margin-inline: auto !important;
}
@media (max-width: 640px) {
  .lpl-kit-form .formkit-fields {
    display: grid !important;
    grid-template-columns: 1fr;
  }
}

/* Dedicated rotating Student Zone resource pages */
.com-content-article:has(.lpl-scheduled-resource-page) > .page-header,
.com-content-article:has(.lpl-scheduled-resource-page) > .article-info {
  display: none !important;
}
.com-content-article:has(.lpl-scheduled-resource-page) {
  max-width: none !important;
  padding: 0 !important;
}
.lpl-scheduled-resource-page {
  padding: 58px 20px 28px;
  text-align: center;
  background: linear-gradient(180deg, #eef6fa 0%, #fff 100%);
}
.lpl-scheduled-resource-page .lpl-resource-inner {
  max-width: 860px;
}
.lpl-resource-back {
  display: inline-block;
  margin-bottom: 26px;
  color: #1677be;
  font-weight: 750;
  text-decoration: none;
}
.lpl-resource-back:hover {
  color: #d65d20;
}
.lpl-resource-eyebrow {
  margin: 0 0 8px;
  color: #d65d20;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .13em;
}
.lpl-scheduled-resource-page h1 {
  margin: 0 0 14px;
  color: #173d59;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 750;
}
.lpl-scheduled-resource-page .lpl-resource-inner > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: #526879;
  font-size: 17px;
  line-height: 1.65;
}

/* Member-only Watch Live panel replaces the countdown during its two-hour live window. */
.lpl-live-home-panel-module:has(.lpl-live-home-panel[hidden]) {
  display: none !important;
}
.lpl-live-home-panel[hidden] {
  display: none !important;
}
.lpl-live-home-panel {
  min-height: 360px;
  padding: 54px 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(13, 42, 61, .82), rgba(13, 42, 61, .82)),
    url('/images/2018/04/06/countdown-bg-1.jpg') center / cover no-repeat;
}
.lpl-live-home-inner {
  width: min(900px, 100%);
  margin-inline: auto;
}
.lpl-live-now-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #e62b2b;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}
.lpl-live-home-panel h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
}
.lpl-live-home-lead {
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 18px;
}
.lpl-live-home-panel .lpl-live-actions,
.lpl-live-home-materials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}
.lpl-live-home-materials {
  margin-top: 18px;
}
.lpl-live-home-panel .lpl-live-action,
.lpl-live-home-panel .lpl-big-button,
.lpl-live-home-panel .lpl-outline-button {
  margin: 0;
}
@media (max-width: 640px) {
  .lpl-live-home-panel .lpl-live-action,
  .lpl-live-home-panel .lpl-big-button,
  .lpl-live-home-panel .lpl-outline-button {
    width: 100%;
  }
}

/* Klopol Academy guide, restored separately from the Meet Klopol biography. */
.lpl-ka-guide {
  color: #243746;
  background: #fff;
  font-family: Lato, Arial, sans-serif;
}
.lpl-ka-guide * {
  box-sizing: border-box;
}
.lpl-ka-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  min-height: 540px;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(64px, 8vw, 104px) max(5vw, 24px);
  background: linear-gradient(135deg, #eef7fb 0%, #fff8ec 100%);
}
.lpl-ka-hero-copy {
  max-width: 700px;
  margin-left: auto;
}
.lpl-ka-eyebrow {
  margin: 0 0 11px;
  color: #dc6029;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}
.lpl-ka-guide h1 {
  margin: 0 0 18px;
  color: #173d59;
  font: 400 clamp(46px, 6vw, 76px)/1.03 "Days One", Lato, sans-serif;
}
.lpl-ka-guide h2 {
  color: #173d59;
}
.lpl-ka-hero-copy > p:not(.lpl-ka-eyebrow) {
  max-width: 690px;
  font-size: 20px;
  line-height: 1.65;
}
.lpl-ka-hero-art img {
  display: block;
  width: min(620px, 100%);
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(20, 58, 82, .18);
}
.lpl-ka-hero-art .lpl-ka-academic-logo {
  width: min(390px, 100%);
  margin-inline: auto;
  padding: 14px;
  border: 1px solid rgba(23, 61, 89, .12);
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}
.lpl-ka-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}
.lpl-ka-actions a {
  display: inline-block;
  padding: 13px 22px;
  border: 2px solid #dc6029;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.lpl-ka-primary {
  color: #fff !important;
  background: #dc6029;
}
.lpl-ka-secondary {
  color: #173d59 !important;
  background: transparent;
}
.lpl-ka-video-section,
.lpl-ka-roadmap,
.lpl-ka-skills {
  padding: clamp(62px, 8vw, 96px) max(5vw, 24px);
}
.lpl-ka-video-section {
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
  background: #173d59;
}
.lpl-ka-video-section .lpl-ka-section-copy h2,
.lpl-ka-video-section .lpl-ka-section-copy p:not(.lpl-ka-eyebrow) {
  color: #fff;
}
.lpl-ka-section-copy {
  max-width: 690px;
}
.lpl-ka-section-copy h2 {
  margin: 0 0 13px;
  font-size: clamp(32px, 4vw, 48px);
}
.lpl-ka-section-copy p:not(.lpl-ka-eyebrow) {
  font-size: 17px;
  line-height: 1.65;
}
.lpl-ka-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
}
.lpl-ka-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.lpl-ka-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: clamp(62px, 8vw, 92px) max(5vw, 24px);
  background: #f4f7f9;
}
.lpl-ka-steps article,
.lpl-ka-skill-grid article {
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 61, 89, .09);
}
.lpl-ka-steps span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #dc6029;
  color: #fff;
  font-weight: 900;
}
.lpl-ka-steps h2 {
  margin: 18px 0 10px;
  font-size: 25px;
}
.lpl-ka-steps p,
.lpl-ka-skill-grid p {
  margin-bottom: 0;
  line-height: 1.65;
}
.lpl-ka-roadmap {
  text-align: center;
  background: #fff9ef;
}
.lpl-ka-roadmap .lpl-ka-section-copy,
.lpl-ka-skills .lpl-ka-section-copy {
  margin: 0 auto 32px;
  text-align: center;
}
.lpl-ka-levels {
  display: grid;
  grid-template-columns: repeat(12, minmax(48px, 1fr));
  gap: 9px;
  width: min(1100px, 100%);
  margin: 0 auto;
}
.lpl-ka-levels span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid #b9cbd7;
  border-radius: 50%;
  color: #718594;
  background: #fff;
  font-size: 18px;
  font-weight: 850;
}
.lpl-ka-levels .is-current {
  border-color: #dc6029;
  color: #fff;
  background: #dc6029;
  box-shadow: 0 0 0 6px rgba(220, 96, 41, .13);
}
.lpl-ka-skills {
  background: #f4f7f9;
}
.lpl-ka-skill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}
.lpl-ka-skill-grid strong {
  color: #173d59;
  font-size: 21px;
}
.lpl-ka-cta {
  padding: 76px 24px 86px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #173d59, #1677be);
}
.lpl-ka-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 5vw, 50px);
}
.lpl-ka-cta p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}
.lpl-ka-cta .lpl-ka-actions {
  justify-content: center;
}
.lpl-ka-cta .lpl-ka-secondary {
  border-color: #fff;
  color: #fff !important;
}
@media (max-width: 850px) {
  .lpl-ka-hero,
  .lpl-ka-video-section {
    grid-template-columns: 1fr;
  }
  .lpl-ka-hero-copy {
    margin: 0;
  }
  .lpl-ka-hero-art img {
    margin: 0 auto;
  }
  .lpl-ka-steps,
  .lpl-ka-skill-grid {
    grid-template-columns: 1fr;
  }
  .lpl-ka-levels {
    grid-template-columns: repeat(6, minmax(44px, 1fr));
  }
}
@media (max-width: 520px) {
  .lpl-ka-actions a {
    width: 100%;
  }
  .lpl-ka-levels {
    grid-template-columns: repeat(4, minmax(42px, 1fr));
  }
}

/* 2026-09-05 Kids Archive rendered Joomla category layout */
.itemid-103.view-category .container-component {
  padding: 58px clamp(22px, 6vw, 92px) 80px;
  background: #f5f7f9;
}
.itemid-103.view-category .category-list {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.itemid-103.view-category .content-category > h1 {
  margin: 0 auto 38px;
  color: #2b3440;
  font: 700 clamp(34px, 5vw, 52px)/1.12 Lato, Arial, sans-serif;
  text-align: center;
}
.itemid-103.view-category .com-content-category__pagination,
.itemid-103.view-category #categorylist_header_author,
.itemid-103.view-category #categorylist_header_hits,
.itemid-103.view-category .list-author,
.itemid-103.view-category .list-hits {
  display: none !important;
}
.itemid-103.view-category .com-content-category__table {
  overflow: hidden;
  margin: 0 0 48px;
  border: 0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(28, 45, 60, .08);
}
.itemid-103.view-category .com-content-category__table thead {
  background: #183c59;
}
.itemid-103.view-category .com-content-category__table thead a {
  color: #fff !important;
  text-decoration: none;
}
.itemid-103.view-category .com-content-category__table .list-title {
  padding: 15px 20px;
}
.itemid-103.view-category .com-content-category__table .list-title a {
  color: #244f6f;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}
.itemid-103.view-category .cat-children {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.itemid-103.view-category .cat-children > h3 {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: #394653;
  font: 700 25px/1.2 Lato, Arial, sans-serif;
  text-align: center;
}
.itemid-103.view-category .com-content-category__children {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 28px rgba(28, 45, 60, .08);
}
.itemid-103.view-category .com-content-category__children .item-title {
  margin: 0 !important;
  border: 0;
  text-align: center;
}
.itemid-103.view-category .com-content-category__children .item-title a {
  display: block;
  min-height: 78px;
  padding: 25px 18px 21px;
  color: #fff !important;
  font: 700 clamp(20px, 2vw, 27px)/1.2 Lato, Arial, sans-serif;
  text-decoration: none;
}
.itemid-103.view-category .com-content-category__children:nth-of-type(4n+1) .item-title a { background: #17577a; }
.itemid-103.view-category .com-content-category__children:nth-of-type(4n+2) .item-title a { background: #df622d; }
.itemid-103.view-category .com-content-category__children:nth-of-type(4n+3) .item-title a { background: #16847f; }
.itemid-103.view-category .com-content-category__children:nth-of-type(4n) .item-title a { background: #76529c; }
.itemid-103.view-category .com-content-category__children .item-title a:hover {
  filter: brightness(1.08);
}
@media (max-width: 680px) {
  .itemid-103.view-category .container-component {
    padding: 38px 14px 55px;
  }
  .itemid-103.view-category .cat-children {
    grid-template-columns: 1fr;
  }
}

/* Musipedia section indexes are lesson outlines, not walls of embedded videos. */
.lpl-native-course-page .lpl-course-step .com-content-article__body {
  display: none !important;
}
.lpl-native-course-page .lpl-course-step .page-header h2 a {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.lpl-native-course-page .lpl-course-step .page-header h2 a::after {
  content: "Open lesson →";
  flex: 0 0 auto;
  color: #d95724;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .lpl-native-course-page .lpl-course-step .page-header h2 a {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* In-site video player: watch direct YouTube links without leaving Learn Piano Live. */
body.lpl-modal-open { overflow: hidden; }
.lpl-video-modal[hidden] { display: none !important; }
.lpl-video-modal { position: fixed; inset: 0; z-index: 100000; display: grid; place-items: center; padding: 20px; }
.lpl-video-modal-backdrop { position: absolute; inset: 0; background: rgba(7,18,28,.86); backdrop-filter: blur(5px); }
.lpl-video-modal-dialog { position: relative; width: min(1100px,96vw); overflow: hidden; border-radius: 18px; background: #101820; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.lpl-video-modal-bar { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 14px 10px 22px; background: #fff; }
.lpl-video-modal-bar h2 { margin: 0; overflow: hidden; color: #173d59; font-size: clamp(18px,2.5vw,25px); text-overflow: ellipsis; white-space: nowrap; }
.lpl-video-modal-close { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 0; border-radius: 50%; background: #e96731; color: #fff; font-size: 32px; line-height: 1; }
.lpl-video-modal-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.lpl-video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Grouped Student Zone and inline practice lab. */
.lpl-student-zone { padding: 0 0 90px; background: #f3f7f9; }
.lpl-student-zone .lpl-zone-wrap { width: min(1180px,94vw); }
.lpl-zone-header { margin: 0 calc(50% - 50vw) 34px; padding: 34px max(4vw,calc((100vw - 1180px)/2)) 64px; background: linear-gradient(135deg,#173d59,#16777d 72%,#e96731 145%); color: #fff; text-align: center; }
.lpl-rebuild-banner { display: flex; width: min(980px,100%); align-items: center; gap: 16px; margin: 0 auto 30px; padding: 15px 18px; border: 2px solid #ffd071; border-radius: 14px; background: #fff; color: #173d59; box-shadow: 0 10px 28px rgba(0,0,0,.18); text-align: left; }
.lpl-rebuild-banner strong { flex: 0 0 auto; color: #e96731; font-size: 17px; }
.lpl-rebuild-banner span { flex: 1 1 auto; line-height: 1.45; }
.lpl-rebuild-banner a { flex: 0 0 auto; padding: 9px 14px; border-radius: 999px; background: #173d59; color: #fff!important; font-weight: 850; text-decoration: none; }
.lpl-zone-eyebrow { margin: 0 0 10px; color: #ffd071; font-size: 13px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.lpl-student-zone-old .lpl-zone-header h1 { margin-bottom: 16px; color: #fff; text-shadow: 0 3px 18px rgba(0,0,0,.16); }
.lpl-student-zone .lpl-zone-notice { max-width: 820px; margin: 0 auto 24px; color: #fff; font-size: clamp(22px,3vw,34px); }
.lpl-student-zone .lpl-zone-welcome { width: fit-content; margin: 0 auto; padding: 13px 25px; box-shadow: 0 9px 24px rgba(0,0,0,.18); }
.lpl-zone-group { margin-top: 30px; padding: clamp(24px,4vw,42px); border: 1px solid #dfe7eb; border-radius: 22px; background: #fff; box-shadow: 0 14px 38px rgba(17,52,78,.08); }
.lpl-zone-group-heading { display: flex; align-items: center; gap: 17px; margin-bottom: 30px; }
.lpl-zone-group-heading > span { display: grid; width: 56px; height: 56px; flex: 0 0 auto; place-items: center; border-radius: 16px; background: #e96731; color: #fff; font-weight: 900; }
.lpl-zone-group-heading p { margin: 0 0 2px; color: #16847f; font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.lpl-zone-group-heading h2 { margin: 0; color: #173d59; font-size: clamp(25px,3.5vw,38px); }
.lpl-student-zone .lpl-zone-grid { grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 30px 24px; }
.lpl-student-zone .lpl-zone-tile { padding: 20px 16px; border-radius: 16px; background: #f8fafb; transition: transform .18s ease,box-shadow .18s ease; }
.lpl-student-zone .lpl-zone-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(17,52,78,.12); }
.lpl-student-zone .lpl-zone-tile > i { min-height: 72px; font-size: 62px; }
.lpl-student-zone .lpl-zone-tile > strong { min-height: 0; }
.lpl-student-zone .lpl-kids-heading { height: auto; margin: 0 0 30px; padding: 0; background: transparent; text-align: left; }

.lpl-student-zone .lpl-kids-heading > span { display: grid; padding: 0; background: #e96731; color: #fff; font-family: inherit; font-size: inherit; line-height: 1; }
.lpl-practice-lab { background: linear-gradient(180deg,#eef8f8,#fff 280px); }
.lpl-student-zone .lpl-practice-widget-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.lpl-student-zone .lpl-practice-widget { border: 1px solid #dce6e9; box-shadow: 0 10px 28px rgba(17,52,78,.08); }
.lpl-practice-widget h3 { margin: 0 0 8px; color: #173d59; font-size: 25px; }
.lpl-practice-widget input[type="range"] { width: 100%; accent-color: #e96731; }
#lpl-drum-machine output { display: block; margin: 20px 0; color: #173d59; font-size: 42px; font-weight: 850; text-align: center; }
.lpl-zone-mini-grid { margin-top: 28px; }
.lpl-online-piano { margin-top: 28px; padding: clamp(22px,4vw,36px); border-radius: 18px; background: #173d59; color: #fff; box-shadow: 0 15px 34px rgba(17,52,78,.18); }
.lpl-online-piano h3 { margin: 0 0 6px; color: #fff; font-size: 28px; }
.lpl-online-piano p { margin: 0 0 22px; color: #d9eef1; }
.lpl-piano-keys { position: relative; display: flex; width: 100%; height: clamp(150px,25vw,235px); overflow-x: auto; overflow-y: hidden; border: 8px solid #101820; border-radius: 12px; background: #101820; }
.lpl-piano-octave { position: relative; display: flex; min-width: 210px; flex: 0 0 31.818%; }
.lpl-piano-key { appearance: none; cursor: pointer; touch-action: manipulation; }
.lpl-piano-octave .lpl-piano-key.white { position: relative; flex: 1 1 14.285%; border: 1px solid #a7afb4; border-radius: 0 0 8px 8px; background: linear-gradient(#fff,#edf0f2); color: #173d59; z-index: 1; }
.lpl-piano-key.black { position: absolute; top: 0; width: 10%; height: 63%; z-index: 2; border: 1px solid #000; border-radius: 0 0 6px 6px; background: linear-gradient(90deg,#101010,#343434 55%,#060606); color: #fff; box-shadow: 0 5px 8px rgba(0,0,0,.5); }
.lpl-piano-key.c-sharp { left: 9.3%; } .lpl-piano-key.d-sharp { left: 23.6%; } .lpl-piano-key.f-sharp { left: 52.1%; } .lpl-piano-key.g-sharp { left: 66.4%; } .lpl-piano-key.a-sharp { left: 80.7%; }
.lpl-piano-key.white.lpl-piano-last { position: relative; min-width: 30px; flex: 0 0 4.546%; border: 1px solid #a7afb4; border-radius: 0 0 8px 8px; background: linear-gradient(#fff,#edf0f2); color: #173d59; z-index: 1; }
.lpl-piano-key span { position: absolute; right: 0; bottom: 10px; left: 0; overflow: hidden; font-size: clamp(10px,1.5vw,15px); font-weight: 900; text-align: center; }
.lpl-piano-key.is-active,.lpl-piano-key:active { filter: brightness(.78); transform: translateY(2px); }

.lpl-student-zone .lpl-practice-widget-grid { grid-template-columns: repeat(6,minmax(0,1fr)); align-items: stretch; }
.lpl-student-zone #lpl-metronome,
.lpl-student-zone #lpl-drum-machine,
.lpl-student-zone #lpl-practice-timer { grid-column: span 2; }
.lpl-student-zone #lpl-practice-log,
.lpl-student-zone #lpl-song-tracker { grid-column: span 3; }
.lpl-tracker-card { position: relative; overflow: hidden; }
.lpl-tracker-card::before { position: absolute; inset: 0 0 auto; height: 6px; content: ""; background: #16847f; }
#lpl-song-tracker::before { background: #7b61c9; }
.lpl-tracker-kind { margin: 0 0 6px!important; color: #16847f!important; font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
#lpl-song-tracker .lpl-tracker-kind { color: #6c4cad!important; }
.lpl-tracker-sync-status { margin: -12px 0 24px; padding: 12px 16px; border: 1px solid #b7d9cf; border-radius: 10px; background: #eff9f5; color: #1e604e; font-weight: 750; }
.lpl-tracker-sync-status[data-state="saving"] { border-color: #c6d8e5; background: #f1f7fb; color: #285c7f; }
.lpl-tracker-sync-status[data-state="offline"] { border-color: #ead39a; background: #fff9e9; color: #745516; }
.lpl-practice-rewards { border-color: #b9ddd4; background: #f1faf7; }
.lpl-song-rewards { border-color: #d9cfee; background: #f8f5fc; }
.lpl-practice-rewards + .lpl-outline-button { margin-top: 18px; }
.lpl-kids-lesson-piano { margin: 38px 0 10px; }
.lpl-kids-lesson-piano h2 { margin: 0 0 7px; color: #fff; font-size: clamp(26px,4vw,36px); }
.lpl-kids-lesson-piano .lpl-tracker-kind { color: #ffd071!important; }
.lpl-kids-progress-card { margin: 24px 0 10px; padding: clamp(24px,4vw,38px); border: 1px solid #cfe2db; border-radius: 18px; background: linear-gradient(135deg,#f2faf7,#fff); box-shadow: 0 12px 30px rgba(17,52,78,.09); }
.lpl-kids-progress-card > h2 { margin: 0 0 8px; color: #173d59; font-size: clamp(28px,4vw,38px); }
.lpl-kids-progress-intro { margin: 0 0 24px; color: #526879; }
.lpl-kids-progress-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.lpl-kids-progress-action { padding: 22px; border: 1px solid #dce7e3; border-radius: 14px; background: #fff; }
.lpl-kids-progress-action h3 { margin: 0 0 7px; color: #173d59; }
.lpl-kids-progress-action p { min-height: 54px; color: #526879; }
.lpl-kids-progress-action label { display: grid; gap: 7px; margin-bottom: 14px; color: #173d59; font-weight: 800; }
.lpl-kids-progress-action input { width: 100%; padding: 12px 13px; border: 1px solid #b9c9d5; border-radius: 8px; }
.lpl-kids-progress-status { margin: 18px 0 0; color: #1e604e; font-weight: 800; }
.lpl-kids-progress-status[data-state="saving"] { color: #285c7f; }
.lpl-kids-progress-status[data-state="offline"] { color: #9b4b27; }
.lpl-kids-video-invite { margin-top: 22px; padding: 22px; border: 2px solid #f5b041; border-radius: 14px; background: #fff8e5; }
.lpl-kids-video-invite[hidden] { display: none!important; }
.lpl-kids-video-invite h3 { margin: 0 0 6px; color: #173d59; }
.lpl-kids-video-invite p { margin: 0 0 16px; color: #526879; }
@media (max-width: 700px) { .lpl-kids-progress-grid { grid-template-columns: 1fr; } .lpl-kids-progress-action p { min-height: 0; } }
@media (max-width: 900px) {
  .lpl-student-zone .lpl-practice-widget-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .lpl-student-zone #lpl-metronome,
  .lpl-student-zone #lpl-drum-machine,
  .lpl-student-zone #lpl-practice-timer,
  .lpl-student-zone #lpl-practice-log,
  .lpl-student-zone #lpl-song-tracker { grid-column: auto; }
}
@media (max-width: 760px) {
  .lpl-student-zone #lpl-metronome,
  .lpl-student-zone #lpl-drum-machine,
  .lpl-student-zone #lpl-practice-timer,
  .lpl-student-zone #lpl-practice-log,
  .lpl-student-zone #lpl-song-tracker { grid-column: 1 / -1; }
}

/* Shared member-page identity and native Klopol course cards. */
.lpl-student-daughter .container-component { padding-top: 30px; padding-bottom: 70px; background: linear-gradient(180deg,#edf6f7,#fff 300px); }
.lpl-student-context-bar { display: flex; width: min(1160px,94vw); align-items: center; justify-content: space-between; gap: 18px; margin: 0 auto 24px; padding: 13px 18px; border-radius: 12px; background: #173d59; color: #d9eef1; font-size: 13px; font-weight: 800; }
.lpl-student-context-bar a { color: #ffd071; text-decoration: none; }
.lpl-native-course-page .com-content-category.category-list { width: min(1160px,100%); margin: 0 auto; }
.lpl-native-course-page .com-content-category__pagination,.lpl-native-course-page .com-content-category.category-list .alert-info,.lpl-native-course-page .com-content-category.category-list h3:first-of-type { display: none !important; }
.lpl-native-course-page .com-content-category.category-list .cat-children { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.lpl-native-course-page .com-content-category__children.lpl-course-unit { min-height: 100px; padding: 25px 24px 25px 92px; }
.lpl-native-course-page .com-content-category__children.lpl-course-unit h3 { margin: 0; font-size: clamp(21px,2.4vw,29px); }
.lpl-native-course-page .com-content-category__children.lpl-course-unit a { color: #173d59; text-decoration: none; }
.lpl-klopol-course-page .lpl-native-course-header { background: linear-gradient(135deg,#38235a,#7251a4 70%,#e96731 145%); }
.error_site .container-component { padding: clamp(30px,6vw,80px) 18px; background: linear-gradient(180deg,#eef6f7,#fff); }
.lpl-error-card { width: min(820px,100%); margin: 0 auto; padding: clamp(30px,6vw,64px); border-radius: 24px; background: #fff; text-align: center; box-shadow: 0 18px 50px rgba(17,52,78,.14); }
.lpl-error-code { margin: 0 0 8px; color: #e96731; font-size: 14px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.lpl-error-card h1 { margin: 0 0 18px; color: #173d59; font-size: clamp(38px,6vw,62px); }
.lpl-error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.lpl-error-actions a { display: inline-flex; padding: 13px 20px; border-radius: 999px; background: #e96731; color: #fff!important; font-weight: 850; text-decoration: none; }
.lpl-error-actions a:last-child { background: #173d59; }
@media (max-width:760px) { .lpl-student-zone .lpl-practice-widget-grid,.lpl-native-course-page .com-content-category.category-list .cat-children { grid-template-columns: 1fr; } .lpl-student-context-bar { align-items: flex-start; flex-direction: column; } }
@media (max-width:520px) { .lpl-rebuild-banner { align-items: flex-start; flex-direction: column; } .lpl-rebuild-banner a { align-self: stretch; text-align: center; } .lpl-zone-group { padding: 22px 15px; } .lpl-zone-group-heading { align-items: flex-start; } .lpl-piano-keys { height: 155px; border-width: 4px; } .lpl-video-modal { padding: 8px; } }

.lpl-klopol-course-page .cat-children { grid-template-columns: repeat(2,minmax(0,1fr)); }
.lpl-klopol-course-page .cat-children > h3 { display: none !important; }
@media (max-width:760px) { .lpl-klopol-course-page .cat-children { grid-template-columns: 1fr; } }

/* Complete Musipedia lesson outline for multi-lesson sections. */
.lpl-course-outline-ready > .com-content-category-blog__items,
.lpl-course-outline-ready > .com-content-category-blog__children,
.lpl-course-outline-ready > .com-content-category__children,
.lpl-course-outline-ready .com-content-category-blog__counter,
.lpl-course-outline-ready .pagination {
  display: none !important;
}
.lpl-category-course-outline {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #dbe5ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 44, 60, .08);
}
.lpl-category-course-outline h2 {
  margin: 0;
  color: #173d59;
  font: 800 clamp(27px, 4vw, 39px)/1.15 Lato, Arial, sans-serif;
}
.lpl-category-course-outline > p {
  margin: 9px 0 26px;
  color: #5b6c78;
}
.lpl-category-course-outline ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lpl-category-course-outline a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 76px;
  align-items: center;
  padding: 13px 17px 13px 13px;
  border: 1px solid #dce5e9;
  border-radius: 12px;
  background: #f8fbfc;
  color: #173d59;
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.lpl-category-course-outline a:hover {
  transform: translateY(-2px);
  border-color: #e96731;
  box-shadow: 0 9px 22px rgba(23, 61, 89, .1);
}
.lpl-category-course-outline a > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 10px;
  background: #176f7b;
  color: #fff;
  font-weight: 900;
}
.lpl-category-course-outline a > strong {
  line-height: 1.28;
}
.lpl-category-course-outline a > small {
  color: #d95724;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .lpl-category-course-outline ol {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .lpl-category-course-outline a {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .lpl-category-course-outline a > small {
    grid-column: 2;
    white-space: normal;
  }
  .lpl-category-course-outline a > span {
    width: 44px;
    height: 44px;
  }
}

/* Guidance panels for Musipedia and Klopol Academy progression. */
.lpl-guidance-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(1160px, 100%);
  align-items: center;
  margin: 24px auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #bcdde1;
  border-left: 8px solid #176f7b;
  border-radius: 17px;
  background: linear-gradient(135deg, #eef9fa 0%, #fff 100%);
  box-shadow: 0 12px 32px rgba(17, 52, 78, .09);
}
.lpl-guidance-kicker {
  display: block;
  margin-bottom: 7px;
  color: #176f7b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.lpl-guidance-note h2 {
  margin: 0 0 10px;
  color: #173d59;
  font: 800 clamp(25px, 3vw, 36px)/1.15 Lato, Arial, sans-serif;
}
.lpl-guidance-note p {
  margin: 7px 0 0;
  color: #405967;
  line-height: 1.65;
}
.lpl-guidance-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.lpl-guidance-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: #e96731;
  color: #fff !important;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.lpl-guidance-actions a + a { background: #173d59; }
.lpl-guidance-note--level-one-start {
  border-color: #d5c8e6;
  border-left-color: #7251a4;
  background: linear-gradient(135deg, #f5f0fb 0%, #fff 100%);
}
.lpl-guidance-note--level-one-start .lpl-guidance-kicker { color: #7251a4; }
.lpl-guidance-note--level-one-end {
  margin-top: 34px;
  border-color: #c9e4d9;
  border-left-color: #2d8c6f;
  background: linear-gradient(135deg, #edf9f4 0%, #fff 100%);
}
.lpl-guidance-note--level-one-end .lpl-guidance-kicker { color: #2d8c6f; }
.lpl-guidance-note--lesson { margin-top: 34px; }
@media (max-width: 760px) {
  .lpl-guidance-note { grid-template-columns: 1fr; }
  .lpl-guidance-actions { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .lpl-guidance-note { padding: 23px 19px; border-left-width: 5px; }
  .lpl-guidance-actions a { width: 100%; }
}

/* Student Zone: dedicated penguin icon for Meet Klopol. */
.lpl-student-zone .lpl-zone-tile > .lpl-penguin-icon {
  display: flex;
  min-height: 72px;
  max-width: none;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 62px;
  line-height: 1;
  transition: transform .15s ease;
}
.lpl-student-zone .lpl-zone-tile:hover > .lpl-penguin-icon {
  transform: translateY(-3px);
}


/* Members-only Cloudflare livestream and account chat. */
.lpl-live-room {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(300px, .85fr);
  gap: 22px;
  align-items: start;
}
.lpl-stream-card,
.lpl-live-chat-card {
  overflow: hidden;
  border: 1px solid #dce3e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 42, 61, .10);
}
.lpl-stream-card {
  min-width: 0;
}
.lpl-stream-shell {
  position: relative;
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d2a3d;
}
.lpl-stream-shell iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.lpl-stream-fullscreen {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(13, 42, 61, .88);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.lpl-stream-fullscreen:hover,
.lpl-stream-fullscreen:focus-visible {
  background: #ed6630;
}
.lpl-stream-shell:fullscreen {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  background: #000;
}
.lpl-stream-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: #fff;
  text-align: center;
}
.lpl-stream-placeholder span,
.lpl-live-chat-heading span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  color: #ed6630;
}
.lpl-stream-placeholder h2 {
  margin: 7px 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
}
.lpl-stream-placeholder p { margin: 0; color: #d8e4eb; }
.lpl-live-chat-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 18px;
}
.lpl-live-chat-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.lpl-live-chat-heading h2 { margin: 3px 0 0; font-size: 22px; }
.lpl-chat-clear {
  border: 0;
  background: transparent;
  color: #8f2533;
  font-weight: 800;
  text-decoration: underline;
}
.lpl-chat-identity,
.lpl-chat-status { margin: 9px 0; color: #596873; font-size: 13px; }
.lpl-chat-messages {
  min-height: 220px;
  max-height: 390px;
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid #e1e7eb;
  border-radius: 12px;
  background: #f7f9fa;
  overscroll-behavior: contain;
}
.lpl-chat-empty { margin: 35px 10px; color: #71808a; text-align: center; }
.lpl-chat-message {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(13, 42, 61, .06);
}
.lpl-chat-message.is-mine { background: #edf6fb; }
.lpl-chat-message > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #173d59;
  font-size: 12px;
}
.lpl-chat-message time { color: #74838d; }
.lpl-chat-message p { margin: 4px 0 0; overflow-wrap: anywhere; }
.lpl-chat-form { margin-top: 12px; }
.lpl-chat-form textarea {
  width: 100%;
  min-height: 78px;
  resize: vertical;
  padding: 10px 12px;
  border: 1px solid #bcc8cf;
  border-radius: 10px;
}
.lpl-chat-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.lpl-chat-form-footer span { color: #71808a; font-size: 12px; }
.lpl-chat-form-footer .lpl-big-button { min-height: 40px; padding: 8px 20px; }
.lpl-chat-status[data-state="connected"] { color: #237052; }
.lpl-chat-status[data-state="error"] { color: #9f2734; }
.lpl-live-member { background: #ed6630; }
@media (max-width: 900px) {
  .lpl-live-room { grid-template-columns: 1fr; }
  .lpl-stream-shell { min-height: 0; }
  .lpl-live-chat-card { min-height: 500px; }
}
@media (max-width: 520px) {
  .lpl-live-room { gap: 14px; }
  .lpl-live-chat-card { min-height: 460px; padding: 14px; }
  .lpl-chat-messages { min-height: 200px; }
}

.lpl-tracker-sync-status[data-state="saved"] { display: none; }

.lpl-student-live-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 22px;
  padding: 15px 18px;
  border: 1px solid #f0b099;
  border-radius: 13px;
  background: #fff7f2;
  box-shadow: 0 5px 18px rgba(104, 42, 17, .08);
}
.lpl-student-live-countdown[hidden] { display: none; }
.lpl-student-live-countdown > div { min-width: 0; }
.lpl-student-live-kicker {
  display: block;
  color: #b84118;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.lpl-student-live-time {
  display: block;
  margin: 2px 0;
  color: #312016;
  font-size: clamp(20px, 3vw, 29px);
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.lpl-student-live-label {
  display: block;
  overflow: hidden;
  color: #6f5446;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lpl-student-live-countdown a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 8px;
  background: #d85420;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.lpl-student-live-countdown.is-live { border-color: #d85420; background: #fff0e8; }
@media (max-width: 560px) {
  .lpl-student-live-countdown { align-items: flex-start; flex-direction: column; gap: 10px; }
  .lpl-student-live-label { white-space: normal; }
}
