.workshops-page{
  background:#f5f7f8;
  min-height:100vh;
}
.workshops-public-wrap{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
}
.workshops-public-hero{
  padding:52px 0 26px;
}
.workshops-public-hero h1{
  margin:6px 0 10px;
  color:var(--navy);
  font-size:clamp(2.2rem,5vw,4.4rem);
}
.workshops-public-hero p{
  max-width:780px;
  color:#647787;
  font-size:1.05rem;
  line-height:1.65;
}
.workshops-catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  padding-bottom:70px;
}
.workshops-catalog-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:#fff;
  border:1px solid #dce5e9;
  border-radius:22px;
  box-shadow:0 14px 36px rgba(20,50,70,.06);
}
.workshops-catalog-cover{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  background:#e9f1ed;
}
.workshops-catalog-placeholder{
  display:grid;
  place-items:center;
  width:100%;
  aspect-ratio:16/9;
  background:linear-gradient(135deg,#eaf4ee,#f3eee3);
  color:#0a6c3f;
  font-size:1rem;
  font-weight:900;
}
.workshops-catalog-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:18px;
}
.workshops-catalog-body h2{
  margin:8px 0 13px;
  color:var(--navy);
  font-size:1.25rem;
  line-height:1.28;
}
.workshops-catalog-meta{
  display:grid;
  gap:8px;
  margin-bottom:15px;
  color:#566c7b;
  font-size:.84rem;
}
.workshops-catalog-meta strong{
  color:#163e5b;
}
.workshops-catalog-availability{
  display:inline-flex;
  align-self:flex-start;
  margin-bottom:15px;
  padding:6px 10px;
  border-radius:999px;
  background:#e7f4eb;
  color:#17633c;
  font-size:.72rem;
  font-weight:900;
}
.workshops-catalog-actions{
  margin-top:auto;
}
.workshops-catalog-actions .btn{
  width:100%;
  justify-content:center;
}
.workshop-detail-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,.72fr);
  gap:24px;
  padding:42px 0 70px;
}
.workshop-detail-main,
.workshop-detail-side,
.workshop-instructors-section{
  background:#fff;
  border:1px solid #dce5e9;
  border-radius:22px;
  box-shadow:0 14px 36px rgba(20,50,70,.05);
}
.workshop-detail-main{
  overflow:hidden;
}
.workshop-detail-cover{
  width:100%;
  max-height:460px;
  object-fit:cover;
  background:#e9f1ed;
}
.workshop-detail-content{
  padding:24px;
}
.workshop-detail-content h1{
  margin:8px 0 15px;
  color:var(--navy);
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1.08;
}
.workshop-detail-description{
  color:#40596a;
  line-height:1.75;
  white-space:pre-line;
}
.workshop-detail-side{
  align-self:start;
  padding:22px;
  position:sticky;
  top:88px;
}
.workshop-detail-side h2{
  margin-top:0;
  color:var(--navy);
}
.workshop-detail-facts{
  display:grid;
  gap:10px;
}
.workshop-detail-fact{
  padding:13px;
  border-radius:13px;
  background:#f5f8f9;
}
.workshop-detail-fact span{
  display:block;
  margin-bottom:4px;
  color:#71818b;
  font-size:.68rem;
  font-weight:900;
  text-transform:uppercase;
}
.workshop-detail-fact strong{
  color:#173d59;
  line-height:1.4;
}
.workshop-detail-side .btn{
  width:100%;
  justify-content:center;
  margin-top:15px;
}
.workshop-instructors-section{
  grid-column:1/-1;
  padding:24px;
}
.workshop-instructors-section h2{
  margin-top:0;
  color:var(--navy);
}
.workshop-instructors-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px;
}
.workshop-instructor-card{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:15px;
  padding:15px;
  border:1px solid #dfe7ea;
  border-radius:16px;
}
.workshop-instructor-photo{
  width:96px;
  height:96px;
  border-radius:15px;
  object-fit:cover;
  background:#edf2f3;
}
.workshop-instructor-placeholder{
  display:grid;
  place-items:center;
  width:96px;
  height:96px;
  border-radius:15px;
  background:#e9f3ed;
  color:#197449;
  font-weight:900;
}
.workshop-instructor-card h3{
  margin:3px 0 5px;
  color:var(--navy);
}
.workshop-instructor-card p{
  margin:4px 0;
  color:#5b6f7c;
  line-height:1.55;
}
@media(max-width:900px){
  .workshops-catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .workshop-detail-shell{grid-template-columns:1fr}
  .workshop-detail-side{position:static}
}
@media(max-width:620px){
  .workshops-catalog-grid{grid-template-columns:1fr}
  .workshop-instructors-grid{grid-template-columns:1fr}
  .workshop-instructor-card{grid-template-columns:76px 1fr}
  .workshop-instructor-photo,
  .workshop-instructor-placeholder{width:76px;height:76px}
}
