/********** Empatyczne Warsztaty — style **********/
/* Czcionki: Playfair Display (naglowki) + DM Sans (body) */

:root {
    --ew-bg:         #FFFFFF;
    --ew-white:      #FFFFFF;
    --ew-subtle:     #F0EDE8;
    --ew-text:       #2C3E50;
    --ew-text-mid:   #546A7B;
    --ew-text-muted: #8A9AAA;
    --ew-heading:    #1E3A5F;
    --ew-accent:     #C8956C;
    --ew-accent2:    #2A7B6E;
    --ew-active:     #2A7B6E;
    --ew-active-bg:  rgba(42,123,110,.10);
    --ew-violet:     #1E3A5F;
    --ew-gold:       #C8956C;
    --ew-border:     #E0DDD6;
    --ew-border-lt:  #ECE9E3;
    --ew-card-bg:    #FFFFFF;
    --ew-gradient:   linear-gradient(135deg, #1E3A5F, #2A7B6E, #C8956C);
}

body {
    background-color: var(--ew-bg);
    font-family: 'DM Sans', sans-serif;
    color: var(--ew-text);
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* ---- Typography ---- */
p {
    font-size: 1.1rem;
    line-height: 1.6;
}
ul {
    font-size: 1.1rem;
    line-height: 1.6;
}
li {
    font-size: 1.1rem;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--ew-accent);
    transition: color .2s;
}
a:hover, a:active, a:focus {
    text-decoration: none;
    color: var(--ew-accent2);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

h1 {
    color: var(--ew-heading);
    font-weight: 700;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h2 {
    font-weight: 700;
    color: var(--ew-text);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    line-height: 1.3;
}
h3 {
    font-weight: 600;
    color: var(--ew-text);
    font-size: 1.375rem;
    line-height: 1.35;
}
h4 {
    font-weight: 600;
    color: var(--ew-text);
    font-size: 1.15rem;
    line-height: 1.4;
}
h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ew-text);
}

/* ---- Section ---- */
section {
    padding-bottom: 50px;
    padding-top: 50px;
}

/* ---- Buttons ---- */
.btn {
    font-weight: 500;
    transition: .2s;
}

.btn-accent {
    background: var(--ew-accent);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: .65rem 1.5rem;
    border-radius: .5rem;
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s, background .2s;
    display: inline-block;
    cursor: pointer;
}
.btn-accent:hover {
    color: #fff;
    background: var(--ew-accent2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30,58,95,.25);
}

.btn-primary-ew {
    padding: .65rem 1.5rem;
    font-size: .95rem;
    font-weight: 600;
    color: #ffffff;
    border: none;
    background: var(--ew-gradient);
    border-radius: .5rem;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    cursor: pointer;
}
.btn-primary-ew:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30,58,95,.3);
    opacity: .92;
}

.btn-outline-ew {
    padding: .65rem 1.5rem;
    font-size: .95rem;
    font-weight: 600;
    color: #2A7B6E;
    border: 2px solid #2A7B6E;
    background: transparent;
    border-radius: .5rem;
    transition: all .2s;
    cursor: pointer;
}
.btn-outline-ew:hover {
    color: #1E3A5F;
    background: transparent;
    border: 2px solid #1E3A5F;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30,58,95,.2);
}

.btn-cta {
    padding: .75rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    border: none;
    background: #2A7B6E;
    border-radius: .6rem;
    transition: transform .2s, box-shadow .2s, background .2s;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    color: #ffffff;
    background: #1E3A5F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,58,95,.20);
}

/* ---- Navbar ---- */
.navbar {
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ew-border-lt);
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
}

.navbar .navbar-brand {
    color: var(--ew-accent2);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}
.navbar .navbar-brand span {
    font-weight: 700;
    color: var(--ew-accent);
}

.navbar .navbar-nav .nav-link {
    margin-right: 5px;
    padding: .5rem .75rem;
    color: var(--ew-text-mid) !important;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color .2s;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--ew-heading) !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        border-top: 1px solid var(--ew-border-lt);
        padding: 15px 0;
    }
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        font-size: .9rem;
    }
}

/* ---- Header / Hero ---- */
header {
    padding-bottom: 90px;
    padding-top: 90px;
    position: relative;
}

header .container {
    position: relative;
    z-index: 1;
}

.section-label {
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #C8956C;
    margin-bottom: .75rem;
    display: block;
}

header h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
}

header p.lead {
    font-size: 1.2rem;
    color: var(--ew-text-mid);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* Hero feature pills */
.hero-pill {
    display: inline-block;
    padding: .45rem 1rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ew-text-mid);
    background: var(--ew-white);
    border: 1px solid var(--ew-border);
    border-radius: 2rem;
    white-space: nowrap;
}
.hero-pill i {
    margin-right: .35rem;
    font-size: .8rem;
}
.hero-pill:nth-child(1) i { color: var(--ew-accent); }
.hero-pill:nth-child(2) i { color: var(--ew-violet); }
.hero-pill:nth-child(3) i { color: var(--ew-active); }
.hero-pill:nth-child(4) i { color: var(--ew-gold); }

@media (max-width: 767.98px) {
    header {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}

/* ---- Workshop Cards ---- */
.workshop-card {
    background: var(--ew-card-bg);
    border: 1px solid var(--ew-border);
    border-radius: .85rem;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30,58,95,.14);
}

.workshop-card-top {
    height: 6px;
    background: var(--ew-gradient);
}

.workshop-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: .75rem;
}
.workshop-card li {
    font-size: 1.0rem;
    margin-bottom: .15rem;
}
.workshop-badge {
    display: inline-block;
    padding: .3rem .75rem;
    font-size: .78rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: .75rem;
    margin-right: .35rem;
}

.badge-stacjonarny {
    background: rgba(42,123,110,.12);
    color: #1E6458;
}
.badge-online {
    background: rgba(30,58,95,.12);
    color: #1E3A5F;
}
.badge-hybrydowy {
    background: rgba(200,149,108,.15);
    color: #A07A48;
}

.workshop-meta {
    font-size: .9rem;
    color: var(--ew-text-muted);
    margin-bottom: .5rem;
}
.workshop-meta i {
    color: #C8956C;
    width: 18px;
    margin-right: .3rem;
}

.workshop-desc {
    font-size: .95rem;
    color: var(--ew-text-mid);
    line-height: 1.55;
    flex: 1;
}

.workshop-card-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

/* ---- Section titles ---- */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    color: var(--ew-heading);
    margin-bottom: .75rem;
}
.section-title p {
    color: var(--ew-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- About / Info section ---- */
.info-box {
    background: var(--ew-white);
    border: 1px solid var(--ew-border);
    border-radius: .85rem;
    padding: 2rem;
    text-align: center;
    transition: transform .2s;
    height: 100%;
}
.info-box:hover {
    transform: translateY(-2px);
}
.info-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}
.info-box-purple i { color: var(--ew-violet); }
.info-box-coral i { color: #C8956C; }
.info-box-teal i { color: var(--ew-active); }
.info-box-pink i { color: var(--ew-accent); }

/* ---- Contact Form ---- */
.contact-section {
    background: var(--ew-white);
    border: 1px solid var(--ew-border);
    border-radius: 1rem;
    padding: 3rem;
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 1.5rem;
    }
}

.form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--ew-text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.form-control {
    border: 1.5px solid var(--ew-border);
    border-radius: .5rem;
    padding: .6rem .85rem;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
    border-color: var(--ew-accent);
    box-shadow: 0 0 0 3px rgba(30,58,95,.14);
}

.form-select {
    border: 1.5px solid var(--ew-border);
    border-radius: .5rem;
    padding: .6rem .85rem;
    font-size: .95rem;
}
.form-select:focus {
    border-color: var(--ew-accent);
    box-shadow: 0 0 0 3px rgba(30,58,95,.14);
}

.form-check-input:checked {
    background-color: var(--ew-accent);
    border-color: var(--ew-accent);
}

/* Hide validation feedback until form is submitted */
.needs-validation:not(.was-validated) .invalid-feedback {
    display: none !important;
}
.needs-validation:not(.was-validated) .form-control:invalid,
.needs-validation:not(.was-validated) .form-select:invalid,
.needs-validation:not(.was-validated) .form-check-input:invalid {
    border-color: var(--ew-border);
}
.needs-validation:not(.was-validated) .form-check-input:invalid ~ .form-check-label {
    color: inherit;
}

/* ---- Footer ---- */
footer {
    background: #2D2A32;
    color: rgba(255,255,255,.75);
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}
footer h5 {
    color: var(--ew-accent2);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}
footer h5 .wa {
    font-weight: 700;
    color: var(--ew-accent);
}
footer a {
    color: rgba(255,255,255,.65);
    transition: color .2s;
}
footer a:hover {
    color: var(--ew-accent2);
}
footer .footer-links {
    list-style: none;
    padding-left: 0;
}
footer .footer-links li {
    padding: .25rem 0;
    font-size: .9rem;
}
footer hr {
    border-color: rgba(255,255,255,.15);
}
footer .footer-legal {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
}
footer .footer-legal:hover {
    color: rgba(255,255,255,.75);
}

/* ---- Back to top ---- */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
    color: var(--ew-accent);
    font-size: 1.5rem;
    transition: opacity .3s;
}
.back-to-top:hover {
    color: var(--ew-accent2);
}

/* ---- Utility ---- */
.text-accent { color: var(--ew-accent) !important; }
.text-heading { color: var(--ew-heading) !important; }
.text-active { color: var(--ew-active) !important; }
.bg-subtle { background-color: var(--ew-subtle) !important; }

/* ---- Akcja Empatia Banner ---- */
.akcja-empatia-banner {
    background: var(--ew-white);
    border: 1px solid var(--ew-border);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.akcja-empatia-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ew-gradient);
}
.akcja-empatia-banner .akcja-icon {
    font-size: 2.5rem;
    color: #1E3A5F;
    margin-bottom: 1rem;
}
.akcja-empatia-banner h3 {
    color: var(--ew-heading);
    margin-bottom: .75rem;
}
.akcja-empatia-banner .akcja-tagline {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ew-text-mid);
    margin-bottom: 1rem;
}

/* ---- Badge Grupa zebrana ---- */
.badge-zebrana {
    background: rgba(140,150,165,.14);
    color: #6B7585;
}

/* ---- Workshop status ---- */
.workshop-status {
    font-size: .85rem;
    font-weight: 600;
    padding: .35rem .75rem;
    border-radius: 2rem;
    display: inline-block;
    margin-top: .5rem;
}
.workshop-status-open {
    background: rgba(42,123,110,.12);
    color: #1E6458;
}
.workshop-status-full {
    background: rgba(140,150,165,.12);
    color: #6B7585;
}

/* Muted contact button for workshops with group already assembled */
.btn-contact-muted {
    opacity: .5;
    pointer-events: none;
    filter: grayscale(.4);
}

/* ---- Osoby wspierające ---- */
.person-card {
    background: var(--ew-white);
    border: 1px solid var(--ew-border);
    border-radius: .85rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform .2s;
    height: 100%;
}
.person-card:hover {
    transform: translateY(-2px);
}
.person-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ew-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #1E3A5F;
    overflow: hidden;
}
.person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.person-card h5 {
    margin-bottom: .25rem;
}
.person-role {
    font-size: .85rem;
    font-weight: 600;
    color: #1E3A5F;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}
.person-desc {
    font-size: .9rem;
    color: var(--ew-text-mid);
    line-height: 1.5;
}

/* ---- Pomysłodawca ---- */
.founder-card {
    background: var(--ew-white);
    border: 1px solid var(--ew-border);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--ew-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: #1E3A5F;
    overflow: hidden;
}
.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-card h3 {
    color: var(--ew-heading);
    margin-bottom: .25rem;
}
.founder-role {
    font-size: .9rem;
    font-weight: 600;
    color: #1E3A5F;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
}
.founder-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ew-text-mid);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.founder-quote::before {
    content: '\201E';
    font-size: 1.8rem;
    color: var(--ew-heading);
    line-height: 1;
    margin-right: .15rem;
}
.founder-bio {
    font-size: .95rem;
    color: var(--ew-text-mid);
    line-height: 1.6;
}
.founder-links a {
    color: #C8956C;
    font-size: 1.3rem;
    margin: 0 .5rem;
    transition: color .2s;
}
.founder-links a:hover {
    color: var(--ew-heading);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    section {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .workshop-card-body {
        padding: 1.25rem;
    }
    .workshop-card-footer {
        padding: .75rem 1.25rem 1.25rem;
    }
    .akcja-empatia-banner {
        padding: 1.5rem;
    }
    .founder-card {
        padding: 1.5rem;
    }
}
.about-card { 
    background: #fff !important; 
    border: 1px solid #000; 
    border-radius: 8px; 
    padding: 1.25rem 1.5rem; 
    height: 100%; 
}
  .about-card h3 { 
      font-size: 0.98rem; 
      font-weight: 900; 
      margin-bottom: 0.6rem; 
}
  .about-card p { 
      font-size: 0.875rem; 
      color: var(--ae-muted); 
      margin: 0; 
}
/* WARSZTATY */
  .section-warsztaty { background: #fff; padding: 4rem 0; }
  
  .workshop-card { 
      border: 1px solid #000; 
      border-radius: 8px; 
      padding: 1.5rem; 
      margin-bottom: 1rem; 
}
  .workshop-city { 
      font-size: 0.72rem; 
      font-weight: 800; 
      text-transform: uppercase; 
      letter-spacing: 0.08em; 
      color: #2C3E50; 
}
  .workshop-date { 
      font-size: 0.82rem; 
      color: #2A7B6E; 
      margin-top: 0.15rem; 
}
  .workshop-card h3 { 
      font-size: 1rem; 
      font-weight: 800; 
      margin-bottom: 0.4rem; 
}
  .workshop-card p { 
      font-size: 0.975rem; 
      color: var(--ae-muted); 
      margin-bottom: 0.4rem; 
}
  .workshop-trainer { 
      font-size: 0.78rem; 
      color: var(--ae-muted); 
}
  .badge-forming { 
      background: #FFF4E0; 
      color: #A06000; 
      font-size: 0.7rem; 
      font-weight: 600; 
      padding: 0.2rem 0.5rem; 
      border-radius: 4px; 
      display: inline-block; 
      margin-top: 0.4rem; 
}
.badge-closed { 
      background: rgba(255, 0, 0, 0.1); 
      color: #C00000; 
      font-size: 0.7rem; 
      font-weight: 600; 
      padding: 0.2rem 0.5rem; 
      border-radius: 4px; 
      display: inline-block; 
      margin-top: 0.4rem; 
}
  .badge-ready { 
      background: #E6F4EA; 
      color: #1E6B31; 
      font-size: 0.7rem; 
      font-weight: 600; 
      padding: 0.2rem 0.5rem; 
      border-radius: 4px; 
      display: inline-block; 
      margin-top: 0.4rem; 
}
  .workshop-placeholder { 
      border: 1px dashed #000; 
      border-radius: 8px; 
      padding: 1.5rem; 
      text-align: center; 
      color: var(--ae-muted); 
      font-size: 1rem; }

  /* TRENERZY */
  .section-trenerzy { 
      background: var(--ae-bg); 
      padding: 4rem 0; 
}
  .trainer-card {
      background: #fff;
      border: 1px solid #2A7B6E;
      border-radius: 8px;
      padding: 1.25rem;
      height: 100%; }
  .trainer-card.coordinator { 
      border-color: #2A7B6E; 
}
  .trainer-initials {
    width: 44px; 
    height: 44px;
    background: var(--ae-red-light);
    color: var(--ae-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  .trainer-card.coordinator .trainer-initials { 
      background: var(--ae-red); 
      color: #fff; 
}
  .trainer-name { 
      font-size: 1.0rem; 
      font-weight: 800; 
      margin-bottom: 0.45rem; 
}
  .trainer-role { 
      font-size: 0.96rem; 
      color: var(--ae-muted); 
      margin-bottom: 0.15rem; 
}
  .trainer-city { 
      font-size: 0.96rem; 
      color: #2A7B6E; 
      font-weight: 600;
      margin-bottom: 0.4rem; 
}
  .trainer-clickable {
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
}
  .trainer-clickable:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(42, 123, 110, 0.15);
}
  .trainer-link {
      font-size: 0.78rem;
      color: #A06000;
      text-decoration: none;
}
  .trainer-link:hover {
      text-decoration: underline;
}

  /* DOLACZ */
  .section-dolacz { 
      background: #fff; 
      padding: 4rem 0; 
}
  .join-card { 
      border: 1px solid #000; 
      border-radius: 8px; 
      padding: 1.5rem; 
      height: 100%; 
}
  .join-card h3 { 
      font-size: 1.1rem; 
      font-weight: 800; 
      margin-bottom: 0.75rem; }
  .join-card p { font-size: 0.875rem; color: var(--ae-muted); margin-bottom: 1.25rem; }

.btn-ae-primary { 
    background: #2A7B6E; 
    color: #fff; 
    border: none; 
    padding: 0.65rem 1.4rem; 
}
  .btn-ae-primary:hover {
      background: #1E3A5F;
      color: #fff;
}

/* ---- Workshop Filters ---- */
.workshop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.filter-pill {
    background: #fff;
    border: 1px solid var(--ew-border);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ew-text-mid);
    cursor: pointer;
    transition: all 0.2s;
}
.filter-pill:hover {
    border-color: #2A7B6E;
    color: #2A7B6E;
}
.filter-pill.active {
    background: #2A7B6E;
    color: #fff;
    border-color: #2A7B6E;
}

/* ---- Workshop Actions ---- */
.workshop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.workshop-actions .btn-sm {
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
}

/* ---- Zapisy zamknięte badge ---- */
.badge-status-closed {
    display: inline-block;
    background: rgba(140, 150, 165, 0.12);
    color: #8A9AAA;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 0.4rem;
}

/* ---- Workshop Modal ---- */
.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ew-heading);
}
.modal-meta {
    font-size: 0.88rem;
    color: var(--ew-text-mid);
    margin-bottom: 1rem;
}
.modal-meta i {
    color: #C8956C;
    margin-right: 0.25rem;
}
.modal-trainer-bio {
    font-size: 0.9rem;
    color: var(--ew-text-mid);
    line-height: 1.55;
}
.modal-content {
    border-radius: 1rem;
    border: none;
}
.modal-header {
    border-bottom: 1px solid var(--ew-border-lt);
    padding: 1.5rem;
}
.modal-body {
    padding: 1.5rem;
}
.modal-body p, .modal-body li {
    font-size: 0.95rem;
}
.modal-footer {
    border-top: 1px solid var(--ew-border-lt);
    padding: 1rem 1.5rem;
}

/* ---- Workshop Collaboration ---- */
.workshop-collab {
    font-size: 0.82rem;
    font-weight: 600;
    color: #2A7B6E;
    margin-top: 0.25rem;
}


/* ---- Trainer Avatar Placeholder ---- */
.trainer-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ew-subtle);
    border: 2px solid #2A7B6E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A9AAA;
    font-size: 1.2rem;
}

/* ---- Modal Trainer Header ---- */
.modal-trainer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}
.modal-trainer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2A7B6E;
    flex-shrink: 0;
}
.modal-trainer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ew-subtle);
    border: 2px solid #2A7B6E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A9AAA;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ---- Filter hide animation ---- */
.workshop-card.filter-hidden {
    display: none;
}