/*
Theme Name: GLNeuro Classic
Theme URI: https://glneuro.sclcircle.com/
Author: OpenAI Codex
Description: Custom classic WordPress theme for Goldberg & LaRosa Psychology Associates.
Version: 1.0.0
Text Domain: glneuro-classic
*/

:root {
  --color-ink: #132e44;
  --color-ink-deep: #0d2234;
  --color-ink-soft: #36566d;
  --color-gold: #C9A227;
  --color-gold-soft: #C9A227;
  --color-wine: #941a39;
  --color-cream: #f5efe6;
  --color-paper: #fcfaf7;
  --color-line: rgba(19, 46, 68, 0.14);
  --color-shadow: rgba(16, 31, 46, 0.12);
  --font-heading: "Manrope", "Helvetica Neue", sans-serif;
  --font-body: "Figtree", "Helvetica Neue", sans-serif;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: min(1120px, calc(100vw - 2.5rem));
  --content: min(860px, calc(100vw - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.2rem;
  color: #f4efe7;
  background: #132e44;
  line-height: 1.5;
}

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

a {
  color: #fff;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-gold);
}

p,
ul,
ol,
blockquote {
  margin: 0 0 1.1rem;
}

ul,
ol {
  padding-left: 1.3rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--color-gold);
}

h1 {
  font-size: 1em;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 2.35rem);
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(19, 46, 68, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__bar {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
  flex-wrap: wrap;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.site-brand img {
  width: auto;
  max-height: 72px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1 1 620px;
  justify-content: flex-end;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation > ul > li {
  padding-bottom: 0.35rem;
  margin-bottom: -0.35rem;
}

.main-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
  background: rgba(255, 255, 255, 0.12);
}

.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children:focus-within > .sub-menu {
  display: grid;
}

.main-navigation .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 16rem;
  padding: 0.45rem;
  background: rgba(19, 46, 68, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(17, 30, 44, 0.13);
}

.main-navigation .sub-menu a {
  border-radius: 0.75rem;
  width: 100%;
}

.header-account-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.header-account-links .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

.header-account-links .nav-account,
.header-account-links .nav-login {
  background: var(--tutor-color-primary, #3e64de);
}

.header-account-links .nav-account:hover,
.header-account-links .nav-account:focus,
.header-account-links .nav-login:hover,
.header-account-links .nav-login:focus {
  background: var(--tutor-color-primary-hover, #2548b8);
  color: #fff;
  transform: translateY(-1px);
}

.site-main {
  flex: 1;
}

.page-hero,
.archive-hero {
  padding: clamp(4rem, 10vw, 7rem) 0 2rem;
}

.page-hero__inner,
.archive-hero__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.page-hero__eyebrow,
.archive-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-hero__eyebrow::before,
.archive-hero__eyebrow::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: currentColor;
}

.page-hero__summary,
.archive-hero__summary {
  max-width: 48rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-content,
.entry-content,
.entry-summary {
  width: var(--content);
  margin: 0 auto;
}

.page-content {
  padding-bottom: 5rem;
}

.content-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px var(--color-shadow);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2vw, 2rem);
}

.entry-content > * + * {
  margin-top: 1rem;
}

.entry-content hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-line), transparent);
  margin: 2rem 0;
}

.entry-content blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: 1rem;
  color: var(--color-ink-soft);
  font-style: italic;
}

.entry-content .wp-block-image,
.entry-content figure {
  margin: 1.5rem 0;
}

.entry-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.course-video-list {
  margin: 2rem auto;
}

.course-video-block {
  margin-bottom: 2.5rem;
}

.course-video-block h3 {
  margin-bottom: 0.75rem;
}

.course-video-block .plyr {
  border-radius: 14px;
  overflow: hidden;
}

.course-video-block video {
  width: 100%;
  display: block;
}

.course-video-block .plyr__video-wrapper {
  background: #132e44;
}

.entry-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--color-gold), #d5ba34);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(187, 162, 5, 0.2);
}

.entry-content .wp-block-button__link:hover {
  background: #E0BC4A;
  color: #111;
  transform: translateY(-1px);
}

.site-footer {
  background: linear-gradient(180deg, rgba(8, 22, 33, 0.98), rgba(5, 15, 23, 1));
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__shell {
  width: var(--container);
  margin: 0 auto;
  padding: 2.6rem 0 1.8rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.site-footer__brand img {
  width: 100%;
  height: auto;
}

.site-footer__eyebrow,
.site-footer__label {
  margin: 0 0 0.4rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.site-footer__summary {
  margin: 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer__columns section {
  min-width: 0;
}

.site-footer__brand-col {
  display: grid;
  gap: 1rem;
  justify-items: start;
  align-content: start;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: 1.55rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer__value {
  display: inline-block;
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

.site-footer__meta {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.site-footer__meta-left,
.site-footer__meta-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.site-footer__meta-right {
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}

.site-footer__meta a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__meta a:hover,
.site-footer__meta a:focus {
  color: var(--color-gold);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.posts-grid {
  margin: 0 0 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.post-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 18px 42px var(--color-shadow);
  overflow-wrap: anywhere;
}

.post-card__meta {
  color: var(--color-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.post-card h2 {
  font-size: 2rem;
  margin-top: 0.7rem;
}

.post-card .entry-summary {
  width: 100%;
  margin: 0;
}

.pagination {
  width: var(--container);
  margin: 0 auto 5rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.85rem;
  min-height: 2.85rem;
  border-radius: 999px;
  background: rgba(19, 46, 68, 0.08);
  color: var(--color-ink);
  font-weight: 700;
}

.pagination .current {
  background: var(--color-ink);
  color: #fff;
}

.entry-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.not-found {
  width: var(--content);
  margin: 0 auto 5rem;
  text-align: center;
}

.not-found form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

input[type="search"],
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(19, 46, 68, 0.15);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--color-ink);
}

button,
input[type="submit"] {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font: inherit;
  font-weight: 800;
  background: var(--color-ink);
  color: #fff;
  cursor: pointer;
}

.gln-home .entry-content,
.gln-home .page-content {
  width: 100%;
}

.gln-home .content-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.home-section {
  width: var(--container);
  margin: 0 auto;
}

.home-hero,
.home-contact {
  padding: 3rem 0;
}

.home-block {
  padding: 3rem 0;
}

.home-contact {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-hero__grid,
.home-grid-two,
.home-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.home-hero__grid {
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
}

.home-kicker {
  margin: 0 0 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.home-display {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 3.5rem;
  line-height: 0.98;
}

.home-lead {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--color-gold);
  color: #132e44;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

.home-button:hover,
.home-button:focus {
  color: #132e44;
  background: #E0BC4A;
  box-shadow: 0 16px 30px rgba(153, 131, 2, 0.28);
  transform: translateY(-1px);
}

.home-button--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-button--ghost:hover,
.home-button--ghost:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.home-hero__media {
  display: grid;
  gap: 1rem;
}

.home-hero__portrait {
  margin: 0;
}

.home-hero__portrait figcaption {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.home-hero__media img {
  width: 100%;
  min-height: 15rem;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.home-band {
  padding: 1.5rem 0;
  background: #0D2A3D;
  border-top: 1px solid rgba(153, 131, 2, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-band__grid,
.home-cards,
.home-doctors,
.home-testimonials {
  display: grid;
  gap: 1.2rem;
}

.home-band__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-band__grid > div {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-band strong,
.home-heading h2,
.home-copy h2,
.home-contact h2 {
  color: #fff;
}

.home-band strong {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--color-gold);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.home-band p,
.home-heading p,
.home-copy p,
.home-contact p {
  color: rgba(255, 255, 255, 0.8);
}

.home-hero__content .home-kicker,
.home-heading .home-kicker,
.home-copy .home-kicker,
.home-contact .home-kicker {
  color: var(--color-gold);
}

.home-block--alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-heading {
  margin-bottom: 1.8rem;
}

.home-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-card,
.home-doctor,
.home-testimonial,
.home-copy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.home-card,
.home-copy,
.home-testimonial {
  padding: 1.5rem;
}

.home-card {
  display: flex;
  flex-direction: column;
}

.home-grid-two {
  align-items: stretch;
}

.home-copy {
  height: 100%;
}

.home-card h3,
.home-doctor h3 {
  color: var(--color-gold);
}

.home-card p,
.home-card a,
.home-doctor p,
.home-copy li,
.home-copy span,
.home-testimonial p,
.home-testimonial cite {
  color: rgba(255, 255, 255, 0.82);
}

.home-card .home-button,
.home-card .home-button:hover,
.home-card .home-button:focus {
  color: #132e44;
}

.home-card .home-button {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  align-self: flex-start;
  margin-top: auto;
}

.home-card p {
  flex: 1 1 auto;
}

.home-card a,
.home-doctor a,
.home-link-arrow {
  color: var(--color-gold);
  font-weight: 700;
}

.home-list,
.home-steps {
  margin: 0;
  padding-left: 1.25rem;
}

.home-list li + li,
.home-steps li + li {
  margin-top: 0.85rem;
}

.home-steps li span {
  display: block;
  margin-top: 0.2rem;
}

.home-doctors {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-doctor {
  overflow: hidden;
  height: 100%;
}

.home-doctor img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-doctor__body {
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  justify-items: start;
}

.home-doctor .home-button {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: #132e44;
  align-self: start;
}

.home-doctor .home-button:hover,
.home-doctor .home-button:focus {
  color: #132e44;
}

.home-testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-testimonial {
  margin: 0;
}

.home-testimonial cite {
  display: inline-block;
  margin-top: 0.85rem;
  font-style: normal;
  font-weight: 800;
  color: var(--color-gold);
}

.home-contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(153, 131, 2, 0.22), transparent 18rem),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.home-contact__panel--inline {
  margin-top: 1.5rem;
}

.home-contact__intro {
  max-width: 42rem;
}

.home-contact__details {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.5rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-contact__stack,
.home-contact__meta {
  display: grid;
  gap: 0.6rem;
}

.home-contact__link {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.home-contact__link:hover,
.home-contact__link:focus {
  color: var(--color-gold);
}

.home-contact__meta span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.about-intro {
  max-width: 56rem;
}

.page-intro h1,
.about-intro h1 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 3.5rem;
  line-height: 1;
}

.about-clinicians {
  display: grid;
  gap: 1.25rem;
}

.about-clinician {
  align-items: stretch;
}

.about-clinician__copy {
  display: grid;
  gap: 0.9rem;
}

.about-clinician__copy h2 {
  margin-bottom: 0;
}

.about-clinician__media {
  margin: 0;
}

.about-clinician__media img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ceu-intro {
  max-width: none;
}

.ceu-intro__subtitle {
  margin-bottom: 0;
  color: var(--color-gold);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.2;
}

.ceu-mark {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 15rem);
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ceu-mark p {
  margin: 0;
}

.ceu-mark img {
  width: 100%;
  max-width: 13rem;
  justify-self: end;
}

.ceu-copy {
  margin-top: 2rem;
}

.ceu-copy ul {
  margin-bottom: 1.3rem;
}

.ceu-section-heading {
  margin-bottom: 1.8rem;
}

.ceu-faculty-cards,
.ceu-program-grid {
  align-items: stretch;
}

.ceu-faculty-card {
  height: 100%;
}

.ceu-faculty-card .home-doctor__body {
  gap: 0.8rem;
}

.ceu-faculty__role {
  margin: 0;
  color: var(--color-gold);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ceu-ace-cards {
  display: grid;
  gap: 1.5rem;
}

.ceu-ace-card {
  width: 100%;
}

.ceu-ace-card--statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem);
  gap: 1.5rem;
  align-items: center;
}

.ceu-ace-logo-wrap {
  display: grid;
  justify-items: center;
}

.ceu-ace-logo {
  width: min(18rem, 100%);
  height: auto;
}

.ceu-price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1;
  color: #fff;
}

.ceu-enrollment-gap {
  height: 1rem;
}

.page-intro .entry-content,
.services-copy.entry-content {
  width: 100%;
  margin: 0;
}

.page-intro h2,
.page-intro h3,
.services-copy h2,
.services-copy h3 {
  color: var(--color-gold);
}

.page-id-19 .services-copy a {
  color: var(--color-gold);
}

.page-id-19 .services-copy a:hover,
.page-id-19 .services-copy a:focus {
  color: var(--color-gold-soft);
}

.page-intro h2,
.services-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.55rem);
}

.page-intro h3,
.services-copy h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
}

.page-intro .entry-content > * + *,
.services-copy > * + * {
  margin-top: 1rem;
}

.menu-toggle {
  display: none;
}

@media (max-width: 960px) {
  .site-header__bar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(19, 46, 68, 0.08);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    min-width: 2.9rem;
    min-height: 2.9rem;
  }

  .site-header__nav {
    grid-column: 1 / -1;
    display: none;
    padding-top: 0.4rem;
  }

  .site-header.is-open .site-header__nav {
    display: block;
  }

  .main-navigation {
    display: block;
  }

  .main-navigation ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .main-navigation .sub-menu {
    position: static;
    min-width: 0;
    display: grid;
    padding: 0.2rem 0 0.2rem 0.9rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    grid-template-columns: 1fr;
  }

  .main-navigation a {
    min-height: 2.35rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
  }

  .header-account-links {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-hero__grid,
  .home-grid-two,
  .home-band__grid,
  .home-cards,
  .home-doctors,
  .home-testimonials {
    grid-template-columns: 1fr;
  }

  .home-contact__panel {
    grid-template-columns: 1fr;
  }

  .ceu-mark,
  .ceu-ace-card--statement {
    grid-template-columns: 1fr;
  }

  .ceu-mark img {
    justify-self: start;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .archive-hero {
    padding-top: 3rem;
  }

  .site-header__bar {
    gap: 0.8rem;
  }

  .site-brand img {
    max-height: 56px;
  }

  .site-header__nav {
    padding-top: 0;
  }

  .main-navigation ul {
    grid-template-columns: 1fr;
  }

  .header-account-links {
    align-items: stretch;
    flex-direction: column;
  }

  .header-account-links .nav-link {
    width: 100%;
  }

  .main-navigation a {
    font-size: 0.88rem;
  }

  .page-intro h1,
  .about-intro h1 {
    font-size: clamp(2.35rem, 12vw, 3.05rem);
    line-height: 1.04;
  }

  .home-hero,
  .home-block,
  .home-contact {
    padding: 3rem 0;
  }

  .not-found form {
    grid-template-columns: 1fr;
  }
}

/* Theme My Login pages */
.tml-action-login .page-intro > h1,
.tml-action-lostpassword .page-intro > h1,
.tml-action-resetpass .page-intro > h1 {
  text-align: center;
}

.tml-action-login .entry-content > .tml,
.tml-action-lostpassword .entry-content > .tml,
.tml-action-resetpass .entry-content > .tml {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.tml-action-login .tml .tml-label,
.tml-action-lostpassword .tml .tml-label,
.tml-action-resetpass .tml .tml-label {
  margin: 0 0 0.45rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.tml-action-login .tml input[type="text"],
.tml-action-login .tml input[type="password"],
.tml-action-lostpassword .tml input[type="text"],
.tml-action-resetpass .tml input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.tml-action-login .tml input[type="text"]:focus,
.tml-action-login .tml input[type="password"]:focus,
.tml-action-lostpassword .tml input[type="text"]:focus,
.tml-action-resetpass .tml input[type="password"]:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.tml-action-login .tml .tml-rememberme-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.tml-action-login .tml .tml-checkbox {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  accent-color: var(--color-gold);
}

.tml-action-login .tml .tml-checkbox + .tml-label {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
}

.tml-action-login .tml button[type="submit"],
.tml-action-lostpassword .tml button[type="submit"],
.tml-action-resetpass .tml button[type="submit"] {
  width: 100%;
  min-height: 52px;
  background: var(--color-gold);
  color: var(--color-ink);
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.tml-action-login .tml button[type="submit"]:hover,
.tml-action-login .tml button[type="submit"]:focus,
.tml-action-lostpassword .tml button[type="submit"]:hover,
.tml-action-lostpassword .tml button[type="submit"]:focus,
.tml-action-resetpass .tml button[type="submit"]:hover,
.tml-action-resetpass .tml button[type="submit"]:focus {
  background: #E0BC4A;
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(153, 131, 2, 0.28);
  transform: translateY(-1px);
}

.tml-action-login .tml .tml-links,
.tml-action-lostpassword .tml .tml-links,
.tml-action-resetpass .tml .tml-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.tml-action-login .tml a,
.tml-action-lostpassword .tml a,
.tml-action-resetpass .tml a {
  color: var(--color-gold);
  font-weight: 700;
}

.tml-action-login .tml a:hover,
.tml-action-login .tml a:focus,
.tml-action-lostpassword .tml a:hover,
.tml-action-lostpassword .tml a:focus,
.tml-action-resetpass .tml a:hover,
.tml-action-resetpass .tml a:focus {
  color: #E0BC4A;
}

.tml-action-login .tml .tml-error,
.tml-action-login .tml .tml-message,
.tml-action-login .tml .tml-success,
.tml-action-lostpassword .tml .tml-error,
.tml-action-lostpassword .tml .tml-message,
.tml-action-lostpassword .tml .tml-success,
.tml-action-resetpass .tml .tml-error,
.tml-action-resetpass .tml .tml-message,
.tml-action-resetpass .tml .tml-success {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-gold);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: #fff;
}

.tml-action-login .tml .tml-error,
.tml-action-lostpassword .tml .tml-error,
.tml-action-resetpass .tml .tml-error {
  border-left-color: #ef7777;
}

.tml-action-resetpass .tml .description,
.tml-action-resetpass .tml .tml-description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.tml-action-resetpass .tml #pass-strength-result {
  border-radius: 0.65rem;
}

/* Tutor LMS course pages */
.tutor-cart-page {
  padding: 30px;
}

.tutor-cart-page .tutor-cart-course-list,
.tutor-cart-page .tutor-cart-summery {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.tutor-cart-page h3,
.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-title a {
  color: var(--color-gold);
}

.tutor-cart-page .tutor-cart-course-item,
.tutor-cart-page .tutor-cart-course-price,
.tutor-cart-page .tutor-cart-summery-item,
.tutor-cart-page .tutor-color-black {
  color: #fff;
}

.tutor-cart-page .tutor-cart-course-item,
.tutor-cart-page .tutor-cart-summery-top {
  border-color: rgba(255, 255, 255, 0.08);
}

.tutor-cart-page .tutor-cart-remove-button {
  color: var(--color-gold);
}

.tutor-checkout-page .tutor-checkout-details .tutor-checkout-details-inner,
.tutor-checkout-page .tutor-checkout-billing-inner,
.tutor-checkout-page .tutor-checkout-payment-options {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.tutor-checkout-page .tutor-checkout-billing-inner {
  padding: 1.5rem;
}

.tutor-checkout-page .tutor-checkout-payment-options {
  overflow: hidden;
  box-shadow: none;
}

.tutor-checkout-page .tutor-checkout-details-inner,
.tutor-checkout-page .tutor-checkout-detail-item,
.tutor-checkout-page .tutor-checkout-course-item,
.tutor-checkout-page .tutor-checkout-summary-item,
.tutor-checkout-page .tutor-checkout-billing-inner,
.tutor-checkout-page .tutor-checkout-payment-options .tutor-checkout-payment-item,
.tutor-checkout-page .tutor-checkout-payment-options .tutor-payment-item-content,
.tutor-checkout-page .tutor-color-black {
  color: #fff;
}

.tutor-checkout-page h5,
.tutor-checkout-page .tutor-checkout-course-title a {
  color: var(--color-gold);
}

.tutor-checkout-page .tutor-checkout-details-inner,
.tutor-checkout-page .tutor-checkout-detail-item,
.tutor-checkout-page .tutor-checkout-payment-item {
  border-color: rgba(255, 255, 255, 0.08);
}

.tutor-checkout-page .tutor-checkout-payment-options .tutor-checkout-payment-item {
  background: transparent;
}

.tutor-checkout-page .tutor-checkout-payment-options .tutor-checkout-payment-item.active {
  background: rgba(201, 162, 39, 0.14);
  box-shadow: inset 0 0 0 1px var(--color-gold);
}

.tutor-checkout-page .tutor-checkout-billing .tutor-form-control,
.tutor-checkout-page .tutor-apply-coupon-form {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tutor-checkout-page .tutor-checkout-billing .tutor-form-control::placeholder,
.tutor-checkout-page .tutor-apply-coupon-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.tutor-checkout-page .tutor-checkout-billing .tutor-form-control option {
  background: var(--color-ink-deep);
  color: #fff;
}

.gln-tutor-retrieve-password .site-main {
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
}

.gln-tutor-retrieve-password .tutor-forgot-password-form,
.gln-tutor-retrieve-password .tutor-reset-password-form {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.gln-tutor-retrieve-password .tutor-forgot-password-form p,
.gln-tutor-retrieve-password .tutor-reset-password-form p,
.gln-tutor-retrieve-password .tutor-forgot-password-form label,
.gln-tutor-retrieve-password .tutor-reset-password-form label {
  color: #fff;
}

.gln-tutor-retrieve-password .tutor-forgot-password-form > p:first-of-type,
.gln-tutor-retrieve-password .tutor-reset-password-form > p:first-of-type {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.gln-tutor-retrieve-password .tutor-forgot-password-form input[type="text"],
.gln-tutor-retrieve-password .tutor-reset-password-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gln-tutor-retrieve-password .tutor-forgot-password-form input[type="text"]:focus,
.gln-tutor-retrieve-password .tutor-reset-password-form input[type="password"]:focus {
  border-color: var(--tutor-color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--tutor-color-primary-rgb), 0.18);
}

.gln-tutor-retrieve-password .tutor-forgot-password-form .tutor-btn-primary,
.gln-tutor-retrieve-password .tutor-reset-password-form .tutor-btn-primary {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}

.gln-tutor-student-registration #tutor-registration-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.gln-tutor-student-registration .page-intro h1 {
  margin-bottom: 2rem;
}

.gln-tutor-student-registration #tutor-registration-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.gln-tutor-student-registration #tutor-registration-form label,
.gln-tutor-student-registration #tutor-registration-form .tutor-color-muted {
  color: #fff;
}

.gln-tutor-student-registration #tutor-registration-form input[type="text"],
.gln-tutor-student-registration #tutor-registration-form input[type="email"],
.gln-tutor-student-registration #tutor-registration-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gln-tutor-student-registration #tutor-registration-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.gln-tutor-student-registration #tutor-registration-form input[type="text"]:focus,
.gln-tutor-student-registration #tutor-registration-form input[type="email"]:focus,
.gln-tutor-student-registration #tutor-registration-form input[type="password"]:focus {
  border-color: var(--tutor-color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--tutor-color-primary-rgb), 0.18);
}

.gln-tutor-student-registration #tutor-registration-form a {
  color: var(--color-gold);
}

.gln-tutor-student-registration #tutor-registration-form .tutor-btn-primary {
  min-height: 52px;
  justify-content: center;
}

.gln-tutor-student-registration #tutor-registration-form .tutor-alert {
  color: var(--color-ink);
}

.tutor-dashboard {
  color: #fff;
}

.tutor-dashboard .tutor-frontend-dashboard-header::after {
  display: none;
}

.tutor-dashboard .tutor-dashboard-content {
  padding-top: 0;
}

.tutor-dashboard .tutor-dashboard-header-display-name,
.tutor-dashboard .tutor-dashboard-header-username,
.tutor-dashboard .tutor-dashboard-title,
.tutor-dashboard .tutor-color-black {
  color: #fff;
}

.tutor-dashboard .tutor-dashboard-title,
.tutor-dashboard .tutor-dashboard-content h2,
.tutor-dashboard .tutor-dashboard-content h3,
.tutor-dashboard .tutor-dashboard-content h4,
.tutor-dashboard .tutor-dashboard-content h5,
.tutor-dashboard .tutor-dashboard-content h6 {
  color: var(--color-gold);
}

.tutor-dashboard .tutor-color-secondary,
body:not(.wp-admin) .tutor-color-secondary {
  color: #fff;
}

.tutor-dashboard .tutor-color-muted,
.tutor-dashboard .tutor-color-subdued {
  color: rgba(255, 255, 255, 0.68);
}

.tutor-dashboard .tutor-dashboard-permalinks,
.tutor-dashboard .tutor-card:not(.tutor-no-border),
.tutor-dashboard .tutor-table-responsive {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.tutor-dashboard .tutor-dashboard-permalinks {
  padding: 0.75rem;
  overflow: hidden;
}

.tutor-dashboard .tutor-frontend-dashboard-maincontent .tutor-dashboard-permalinks::before {
  display: none;
}

.tutor-dashboard .tutor-dashboard-menu-item-link {
  border-radius: 0.75rem;
  color: #fff;
}

.tutor-dashboard .tutor-dashboard-menu-item-link:hover,
.tutor-dashboard .tutor-dashboard-menu-item.active .tutor-dashboard-menu-item-link {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-gold);
}

.tutor-dashboard .tutor-card-body,
.tutor-dashboard .tutor-card-footer {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tutor-dashboard .tutor-dashboard-content .tutor-card.tutor-course-card .tutor-card-body,
.tutor-dashboard .tutor-dashboard-content .tutor-card.tutor-course-card .tutor-card-footer {
  background: transparent !important;
  background-color: transparent !important;
}

.tutor-dashboard .tutor-dashboard-content .tutor-card.tutor-course-card {
  background: rgba(255, 255, 255, 0.05) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.tutor-dashboard .tutor-dashboard-content-inner.enrolled-courses .tutor-course-card .tutor-ratings {
  display: none;
}

.tutor-dashboard .tutor-frontend-dashboard-course-progress .tutor-ratings {
  display: none;
}

.tutor-dashboard .tutor-dashboard-content a:not(.tutor-btn),
.tutor-dashboard .tutor-card a:not(.tutor-btn) {
  color: var(--color-gold);
}

.tutor-dashboard .tutor-round-box {
  background: rgba(201, 162, 39, 0.14);
  color: var(--color-gold);
}

body:not(.wp-admin) .tooltip-wrap .tooltip-txt {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #132e44 !important;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

body:not(.wp-admin) .tooltip-wrap .tooltip-top::after {
  border-top-color: #132e44 !important;
}

body:not(.wp-admin) .tooltip-wrap .tooltip-bottom::after {
  border-bottom-color: #132e44 !important;
}

body:not(.wp-admin) .tooltip-wrap .tooltip-right::after {
  border-right-color: #132e44 !important;
}

body:not(.wp-admin) .tooltip-wrap .tooltip-left::after {
  border-left-color: #132e44 !important;
}

.tutor-dashboard .tutor-table {
  background: transparent;
  color: #fff;
}

.tutor-dashboard .tutor-table th,
.tutor-dashboard .tutor-table td,
.tutor-dashboard .tutor-table tr {
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tutor-dashboard .tutor-table th {
  background: rgba(255, 255, 255, 0.05);
}

/* Tutor order history */
.tutor-dashboard .tutor-purchase-history > .tutor-fs-5 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
}

.tutor-dashboard .tutor-purchase-history .tutor-table-responsive {
  overflow-x: auto;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.12), transparent 20rem),
    rgba(255, 255, 255, 0.05);
}

.tutor-dashboard .tutor-purchase-history .tutor-table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: transparent !important;
}

.tutor-dashboard .tutor-purchase-history .tutor-table thead,
.tutor-dashboard .tutor-purchase-history .tutor-table tbody,
.tutor-dashboard .tutor-purchase-history .tutor-table tr {
  background: transparent !important;
}

.tutor-dashboard .tutor-purchase-history .tutor-table th {
  padding: 1rem 1.1rem;
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-gold) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tutor-dashboard .tutor-purchase-history .tutor-table td {
  padding: 1rem 1.1rem;
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  color: #fff !important;
  font-family: var(--font-body);
  vertical-align: middle;
}

.tutor-dashboard .tutor-purchase-history .tutor-table tbody tr:last-child td {
  border-bottom: 0;
}

.tutor-dashboard .tutor-purchase-history .tutor-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.07) !important;
}

.tutor-dashboard .tutor-purchase-history .tutor-table td li {
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  list-style: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tutor-dashboard .tutor-purchase-history .tutor-table td:first-child > div,
.tutor-dashboard .tutor-purchase-history .tutor-table td:first-child > div > div {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tutor-dashboard .tutor-purchase-history .tutor-table th:first-child,
.tutor-dashboard .tutor-purchase-history .tutor-table td:first-child {
  width: 34%;
  max-width: 18rem;
  overflow: hidden;
}

.tutor-dashboard .tutor-purchase-history .gln-order-table-native th:nth-child(2),
.tutor-dashboard .tutor-purchase-history .gln-order-table-native td:nth-child(2) {
  width: 22%;
}

.tutor-dashboard .tutor-purchase-history .gln-order-table-native td:nth-child(2) .tutor-text-nowrap {
  white-space: normal;
}

.tutor-dashboard .tutor-purchase-history .gln-order-table-native th:nth-child(3),
.tutor-dashboard .tutor-purchase-history .gln-order-table-native td:nth-child(3) {
  width: 12%;
}

.tutor-dashboard .tutor-purchase-history .gln-order-table-native th:nth-child(4),
.tutor-dashboard .tutor-purchase-history .gln-order-table-native td:nth-child(4) {
  width: 12%;
}

.tutor-dashboard .tutor-purchase-history .gln-order-table-native th:nth-child(5),
.tutor-dashboard .tutor-purchase-history .gln-order-table-native td:nth-child(5) {
  width: 10%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.tutor-dashboard .tutor-purchase-history .tutor-table th:last-child,
.tutor-dashboard .tutor-purchase-history .tutor-table td:last-child {
  width: 10%;
  min-width: 7.5rem;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  white-space: nowrap;
}

.tutor-dashboard .tutor-purchase-history .tutor-table td:last-child > .tutor-d-flex,
.tutor-dashboard .tutor-purchase-history .tutor-order-history-actions {
  flex-wrap: nowrap;
  justify-content: flex-end;
  white-space: nowrap;
}

.tutor-dashboard .tutor-purchase-history .tutor-badge-label {
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
}

.tutor-dashboard .tutor-purchase-history .tutor-iconic-btn-secondary,
.tutor-dashboard .tutor-purchase-history .tutor-btn-outline-primary {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.1);
  color: var(--color-gold);
}

.tutor-dashboard .tutor-purchase-history .tutor-iconic-btn-secondary:hover,
.tutor-dashboard .tutor-purchase-history .tutor-iconic-btn-secondary:focus,
.tutor-dashboard .tutor-purchase-history .tutor-btn-outline-primary:hover,
.tutor-dashboard .tutor-purchase-history .tutor-btn-outline-primary:focus {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-ink);
}

.tutor-dashboard .tutor-dashboard-list-table:has(.tutor-table-quiz-attempts) {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts {
  --tutor-table-border-radius: 1.5rem;
  width: 100%;
  min-width: 0 !important;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 1.5rem !important;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16) !important;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts thead,
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts tbody,
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts tr {
  background: transparent !important;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts th {
  padding: 0.9rem 0.85rem;
  border-top: 0 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-gold) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts td {
  padding: 0.9rem 0.85rem;
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  color: #fff !important;
  font-family: var(--font-body);
  vertical-align: middle;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts th:first-child,
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts td:first-child {
  border-left: 0 !important;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts th:last-child,
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts td:last-child {
  border-right: 0 !important;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts tbody tr:last-child td {
  border-bottom: 0 !important;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts tbody tr:hover td {
  background: rgba(255, 255, 255, 0.07) !important;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts a:not(.tutor-btn),
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts .tutor-color-black,
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts .tutor-color-secondary,
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts .tutor-color-muted,
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts .tutor-fs-7 {
  color: #fff !important;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts td:first-child .tutor-fs-7.tutor-mt-8 {
  display: none;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts .tutor-btn-tertiary {
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
}

.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts .tutor-btn-tertiary:hover,
.tutor-dashboard .tutor-dashboard-list-table .tutor-table-quiz-attempts .tutor-btn-tertiary:focus {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
}

@media (max-width: 767px) {
  .tutor-dashboard .tutor-table-mobile.tutor-dashboard-list-table .tutor-table-quiz-attempts tr {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.04) !important;
  }

  .tutor-dashboard .tutor-table-mobile.tutor-dashboard-list-table .tutor-table-quiz-attempts td::before {
    color: var(--color-gold);
  }
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-table-responsive {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details {
  --tutor-table-border-radius: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0 !important;
  margin: 0 0 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 1.5rem !important;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16) !important;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details thead,
.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details tbody,
.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details tr {
  background: transparent !important;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details th {
  padding: 0.9rem 0.85rem;
  border-top: 0 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-gold) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details td {
  padding: 0.9rem 0.85rem;
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  color: #fff !important;
  font-family: var(--font-body);
  vertical-align: middle;
  overflow-wrap: anywhere;
  white-space: normal;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details th:first-child,
.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details td:first-child {
  border-left: 0 !important;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details th:last-child,
.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details td:last-child {
  border-right: 0 !important;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details tbody tr:last-child td {
  border-bottom: 0 !important;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details tbody tr:hover td {
  background: rgba(255, 255, 255, 0.07) !important;
}

.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details a:not(.tutor-btn),
.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details .tutor-color-black,
.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details .tutor-color-secondary,
.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details .tutor-color-muted,
.tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-quiz-attempt-details .tutor-fs-7 {
  color: #fff !important;
}

@media (max-width: 767px) {
  .tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-table-mobile .tutor-quiz-attempt-details tr {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.04) !important;
  }

  .tutor-dashboard .tutor-quiz-attempt-details-wrapper .tutor-table-mobile .tutor-quiz-attempt-details td::before {
    color: var(--color-gold);
  }
}

.tutor-dashboard .tutor-dashboard-content-inner .tutor-table.table-popular-courses,
.tutor-dashboard .tutor-dashboard-content-inner .tutor-table.table-popular-courses thead,
.tutor-dashboard .tutor-dashboard-content-inner .tutor-table.table-popular-courses tbody,
.tutor-dashboard .tutor-dashboard-content-inner .tutor-table.table-popular-courses tr {
  background: transparent !important;
}

.tutor-dashboard .tutor-dashboard-content-inner .tutor-table.table-popular-courses tr th {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-gold) !important;
}

.tutor-dashboard .tutor-dashboard-content-inner .tutor-table.table-popular-courses tr td {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.tutor-dashboard .tutor-dashboard-content-inner .tutor-table.table-popular-courses tr td a {
  color: var(--color-gold) !important;
}

/* Tutor dashboard settings */
.tutor-dashboard .tutor-dashboard-content > .tutor-dashboard-content-inner > .tutor-mb-32 > .tutor-nav {
  gap: 0.5rem;
  margin: 0;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.tutor-dashboard .tutor-dashboard-content > .tutor-dashboard-content-inner > .tutor-mb-32 > .tutor-nav .tutor-nav-link {
  min-height: 2.75rem;
  margin: 0;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-weight: 700;
}

.tutor-dashboard .tutor-dashboard-content > .tutor-dashboard-content-inner > .tutor-mb-32 > .tutor-nav .tutor-nav-link:hover,
.tutor-dashboard .tutor-dashboard-content > .tutor-dashboard-content-inner > .tutor-mb-32 > .tutor-nav .tutor-nav-link:focus,
.tutor-dashboard .tutor-dashboard-content > .tutor-dashboard-content-inner > .tutor-mb-32 > .tutor-nav .tutor-nav-link.is-active {
  border: 0;
  background: var(--color-gold);
  color: var(--color-ink);
}

.tutor-dashboard .tutor-dashboard-setting-profile,
.tutor-dashboard .tutor-dashboard-setting-billing,
.tutor-dashboard .tutor-dashboard-content-inner:has(.tutor-profile-password-reset) {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.tutor-dashboard .tutor-dashboard-setting-profile .tutor-form-label,
.tutor-dashboard .tutor-dashboard-setting-billing .tutor-form-label,
.tutor-dashboard .tutor-dashboard-content-inner:has(.tutor-profile-password-reset) .tutor-form-label {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.tutor-dashboard .tutor-dashboard-setting-profile .tutor-form-control,
.tutor-dashboard .tutor-dashboard-setting-profile .tutor-form-select,
.tutor-dashboard .tutor-dashboard-setting-billing .tutor-form-control,
.tutor-dashboard .tutor-dashboard-content-inner:has(.tutor-profile-password-reset) .tutor-form-control {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
}

.tutor-dashboard .tutor-dashboard-setting-profile .tutor-form-control:focus,
.tutor-dashboard .tutor-dashboard-setting-profile .tutor-form-select:focus,
.tutor-dashboard .tutor-dashboard-setting-billing .tutor-form-control:focus,
.tutor-dashboard .tutor-dashboard-content-inner:has(.tutor-profile-password-reset) .tutor-form-control:focus {
  border-color: var(--color-gold) !important;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.tutor-dashboard .tutor-dashboard-setting-profile .tutor-form-control:disabled {
  opacity: 0.75;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
}

.tutor-dashboard .tutor-dashboard-setting-profile #tutor_cover_area {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background-color: var(--color-ink-deep);
}

.tutor-dashboard .tutor-dashboard-setting-profile #tutor_profile_area {
  border-color: var(--color-ink);
  background-color: var(--color-ink-deep);
}

.tutor-dashboard .tutor-dashboard-setting-profile #tutor_photo_meta_area > span,
.tutor-dashboard .tutor-dashboard-setting-profile #tutor_photo_meta_area > span > span {
  color: rgba(255, 255, 255, 0.68);
}

.tutor-dashboard .tutor-dashboard-setting-billing .tutor-color-black {
  color: var(--color-gold);
  font-family: var(--font-heading);
}

.tutor-dashboard .tutor-dashboard-setting-billing .tutor-form-control option {
  background: var(--color-ink-deep);
  color: #fff;
}

.tutor-dashboard .tutor-dashboard-setting-profile .tutor-profile-settings-save,
.tutor-dashboard .tutor-dashboard-setting-billing #user_billing_form .tutor-btn-primary,
.tutor-dashboard .tutor-dashboard-content-inner:has(.tutor-profile-password-reset) .tutor-profile-password-reset {
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

.tutor-dashboard .tutor-dashboard-setting-profile .tutor-profile-settings-save:hover,
.tutor-dashboard .tutor-dashboard-setting-profile .tutor-profile-settings-save:focus,
.tutor-dashboard .tutor-dashboard-setting-billing #user_billing_form .tutor-btn-primary:hover,
.tutor-dashboard .tutor-dashboard-setting-billing #user_billing_form .tutor-btn-primary:focus,
.tutor-dashboard .tutor-dashboard-content-inner:has(.tutor-profile-password-reset) .tutor-profile-password-reset:hover,
.tutor-dashboard .tutor-dashboard-content-inner:has(.tutor-profile-password-reset) .tutor-profile-password-reset:focus {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
}

.tutor-dashboard .tutor-dashboard-setting-profile .tutor-row:has([name="phone_number"]) > div:has([name="phone_number"]),
.tutor-dashboard .tutor-dashboard-setting-profile .tutor-row > div:has([name="tutor_profile_job_title"]),
.tutor-dashboard .tutor-dashboard-setting-profile .tutor-row > div:has([name="timezone"]),
.tutor-dashboard .tutor-dashboard-setting-profile .tutor-row:has(#wp-tutor_profile_bio-wrap),
.tutor-dashboard .tutor-dashboard-setting-profile .tutor-row > div:has([name="display_name"]),
.tutor-dashboard .tutor-dashboard-setting-profile .tutor-row > div:has(input:disabled) {
  display: none;
}

.tutor-dashboard .tutor-progress-bar {
  background: rgba(255, 255, 255, 0.14);
}

.course-archive-intro {
  margin-bottom: 2rem;
}

.course-archive-intro__excerpt > * + *,
.course-archive-intro__content > * + * {
  margin-top: 1rem;
}

.course-archive-intro__toggle {
  margin-top: 1.2rem;
}

.course-archive-page .tutor-course-card.home-card,
.tutor-course-shell-card,
.tutor-course-topics-card,
.tutor-course-details-content.home-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.tutor-course-shell-card {
  width: 100%;
}

.course-archive-page .tutor-course-card.home-card {
  padding: 0;
  overflow: hidden;
}

.course-archive-page .tutor-course-card.home-card .tutor-card-body,
.course-archive-page .tutor-course-card.home-card .tutor-card-footer {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
}

.course-archive-page .tutor-course-card.home-card .tutor-course-name,
.course-archive-page .tutor-course-card.home-card .tutor-course-name a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-gold);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  -webkit-line-clamp: unset;
}

.course-archive-page .tutor-course-card.home-card .tutor-course-name {
  display: block;
  height: auto;
  max-height: none;
}

.course-archive-page .tutor-course-card.home-card .tutor-meta.tutor-mt-auto {
  display: none;
}

.course-archive-page .tutor-course-card.home-card,
.course-archive-page .tutor-course-card.home-card p,
.course-archive-page .tutor-course-card.home-card .tutor-meta,
.course-archive-page .tutor-course-card.home-card .tutor-meta a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.82);
}

.course-archive-page .tutor-course-card.home-card .price,
.course-archive-page .tutor-course-card.home-card .list-item-price {
  color: #fff;
}

.tutor-course-details-page .tutor-course-details-title {
  width: 100%;
  max-width: none;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}

.tutor-course-details-page .tutor-course-details-header {
  margin-bottom: 1.5rem !important;
}

.tutor-course-details-header .tutor-course-details-top .tutor-row {
  justify-content: flex-end;
}

.tutor-course-details-header .tutor-course-details-actions {
  margin-left: auto;
  text-align: right;
}

.tutor-course-details-header .tutor-course-share-btn,
.tutor-course-details-header .tutor-course-share-btn:hover,
.tutor-course-details-header .tutor-course-share-btn:focus {
  color: #fff;
}

.tutor-course-details-content.home-card {
  display: block;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}

.tutor-course-details-content.home-card .tutor-fs-6 {
  font-size: 1.1rem;
  color: #fff;
}

.tutor-course-details-tab .tutor-tab.tutor-pt-24 {
  padding-top: 0 !important;
}

.tutor-course-details-content.home-card + .tutor-mt-40 {
  margin-top: 0 !important;
}

.tutor-course-details-content.home-card h1,
.tutor-course-details-content.home-card h2,
.tutor-course-details-content.home-card h3,
.tutor-course-details-content.home-card h4,
.tutor-course-details-content.home-card h5,
.tutor-course-details-content.home-card h6 {
  font-family: var(--font-heading);
  line-height: 1.05;
  color: var(--color-gold);
}

.tutor-course-details-content.home-card h1 {
  font-size: 3.5rem;
}

.tutor-course-details-content.home-card h2 {
  font-size: 2rem;
}

.tutor-course-details-content.home-card h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
}

.tutor-course-details-content.home-card p,
.tutor-course-details-content.home-card li,
.tutor-course-details-content.home-card strong,
.tutor-course-details-content.home-card em {
  color: #fff;
}

.tutor-course-topics-card {
  display: block;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
}

.tutor-card.home-card.tutor-course-topics-card:not(.tutor-no-border) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.tutor-course-topic + .tutor-course-topic {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tutor-course-topic-title {
  color: var(--color-gold);
}

.tutor-course-topics-card .tutor-course-content-list {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.tutor-course-topics-card .tutor-course-content-list-item {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.tutor-course-topics-card .tutor-course-content-list-item--linked {
  padding: 0;
}

.tutor-course-topics-card .tutor-course-content-list-item-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 16px;
  color: inherit;
  text-decoration: none;
}

.tutor-course-topics-card .tutor-course-content-list-item-link:hover,
.tutor-course-topics-card .tutor-course-content-list-item-link:focus {
  color: rgba(255, 255, 255, 0.82);
}

.tutor-course-topics-card .tutor-course-content-list-item-link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -2px;
}

.tutor-course-topics-card .tutor-course-content-list-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.tutor-course-topics-card .tutor-course-content-list-item-title,
.tutor-course-topics-card .tutor-course-content-list-item-title a {
  color: rgba(255, 255, 255, 0.82);
}

.tutor-course-details-page .tutor-card.tutor-sidebar-card:not(.tutor-no-border) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #fff;
  overflow: hidden;
}

.tutor-course-details-page .tutor-sidebar-card .tutor-card-body,
.tutor-course-details-page .tutor-sidebar-card .tutor-card-footer {
  background: transparent;
}

.tutor-course-details-page .tutor-sidebar-card .tutor-card-footer {
  border-color: rgba(255, 255, 255, 0.08);
}

.tutor-course-details-page .tutor-sidebar-card .tutor-course-sidebar-card-pricing .tutor-fs-4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
}

.tutor-course-details-page .tutor-sidebar-card .tutor-course-sidebar-card-pricing del {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
}

.tutor-course-details-page .tutor-sidebar-card .tutor-ul {
  margin: 0;
  padding: 0;
}

.tutor-course-details-page .tutor-sidebar-card .tutor-fs-6 {
  font-size: 1rem;
  color: #fff;
}

.tutor-course-details-page .tutor-sidebar-card .tutor-card-footer li > span:first-child {
  color: var(--color-gold);
}

.tutor-course-details-page .tutor-sidebar-card .tutor-btn-primary {
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

.tutor-course-details-page .tutor-sidebar-card .tutor-btn-primary:hover,
.tutor-course-details-page .tutor-sidebar-card .tutor-btn-primary:focus,
.tutor-course-details-page .tutor-sidebar-card .tutor-btn-primary:active {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
}

.tutor-course-details-page .tutor-sidebar-card [data-cy="tutor-native-view-cart"] {
  border-color: var(--tutor-color-primary);
  background: var(--tutor-color-primary);
  color: #fff;
}

.tutor-course-details-page .tutor-sidebar-card [data-cy="tutor-native-view-cart"]:hover,
.tutor-course-details-page .tutor-sidebar-card [data-cy="tutor-native-view-cart"]:focus,
.tutor-course-details-page .tutor-sidebar-card [data-cy="tutor-native-view-cart"]:active {
  border-color: var(--tutor-color-primary-hover);
  background: var(--tutor-color-primary-hover);
  color: #fff;
}

.gln-course-disclaimer__buy-now.is-disabled,
.gln-course-disclaimer__buy-now.is-disabled:hover,
.gln-course-disclaimer__buy-now.is-disabled:focus {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.gln-course-disclaimer__check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.85rem;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.gln-course-disclaimer__check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.14rem;
  accent-color: var(--color-gold);
}

.gln-course-disclaimer__check a {
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gln-course-disclaimer__check a:hover,
.gln-course-disclaimer__check a:focus {
  color: #e0bc4a;
}

.gln-course-disclaimer--loop {
  width: 100%;
  margin-top: 0.75rem;
}

.gln-course-disclaimer--loop .gln-course-disclaimer__check {
  margin-top: 0;
  font-size: 0.8rem;
}

.has-gln-course-disclaimer-modal {
  overflow: hidden;
}

.gln-course-disclaimer-modal[hidden] {
  display: none;
}

.gln-course-disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gln-course-disclaimer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 36, 0.78);
}

.gln-course-disclaimer-modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 2rem));
  overflow-y: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  background: #132e44;
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.gln-course-disclaimer-modal__panel h2 {
  max-width: calc(100% - 3rem);
  margin: 0 0 1rem;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

.gln-course-disclaimer-modal__content,
.gln-course-disclaimer-modal__content p,
.gln-course-disclaimer-modal__content li {
  color: #fff;
}

.gln-course-disclaimer-modal__content p {
  margin: 0 0 1rem;
}

.gln-course-disclaimer-modal__content p:last-child {
  margin-bottom: 0;
}

.gln-course-disclaimer-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.gln-course-disclaimer-modal__close:hover,
.gln-course-disclaimer-modal__close:focus {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.14);
  color: var(--color-gold);
}

/* Tutor small modal windows */
.tutor-modal:has(> .tutor-modal-window.tutor-modal-window-sm) .tutor-modal-overlay {
  background: rgba(5, 15, 23, 0.82);
  backdrop-filter: blur(8px);
}

.tutor-modal-window.tutor-modal-window-sm {
  width: min(430px, calc(100vw - 2rem));
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.82);
}

.tutor-modal-window.tutor-modal-window-sm .tutor-modal-content {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.18), transparent 15rem),
    var(--color-ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.tutor-modal-window.tutor-modal-window-sm .tutor-modal-body {
  padding: 0 2rem;
}

.tutor-modal-window.tutor-modal-window-sm .tutor-modal-body > [class*="tutor-py-"] {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.tutor-modal-window.tutor-modal-window-sm .tutor-color-black,
.tutor-modal-window.tutor-modal-window-sm .tutor-modal-title {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
}

.tutor-modal-window.tutor-modal-window-sm .tutor-color-muted,
.tutor-modal-window.tutor-modal-window-sm .tutor-color-secondary {
  color: rgba(255, 255, 255, 0.76);
}

.tutor-modal-window.tutor-modal-window-sm .tutor-modal-close-o {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.tutor-modal-window.tutor-modal-window-sm .tutor-modal-close-o:hover,
.tutor-modal-window.tutor-modal-window-sm .tutor-modal-close-o:focus {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.14);
  color: var(--color-gold);
}

.tutor-modal-window.tutor-modal-window-sm #tutor-login-form input[type="text"].tutor-form-control,
.tutor-modal-window.tutor-modal-window-sm #tutor-login-form input[type="password"].tutor-form-control {
  width: 100%;
  height: 52px;
  min-height: 52px;
  padding: 0.85rem 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
}

.tutor-modal-window.tutor-modal-window-sm #tutor-login-form input[type="text"].tutor-form-control::placeholder,
.tutor-modal-window.tutor-modal-window-sm #tutor-login-form input[type="password"].tutor-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
  opacity: 1;
}

.tutor-modal-window.tutor-modal-window-sm #tutor-login-form input[type="text"].tutor-form-control:focus,
.tutor-modal-window.tutor-modal-window-sm #tutor-login-form input[type="password"].tutor-form-control:focus {
  border-color: var(--color-gold) !important;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.tutor-modal-window.tutor-modal-window-sm .tutor-form-check-input {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.08);
}

.tutor-modal-window.tutor-modal-window-sm .tutor-form-check-input:checked {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
}

.tutor-modal-window.tutor-modal-window-sm .tutor-btn-primary {
  min-height: 52px;
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

.tutor-modal-window.tutor-modal-window-sm .tutor-btn-primary:hover,
.tutor-modal-window.tutor-modal-window-sm .tutor-btn-primary:focus,
.tutor-modal-window.tutor-modal-window-sm .tutor-btn-primary:active {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(153, 131, 2, 0.28);
}

.tutor-modal-window.tutor-modal-window-sm .tutor-btn-link,
.tutor-modal-window.tutor-modal-window-sm .tutor-btn-ghost {
  color: var(--color-gold);
}

.tutor-modal-window.tutor-modal-window-sm .tutor-btn-link:hover,
.tutor-modal-window.tutor-modal-window-sm .tutor-btn-link:focus,
.tutor-modal-window.tutor-modal-window-sm .tutor-btn-ghost:hover,
.tutor-modal-window.tutor-modal-window-sm .tutor-btn-ghost:focus {
  color: #e0bc4a;
}

.tutor-modal-window.tutor-modal-window-sm .tutor-alert {
  border-color: rgba(239, 119, 119, 0.7);
  background: rgba(239, 119, 119, 0.12);
  color: #fff;
}

body:not(.wp-admin) .tutor-modal-content-white {
  background: #132e44;
  color: rgba(255, 255, 255, 0.82);
}

body:not(.wp-admin) .tutor-modal-content-white .tutor-color-black,
body:not(.wp-admin) .tutor-modal-content-white .tutor-modal-title {
  color: var(--color-gold);
}

body:not(.wp-admin) .tutor-modal-content-white,
body:not(.wp-admin) .tutor-modal-content-white .tutor-color-muted,
body:not(.wp-admin) .tutor-modal-content-white .tutor-color-secondary {
  color: rgba(255, 255, 255, 0.76);
}

body:not(.wp-admin) .tutor-modal-content-white .tutor-form-control {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body:not(.wp-admin) .tutor-modal-content-white .tutor-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

body:not(.wp-admin) .tutor-modal-content-white .tutor-form-control:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

body:not(.wp-admin) .tutor-modal-content-white .tutor-bg-white,
body:not(.wp-admin) .tutor-modal-content-white .tutor-modal-close-o,
#tutor-course-share-opener .tutor-copy-text.tutor-bg-white,
#tutor-course-share-opener .tutor-modal-close-o {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff;
}

body:not(.wp-admin) .tutor-modal-content-white .tutor-modal-close-o:hover,
body:not(.wp-admin) .tutor-modal-content-white .tutor-modal-close-o:focus {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.14) !important;
  color: var(--color-gold);
}

body:not(.wp-admin) .tutor-modal-content-white .tutor-hr {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

#tutor-course-share-opener .tutor-modal-body,
#tutor-course-share-opener .tutor-color-black,
#tutor-course-share-opener .tutor-color-secondary {
  text-align: left;
}

#tutor-course-share-opener .tutor-social-share-wrap {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

#tutor-course-share-opener .tutor_share {
  justify-content: flex-start;
  text-align: left;
}

/* Tutor skip quiz confirmation */
#tutor-quiz-skip-to-next .tutor-modal-overlay {
  background: rgba(5, 15, 23, 0.82);
  backdrop-filter: blur(8px);
}

#tutor-quiz-skip-to-next .tutor-modal-window {
  width: min(520px, calc(100vw - 2rem));
  font-family: var(--font-body);
}

#tutor-quiz-skip-to-next .tutor-modal-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: var(--color-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  color: #fff;
  overflow: hidden;
}

#tutor-quiz-skip-to-next .tutor-modal-body {
  padding: 1.5rem 2rem;
}

#tutor-quiz-skip-to-next .tutor-color-black {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
}

#tutor-quiz-skip-to-next .tutor-color-muted {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

#tutor-quiz-skip-to-next .tutor-modal-close-o {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

#tutor-quiz-skip-to-next .tutor-modal-close-o:hover,
#tutor-quiz-skip-to-next .tutor-modal-close-o:focus {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.14);
  color: var(--color-gold);
}

#tutor-quiz-skip-to-next .tutor-btn {
  min-height: 48px;
  padding-right: 1.35rem;
  padding-left: 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
}

#tutor-quiz-skip-to-next .tutor-btn-primary {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-ink);
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

#tutor-quiz-skip-to-next .tutor-btn-primary:hover,
#tutor-quiz-skip-to-next .tutor-btn-primary:focus,
#tutor-quiz-skip-to-next .tutor-btn-primary:active {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(153, 131, 2, 0.28);
}

#tutor-quiz-skip-to-next .tutor-btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

#tutor-quiz-skip-to-next .tutor-btn-outline-primary:hover,
#tutor-quiz-skip-to-next .tutor-btn-outline-primary:focus,
#tutor-quiz-skip-to-next .tutor-btn-outline-primary:active {
  border-color: var(--color-gold);
  background: rgba(201, 162, 39, 0.12);
  color: var(--color-gold);
}

/* Tutor quiz answers */
.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper {
  padding: 20px 24px 80px;
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-question-item .tutor-card,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-border-box,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-dotted-box,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-image-ordering-item,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .quiz-question-ans-choice label {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: none;
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-question-item:hover .tutor-card,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-border-box:hover {
  border-color: rgba(201, 162, 39, 0.55);
  background: rgba(201, 162, 39, 0.1);
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-question-item .tutor-form-check-input:checked + .tutor-card {
  border-color: var(--color-gold);
  background: rgba(201, 162, 39, 0.14);
  box-shadow: 0 0 0 1px var(--color-gold);
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-question-item:has(.tutor-form-check-input:checked) .tutor-card {
  border-color: var(--color-gold);
  background: rgba(201, 162, 39, 0.14);
  box-shadow: 0 0 0 1px var(--color-gold);
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-form-check-input {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-form-check-input:checked {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-question-item .tutor-color-black,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-border-box .tutor-color-black,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-dotted-box,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-quiz-ans-no,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-dragging-text-conent {
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper .tutor-color-black-fill {
  color: var(--color-gold);
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper textarea.tutor-form-control,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper input.tutor-form-control,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper select.tutor-form-control,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .fill-in-the-gap input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper textarea.tutor-form-control:focus,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper input.tutor-form-control:focus,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper select.tutor-form-control:focus,
.tutor-course-single-content-wrapper .tutor-quiz-wrapper .fill-in-the-gap input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.tutor-course-single-content-wrapper .tutor-quiz-wrapper select.tutor-form-control option {
  background: var(--color-ink);
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-table-responsive:has(.tutor-table-quiz-attempts),
.tutor-course-single-content-wrapper .tutor-table-responsive:has(.tutor-quiz-attempt-details) {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.tutor-course-single-content-wrapper .tutor-table-quiz-attempts,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent !important;
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-table-quiz-attempts thead,
.tutor-course-single-content-wrapper .tutor-table-quiz-attempts tbody,
.tutor-course-single-content-wrapper .tutor-table-quiz-attempts tr,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details thead,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details tbody,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details tr {
  background: transparent !important;
}

.tutor-course-single-content-wrapper .tutor-table-quiz-attempts th,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details th {
  padding: 1rem 1.1rem;
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-gold) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tutor-course-single-content-wrapper .tutor-table-quiz-attempts td,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details td {
  padding: 1rem 1.1rem;
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  color: #fff !important;
  font-family: var(--font-body);
  vertical-align: middle;
}

.tutor-course-single-content-wrapper .tutor-table-quiz-attempts tbody tr:hover td,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details tbody tr:hover td {
  background: rgba(255, 255, 255, 0.07) !important;
}

.tutor-course-single-content-wrapper .tutor-table-quiz-attempts a:not(.tutor-btn),
.tutor-course-single-content-wrapper .tutor-table-quiz-attempts .tutor-color-black,
.tutor-course-single-content-wrapper .tutor-table-quiz-attempts .tutor-color-secondary,
.tutor-course-single-content-wrapper .tutor-table-quiz-attempts .tutor-color-muted,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details a:not(.tutor-btn),
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details .tutor-color-black,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details .tutor-color-secondary,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details .tutor-color-muted,
.tutor-course-single-content-wrapper .tutor-quiz-attempt-details .tutor-fs-7 {
  color: #fff !important;
}

.tutor-course-single-content-wrapper .tutor-table-quiz-attempts .tutor-btn-tertiary {
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
}

.tutor-course-single-content-wrapper .tutor-table-quiz-attempts .tutor-btn-tertiary:hover,
.tutor-course-single-content-wrapper .tutor-table-quiz-attempts .tutor-btn-tertiary:focus {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
}

@media (max-width: 767px) {
  .tutor-course-single-content-wrapper .tutor-table-mobile .tutor-table-quiz-attempts tr,
  .tutor-course-single-content-wrapper .tutor-table-mobile .tutor-quiz-attempt-details tr {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.04) !important;
  }

  .tutor-course-single-content-wrapper .tutor-table-mobile .tutor-table-quiz-attempts td::before,
  .tutor-course-single-content-wrapper .tutor-table-mobile .tutor-quiz-attempt-details td::before {
    color: var(--color-gold);
  }
}

/* Tutor standalone login */
.tutor-template-segment.tutor-login-wrap {
  width: min(430px, calc(100vw - 2rem));
  max-width: 430px;
  margin: clamp(3rem, 8vw, 6rem) auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.18), transparent 15rem),
    var(--color-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.tutor-login-wrap .tutor-login-form-wrapper {
  padding: 2.5rem 2rem;
}

.tutor-login-wrap .tutor-login-form-wrapper > .tutor-color-black {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
}

.tutor-login-wrap .tutor-color-muted,
.tutor-login-wrap .tutor-color-secondary {
  color: rgba(255, 255, 255, 0.76);
}

.tutor-login-wrap #tutor-login-form input[type="text"].tutor-form-control,
.tutor-login-wrap #tutor-login-form input[type="password"].tutor-form-control {
  width: 100%;
  height: 52px;
  min-height: 52px;
  padding: 0.85rem 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
  text-indent: 0;
}

.tutor-login-wrap #tutor-login-form input[type="text"].tutor-form-control::placeholder,
.tutor-login-wrap #tutor-login-form input[type="password"].tutor-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
}

.tutor-login-wrap #tutor-login-form input[type="text"].tutor-form-control:focus,
.tutor-login-wrap #tutor-login-form input[type="password"].tutor-form-control:focus {
  border-color: var(--color-gold) !important;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.tutor-login-wrap .tutor-form-check-input {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.08);
}

.tutor-login-wrap .tutor-form-check-input:checked {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
}

.tutor-login-wrap #tutor-login-form .tutor-btn-primary {
  min-height: 52px;
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

.tutor-login-wrap #tutor-login-form .tutor-btn-primary:hover,
.tutor-login-wrap #tutor-login-form .tutor-btn-primary:focus,
.tutor-login-wrap #tutor-login-form .tutor-btn-primary:active {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(153, 131, 2, 0.28);
}

.tutor-login-wrap #tutor-login-form .tutor-btn-link,
.tutor-login-wrap #tutor-login-form .tutor-btn-ghost {
  color: var(--color-gold);
}

.tutor-login-wrap #tutor-login-form .tutor-btn-link:hover,
.tutor-login-wrap #tutor-login-form .tutor-btn-link:focus,
.tutor-login-wrap #tutor-login-form .tutor-btn-ghost:hover,
.tutor-login-wrap #tutor-login-form .tutor-btn-ghost:focus {
  color: #e0bc4a;
}

.tutor-login-wrap .tutor-alert {
  border-color: rgba(239, 119, 119, 0.7);
  background: rgba(239, 119, 119, 0.12);
  color: #fff;
}

/* Tutor order confirmation */
.tutor-order-status-wrapper {
  width: min(460px, calc(100vw - 2rem));
  max-width: 460px;
  min-height: 0;
  margin: clamp(3rem, 8vw, 6rem) auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.18), transparent 15rem),
    var(--color-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: var(--font-body);
}

.tutor-order-status-wrapper .tutor-order-status-content,
.tutor-order-status-wrapper .tutor-order-status-content h2,
.tutor-order-status-wrapper .tutor-order-status-content p,
.tutor-order-status-wrapper .tutor-order-status-content .tutor-color-black,
.tutor-order-status-wrapper .tutor-order-status-content .tutor-color-secondary {
  color: #fff;
}

.tutor-order-status-wrapper .tutor-order-status-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.tutor-order-status-wrapper .tutor-order-status-content p {
  line-height: 1.65;
}

.tutor-order-status-wrapper .tutor-btn {
  min-height: 48px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
}

.tutor-order-status-wrapper .tutor-btn-primary {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-ink);
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

.tutor-order-status-wrapper .tutor-btn-primary:hover,
.tutor-order-status-wrapper .tutor-btn-primary:focus,
.tutor-order-status-wrapper .tutor-btn-primary:active {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(153, 131, 2, 0.28);
}

.tutor-order-status-wrapper .tutor-btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.tutor-order-status-wrapper .tutor-btn-secondary:hover,
.tutor-order-status-wrapper .tutor-btn-secondary:focus,
.tutor-order-status-wrapper .tutor-btn-secondary:active {
  border-color: var(--color-gold);
  background: rgba(201, 162, 39, 0.12);
  color: var(--color-gold);
}

/* Tutor lesson view */
.tutor-course-single-content-wrapper {
  gap: 1.5rem;
  padding: 1.5rem;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: #fff;
  overflow: hidden;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-title,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-accordion-item-header {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-title .tutor-color-secondary {
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-accordion-item-body,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item a {
  border-color: rgba(255, 255, 255, 0.08);
  background: transparent;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-title,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item-title,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item-icon {
  color: rgba(255, 255, 255, 0.82);
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item a {
  max-width: 100%;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item a > .tutor-d-flex:first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item a > .tutor-d-flex.tutor-ml-auto {
  align-items: flex-start;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item-title {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item-icon,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item-duration,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-form-check-input,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-icon-lock-line {
  flex-shrink: 0;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item-duration {
  white-space: nowrap;
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-summary {
  color: rgba(255, 255, 255, 0.62);
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item:hover a,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item.is-active a {
  background: rgba(201, 162, 39, 0.12);
}

.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item:hover .tutor-course-topic-item-title,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item:hover .tutor-course-topic-item-icon,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item.is-active .tutor-course-topic-item-title,
.tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper .tutor-course-topic-item.is-active .tutor-course-topic-item-icon {
  color: var(--color-gold);
}

.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper {
  margin: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper p,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper li,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper strong,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper em,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper .tutor-color-black,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper .tutor-color-secondary,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper .tutor-color-muted {
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper h1,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper h2,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper h3,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper h4,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper h5,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper h6 {
  color: #fff;
  font-family: var(--font-heading);
}

.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper .tutor-nav-link {
  color: rgba(255, 255, 255, 0.78);
}

.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper .tutor-nav-link:hover,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper .tutor-nav-link:focus,
.tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper .tutor-nav-link.is-active {
  color: var(--color-gold);
}

.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-footer,
.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header {
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: #fff;
  justify-content: space-between;
}

.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-body--no-spotlight + .tutor-course-topic-single-footer {
  margin-top: 1.5rem !important;
}

.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header {
  min-height: auto;
  padding: 0.75rem 2rem;
}

.tutor-course-single-content-wrapper .tutor-course-topic-single-header,
.tutor-course-single-content-wrapper .tutor-course-topic-single-header-title,
.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-fs-7,
.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-progress-content {
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-iconic-btn {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-iconic-btn:hover,
.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-iconic-btn:focus {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.14);
  color: var(--color-gold);
}

.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-btn {
  min-height: 44px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-btn:hover,
.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-btn:focus,
.tutor-course-single-content-wrapper .tutor-course-topic-single-header .tutor-btn:active {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(153, 131, 2, 0.28);
}

.tutor-course-single-content-wrapper .tutor-course-topic-single-footer .tutor-btn-secondary {
  min-height: 44px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(153, 131, 2, 0.18);
}

.tutor-course-single-content-wrapper .tutor-course-topic-single-footer .tutor-btn-secondary:hover,
.tutor-course-single-content-wrapper .tutor-course-topic-single-footer .tutor-btn-secondary:focus,
.tutor-course-single-content-wrapper .tutor-course-topic-single-footer .tutor-btn-secondary:active {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(153, 131, 2, 0.28);
}

.tutor-course-single-content-wrapper .tutor-course-topic-single-footer .tutor-btn-secondary[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.tutor-spotlight-mobile-progress-complete {
  margin-right: 0.75rem !important;
  margin-bottom: 0.75rem;
  margin-left: 0.75rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.tutor-spotlight-mobile-progress-complete .tutor-color-muted,
.tutor-spotlight-mobile-progress-complete .tutor-fs-7 {
  color: #fff;
}

.tutor-spotlight-mobile-progress-complete .tutor-progress-bar {
  background: rgba(255, 255, 255, 0.16);
}

.tutor-spotlight-mobile-progress-complete .tutor-progress-value {
  background: var(--color-gold);
}

.tutor-spotlight-mobile-progress-complete .tutor-btn {
  border-color: var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 800;
}

.tutor-spotlight-mobile-progress-complete .tutor-btn:hover,
.tutor-spotlight-mobile-progress-complete .tutor-btn:focus,
.tutor-spotlight-mobile-progress-complete .tutor-btn:active {
  border-color: #e0bc4a;
  background: #e0bc4a;
  color: var(--color-ink);
}

@media (min-width: 1200px) {
  .tutor-course-single-content-wrapper .tutor-course-single-sidebar-wrapper {
    width: 250px;
    flex: 0 0 250px;
  }

  .tutor-course-single-content-wrapper #tutor-single-entry-content {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }
}

@media (max-width: 1199.98px) {
  .tutor-course-single-content-wrapper {
    gap: 0;
    padding: 0;
  }

  .tutor-course-single-content-wrapper.tutor-course-single-sidebar-open .tutor-course-single-sidebar-wrapper {
    background: var(--color-ink);
  }
}

@media (max-width: 640px) {
  .tutor-course-details-content.home-card h1 {
    font-size: clamp(2.35rem, 12vw, 3.05rem);
    line-height: 1.04;
  }

  .tutor-course-single-content-wrapper .tutor-course-spotlight-wrapper {
    margin: 0.75rem;
    padding: 1.25rem;
  }

  .tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-footer,
  .tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header {
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem 0.75rem !important;
  }

  .tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header {
    padding: 0.75rem 1rem;
  }

  .tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-body--no-spotlight + .tutor-course-topic-single-footer {
    margin-top: 0.75rem !important;
  }

  .tutor-modal-window.tutor-modal-window-sm {
    width: calc(100vw - 1.25rem);
  }

  .tutor-modal-window.tutor-modal-window-sm .tutor-modal-body {
    padding: 0 1.25rem;
  }

  .tutor-modal-window.tutor-modal-window-sm .tutor-modal-body > [class*="tutor-py-"] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tutor-modal-window.tutor-modal-window-sm #tutor-login-form .tutor-d-flex.tutor-justify-between {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .tutor-template-segment.tutor-login-wrap {
    width: calc(100vw - 1.25rem);
    margin: 3rem auto;
  }

  .tutor-login-wrap .tutor-login-form-wrapper {
    padding: 2rem 1.25rem;
  }

  .tutor-login-wrap #tutor-login-form .tutor-d-flex.tutor-justify-between {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}
