#projects{
  position:relative;
}

#projects .section-head-row{
  align-items:center;
  gap:18px;
}

.project-filters{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  padding:6px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--bg-elev);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 28px rgba(17,24,39,0.06);
}

.filter-btn{
  position:relative;
  border:0;
  padding:11px 16px;
  border-radius:999px;
  background:transparent;
  color:var(--muted);
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.01em;
  transition:
    transform .25s ease,
    background-color .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

.filter-btn:hover{
  color:var(--text);
  background:rgba(79,70,229,0.08);
  transform:translateY(-1px);
}

.filter-btn.active{
  color:var(--text);
  background:linear-gradient(
    135deg,
    var(--primary-soft),
    color-mix(in srgb, var(--primary-soft) 60%, transparent)
  );
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.05);
}

#projectsGrid.projects-showcase{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}

.project-card{
  --project-accent: var(--primary);
  --project-accent-soft: var(--primary-soft);
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:28px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-elev) 88%, transparent), var(--bg-elev));
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background-color .35s ease;
  isolation:isolate;
}

.project-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--project-accent) 16%, transparent), transparent 42%),
    linear-gradient(135deg, color-mix(in srgb, var(--project-accent-soft) 75%, transparent), transparent 55%);
  opacity:.9;
  pointer-events:none;
  z-index:0;
}

.project-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  z-index:0;
  opacity:.75;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--project-accent) 22%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.project-card > *{
  position:relative;
  z-index:1;
}

.project-card.is-clickable{
  cursor:pointer;
}

.project-card.is-clickable:focus-visible{
  outline:2px solid color-mix(in srgb, var(--project-accent) 55%, #fff);
  outline-offset:3px;
}

.project-card:hover{
  transform:translateY(-6px);
  border-color:color-mix(in srgb, var(--project-accent) 26%, var(--line));
  box-shadow:
    0 24px 60px rgba(17,24,39,0.12),
    0 0 0 1px color-mix(in srgb, var(--project-accent) 10%, transparent);
}

.project-card.accent-llm{
  --project-accent:#6f63ff;
  --project-accent-soft:rgba(111,99,255,0.14);
}

.project-card.accent-vision{
  --project-accent:#10b981;
  --project-accent-soft:rgba(16,185,129,0.14);
}

.project-card.accent-robotics{
  --project-accent:#f59e0b;
  --project-accent-soft:rgba(245,158,11,0.14);
}

.project-card.accent-product{
  --project-accent:#06b6d4;
  --project-accent-soft:rgba(6,182,212,0.14);
}

.project-feature{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(300px, .9fr);
  gap:24px;
  padding:28px;
  min-height:420px;
}

.project-feature-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:16px;
  min-width:0;
}

.project-feature-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.project-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  min-width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:color-mix(in srgb, var(--project-accent) 10%, transparent);
  color:var(--text);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.project-kicker::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--project-accent);
  box-shadow:0 0 0 6px color-mix(in srgb, var(--project-accent) 16%, transparent);
}

.project-category{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid color-mix(in srgb, var(--project-accent) 16%, var(--line));
  color:var(--text);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.project-feature-title{
  font-size:clamp(1.7rem, 3.6vw, 2.8rem);
  line-height:1.05;
  letter-spacing:-.03em;
  max-width:12ch;
}

.project-feature-summary{
  color:var(--muted);
  font-size:1rem;
  line-height:1.9;
  max-width:60ch;
}

.project-feature-stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.feature-stat{
  padding:14px 16px;
  border-radius:18px;
  background:var(--surface);
  border:1px solid var(--line);
}

.feature-stat span{
  display:block;
  color:var(--muted);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.feature-stat strong{
  display:block;
  color:var(--text);
  font-size:1rem;
  line-height:1.4;
}

.project-feature-stack{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.stack-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.stack-tag{
  padding:9px 11px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:.83rem;
  font-weight:600;
  transition:
    transform .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    color .25s ease;
}

.project-card:hover .stack-tag{
  transform:translateY(-1px);
  border-color:color-mix(in srgb, var(--project-accent) 16%, var(--line));
  color:var(--text);
}

.project-impact{
  margin-top:2px;
  color:var(--text);
  font-size:.94rem;
  line-height:1.8;
}

.impact-label{
  display:block;
  color:var(--muted);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.project-feature-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:4px;
}

.project-explore-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 18px;
  border:1px solid color-mix(in srgb, var(--project-accent) 18%, var(--line));
  border-radius:16px;
  background:var(--surface);
  color:var(--text);
  font-weight:700;
  transition:
    transform .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.project-explore-btn:hover{
  transform:translateY(-2px);
  background:color-mix(in srgb, var(--project-accent) 10%, var(--surface));
  border-color:color-mix(in srgb, var(--project-accent) 22%, var(--line));
  box-shadow:0 12px 28px color-mix(in srgb, var(--project-accent) 10%, transparent);
}

.project-explore-btn i{
  color:var(--project-accent);
}

.project-feature-visual{
  position:relative;
  min-height:100%;
  border-radius:24px;
  overflow:hidden;
  border:1px solid color-mix(in srgb, var(--project-accent) 14%, var(--line));
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--project-accent) 16%, transparent), transparent 28%),
    radial-gradient(circle at 80% 75%, color-mix(in srgb, var(--project-accent) 10%, transparent), transparent 24%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 86%, transparent), color-mix(in srgb, var(--bg-elev) 94%, transparent));
  display:grid;
  place-items:center;
  padding:22px;
}

.project-feature-visual.has-image{
  padding:0;
  background:linear-gradient(180deg, color-mix(in srgb, var(--surface) 86%, transparent), color-mix(in srgb, var(--bg-elev) 94%, transparent));
}

.project-feature-image-wrap{
  position:relative;
  width:100%;
  height:100%;
  min-height:100%;
}

.project-feature-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.04), rgba(15,23,42,0.22)),
    linear-gradient(0deg, rgba(15,23,42,0.55), rgba(15,23,42,0.08) 35%, transparent 70%);
  pointer-events:none;
}

.project-feature-image{
  width:100%;
  height:100%;
  min-height:100%;
  object-fit:cover;
}

.feature-image-badge{
  position:absolute;
  top:16px;
  inset-inline-end:16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(15,23,42,0.46);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  backdrop-filter:blur(10px);
  z-index:2;
}

.feature-image-panel{
  position:absolute;
  inset-inline-start:18px;
  inset-inline-end:18px;
  bottom:18px;
  padding:14px;
  border-radius:20px;
  background:rgba(15,23,42,0.44);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(12px);
  color:#fff;
  z-index:2;
}

.feature-image-panel strong{
  display:block;
  font-size:.95rem;
  margin-bottom:6px;
}

.feature-image-panel span{
  display:block;
  font-size:.82rem;
  line-height:1.7;
  color:rgba(255,255,255,0.82);
}

.feature-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(26px);
  opacity:.7;
  pointer-events:none;
}

.feature-orb.one{
  width:140px;
  height:140px;
  top:8%;
  inset-inline-start:6%;
  background:color-mix(in srgb, var(--project-accent) 22%, transparent);
}

.feature-orb.two{
  width:180px;
  height:180px;
  bottom:6%;
  inset-inline-end:4%;
  background:color-mix(in srgb, var(--project-accent) 16%, transparent);
}

.feature-panel{
  position:relative;
  width:min(100%, 340px);
  min-height:260px;
  border-radius:28px;
  padding:20px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 22px 46px rgba(15,23,42,0.18);
}

[data-theme="dark"] .feature-panel{
  background:rgba(15,23,42,0.22);
  border-color:rgba(255,255,255,0.07);
}

.feature-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:color-mix(in srgb, var(--project-accent) 16%, transparent);
  color:var(--project-accent);
  font-size:1.35rem;
  box-shadow:0 0 0 10px color-mix(in srgb, var(--project-accent) 10%, transparent);
}

.feature-mini-label{
  display:block;
  margin-top:22px;
  color:var(--muted);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.feature-mini-stack{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.feature-mini-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text);
  font-size:.78rem;
  font-weight:600;
}

.feature-index{
  position:absolute;
  inset-inline-end:18px;
  bottom:16px;
  font-size:clamp(2rem, 5vw, 4.5rem);
  line-height:1;
  font-weight:900;
  letter-spacing:-.06em;
  color:color-mix(in srgb, var(--project-accent) 18%, var(--text));
  opacity:.5;
  pointer-events:none;
}

.project-cluster{
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  gap:18px;
}

.project-teaser{
  padding:22px;
  min-height:100%;
  display:flex;
  flex-direction:column;
  grid-column:span 6;
}

.project-teaser[data-variant="wide"]{
  grid-column:span 7;
}

.project-teaser[data-variant="compact"]{
  grid-column:span 5;
}

.project-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.project-icon-badge{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:color-mix(in srgb, var(--project-accent) 12%, transparent);
  color:var(--project-accent);
  font-size:1.05rem;
  box-shadow:0 0 0 8px color-mix(in srgb, var(--project-accent) 8%, transparent);
  flex-shrink:0;
}

.project-card-title{
  font-size:1.18rem;
  line-height:1.35;
  transition:transform .28s ease, color .28s ease;
}

.project-teaser:hover .project-card-title{
  transform:translateX(-2px);
  color:var(--text);
}

html[dir="ltr"] .project-teaser:hover .project-card-title{
  transform:translateX(2px);
}

.project-summary{
  margin-top:6px;
  color:var(--muted);
  line-height:1.8;
  font-size:.95rem;
}

.project-stack-list{
  margin-top:16px;
}

.project-card-foot{
  margin-top:auto;
  padding-top:18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  border-top:1px dashed color-mix(in srgb, var(--project-accent) 14%, var(--line-strong));
}

.project-card-foot .project-impact{
  margin:0;
  flex:1;
  font-size:.9rem;
}

.project-arrow{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:var(--surface);
  border:1px solid color-mix(in srgb, var(--project-accent) 14%, var(--line));
  color:var(--project-accent);
  font-size:1rem;
  transition:
    transform .28s ease,
    background-color .28s ease,
    border-color .28s ease;
  flex-shrink:0;
}

.project-teaser:hover .project-arrow{
  transform:translateY(-2px) rotate(-8deg);
  background:color-mix(in srgb, var(--project-accent) 10%, var(--surface));
  border-color:color-mix(in srgb, var(--project-accent) 18%, var(--line));
}

.projects-empty{
  padding:24px;
  border:1px dashed var(--line-strong);
  border-radius:24px;
  background:var(--bg-elev);
  color:var(--muted);
  text-align:center;
  font-size:.98rem;
}

/* Project Details Modal */
.project-detail-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(5,10,18,0.78);
  backdrop-filter:blur(10px);
  z-index:60;
}

.project-detail-modal.open{
  display:flex;
}

.project-detail-dialog{
  position:relative;
  width:min(1120px, 100%);
  max-height:min(90vh, 920px);
  overflow:auto;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-elev) 92%, transparent), var(--bg-elev));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.project-detail-close{
  position:absolute;
  top:16px;
  inset-inline-end:16px;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  background:rgba(15,23,42,0.42);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:1.05rem;
  z-index:3;
  backdrop-filter:blur(10px);
  transition:
    transform .25s ease,
    background-color .25s ease,
    border-color .25s ease;
}

.project-detail-close:hover{
  transform:translateY(-2px);
  background:rgba(79,70,229,0.34);
  border-color:rgba(255,255,255,0.18);
}

.project-detail-layout{
  display:grid;
  grid-template-columns:minmax(320px, .95fr) minmax(0, 1.05fr);
  min-height:100%;
}

.project-detail-media{
  position:relative;
  min-height:380px;
  border-inline-end:1px solid var(--line);
  background:
    radial-gradient(circle at 16% 16%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 28%),
    radial-gradient(circle at 84% 74%, color-mix(in srgb, var(--secondary) 12%, transparent), transparent 26%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 88%, transparent), color-mix(in srgb, var(--bg-elev) 94%, transparent));
  overflow:hidden;
}

.project-detail-image{
  width:100%;
  height:100%;
  min-height:380px;
  object-fit:cover;
}

.project-detail-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.06), rgba(15,23,42,0.38));
  pointer-events:none;
}

.project-detail-media-info{
  position:absolute;
  inset-inline-start:18px;
  inset-inline-end:18px;
  bottom:18px;
  padding:14px;
  border-radius:18px;
  background:rgba(15,23,42,0.42);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  color:#fff;
  z-index:2;
}

.project-detail-media-info strong{
  display:block;
  font-size:.95rem;
  margin-bottom:6px;
}

.project-detail-media-info span{
  display:block;
  font-size:.82rem;
  line-height:1.7;
  color:rgba(255,255,255,0.84);
}

.project-detail-placeholder{
  width:100%;
  min-height:380px;
  height:100%;
  display:grid;
  place-items:center;
  padding:24px;
}

.project-detail-placeholder-box{
  width:min(100%, 320px);
  min-height:250px;
  border-radius:28px;
  padding:20px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 20px 44px rgba(15,23,42,0.18);
}

.project-detail-placeholder-icon{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:var(--primary-soft);
  color:var(--primary);
  font-size:1.35rem;
  box-shadow:0 0 0 10px rgba(79,70,229,0.08);
}

.project-detail-placeholder-title{
  margin-top:20px;
  font-size:1rem;
  font-weight:800;
  line-height:1.5;
}

.project-detail-placeholder-text{
  margin-top:10px;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.8;
}

.project-detail-content{
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.project-detail-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-inline-end:54px;
}

.project-detail-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 12px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--text);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.project-detail-title{
  font-size:clamp(1.45rem, 3vw, 2.35rem);
  line-height:1.15;
  letter-spacing:-.03em;
}

.project-detail-summary{
  color:var(--muted);
  font-size:1rem;
  line-height:1.9;
}

.project-detail-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.project-detail-card{
  padding:16px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--surface);
}

.project-detail-card-label{
  display:block;
  color:var(--muted);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.project-detail-card-text{
  color:var(--text);
  font-size:.95rem;
  line-height:1.8;
}

.project-detail-stack{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.project-detail-stack .stack-tag{
  border-color:color-mix(in srgb, var(--primary) 12%, var(--line));
}

.project-detail-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.project-detail-list li{
  position:relative;
  padding-inline-start:20px;
  color:var(--muted);
  line-height:1.8;
}

.project-detail-list li::before{
  content:"";
  position:absolute;
  inset-inline-start:0;
  top:.72em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--primary);
}

@media (max-width: 1120px){
  .project-feature{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .project-feature-title{
    max-width:none;
  }

  .project-cluster{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .project-teaser,
  .project-teaser[data-variant="wide"],
  .project-teaser[data-variant="compact"]{
    grid-column:auto;
  }

  .project-detail-layout{
    grid-template-columns:1fr;
  }

  .project-detail-media{
    min-height:320px;
    border-inline-end:0;
    border-bottom:1px solid var(--line);
  }

  .project-detail-image,
  .project-detail-placeholder{
    min-height:320px;
  }
}

@media (max-width: 920px){
  .project-filters{
    width:100%;
    justify-content:flex-start;
    border-radius:22px;
  }

  .filter-btn{
    font-size:.88rem;
  }

  .project-feature{
    padding:22px;
  }

  .project-feature-stats{
    grid-template-columns:1fr;
  }

  .project-cluster{
    grid-template-columns:1fr;
  }

  .project-teaser{
    grid-column:auto;
  }

  .project-detail-content{
    padding:22px;
  }

  .project-detail-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 680px){
  .project-filters{
    padding:6px;
    gap:8px;
    border-radius:20px;
  }

  .filter-btn{
    padding:10px 14px;
    font-size:.84rem;
  }

  .project-feature{
    padding:18px;
    gap:18px;
    border-radius:24px;
  }

  .project-feature-title{
    font-size:clamp(1.35rem, 8vw, 2rem);
  }

  .project-feature-summary,
  .project-summary{
    font-size:.92rem;
    line-height:1.75;
  }

  .project-feature-visual{
    padding:16px;
    min-height:260px;
  }

  .project-feature-visual.has-image{
    min-height:260px;
  }

  .project-feature-image,
  .project-feature-image-wrap{
    min-height:260px;
  }

  .feature-image-badge{
    top:12px;
    inset-inline-end:12px;
    min-height:34px;
    padding:0 10px;
    font-size:.72rem;
  }

  .feature-image-panel{
    inset-inline-start:12px;
    inset-inline-end:12px;
    bottom:12px;
    padding:12px;
  }

  .feature-panel{
    min-height:220px;
    padding:16px;
    border-radius:24px;
  }

  .feature-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    font-size:1.18rem;
  }

  .feature-index{
    font-size:2.7rem;
  }

  .project-teaser{
    padding:18px;
    border-radius:24px;
  }

  .project-icon-badge{
    width:44px;
    height:44px;
    border-radius:14px;
  }

  .project-card-title{
    font-size:1.06rem;
  }

  .project-card-foot{
    align-items:flex-start;
  }

  .project-arrow{
    width:42px;
    height:42px;
    border-radius:14px;
  }

  .project-explore-btn{
    width:100%;
    justify-content:center;
  }

  .project-detail-modal{
    padding:14px;
  }

  .project-detail-dialog{
    border-radius:24px;
  }

  .project-detail-close{
    top:12px;
    inset-inline-end:12px;
    width:44px;
    height:44px;
    border-radius:14px;
  }

  .project-detail-media{
    min-height:250px;
  }

  .project-detail-image,
  .project-detail-placeholder{
    min-height:250px;
  }

  .project-detail-content{
    padding:18px;
  }

  .project-detail-top{
    padding-inline-end:46px;
  }

  .project-detail-title{
    font-size:1.3rem;
  }

  .project-detail-summary{
    font-size:.94rem;
    line-height:1.8;
  }
}