@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

:root{
      --bg:#fff;
      --surface:#f5f5f7;
      --text:#1d1d1f;
      --muted:#6e6e73;
      --line:rgba(0,0,0,.10);
      --card:#fff;
      --shadow:0 6px 18px rgba(0,0,0,.08);
      --r:22px;
      --rs:16px;
      --header-height:96px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: "Lato", "Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background:var(--bg);
      color:var(--text);
      padding-top:var(--header-height);
    }
    a{color:inherit}
    .container{max-width:1100px;margin:0 auto;padding:0 20px}

    /* Top bar */
    .promo{
      background:var(--surface);
      border-bottom:1px solid rgba(0,0,0,.06);
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
    }
    .promo .container{padding:10px 20px}

    /* Header */
    .site-header{
      position:fixed;top:0;left:0;right:0;z-index:50;
      background:rgba(255,255,255,.78);
      backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(0,0,0,.08);
    }
    .header-inner{
      display:flex;align-items:center;justify-content:space-between;
      padding:12px 0;gap:16px;
    }
    .brand{display:flex;align-items:center;gap:5px;text-decoration:none;line-height:1.1}
    .brand-mark{width:60px;height:60px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;margin-left:19px}
    .brand-mark img{width:100%;height:100%;object-fit:contain;display:block}
    .brand-title{font-weight:700;letter-spacing:-0.02em}
    .nav{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
    .nav-link{
      text-decoration:none;font-size:13px;color:var(--muted);
      padding:8px 10px;border-radius:999px;
    }
    .nav-link:hover{color:var(--text);background:rgba(0,0,0,.04)}
    .nav-link.active{color:var(--text);background:rgba(0,0,0,.06)}

    main.container{padding:26px 20px 60px}

    /* Hero + canvas bg */
    .hero-stage{
      position:relative;
      background:var(--surface);
      border:1px solid rgba(0,0,0,.06);
      border-radius:var(--r);
      overflow:hidden;
      padding:26px 24px;
    }
    .kspace-wrap{
      position:absolute; inset:0;
      overflow:hidden; border-radius:inherit;
      z-index:1;
    }
    .kspace-wrap:before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 520px at 70% 25%, rgba(0,122,255,.18), transparent 60%),
        radial-gradient(720px 520px at 30% 75%, rgba(175,82,222,.12), transparent 62%),
        radial-gradient(700px 520px at 55% 70%, rgba(52,199,89,.10), transparent 62%);
      opacity:.65;
      pointer-events:none;
    }
    #kspace{position:absolute; inset:0; width:100%; height:100%; display:block}

    .hero{position:relative; z-index:2; display:flex; gap:22px}
    .hero-title{
      margin:0; font-size:56px; letter-spacing:-0.06em; line-height:1.0;
    }
    .hero-title span{display:block}
    .hero-title span:not(:last-child){margin-bottom:6px}
    .hero-sub{margin:0;color:var(--muted);line-height:1.65;max-width:66ch;font-size:15px}
    .hero-title + .hero-sub{margin-top:14px}
    .hero-sub + .hero-sub{margin-top:6px}

    @media (max-width:900px){.hero-title{font-size:44px}}
    @media (max-width:720px){:root{--header-height:112px}}
    @media (max-width:560px){
      :root{--header-height:128px}
      .hero-stage{padding:22px 18px}.hero-title{font-size:38px}
    }

    /* Section head */
    .section-head{display:flex;align-items:baseline;justify-content:space-between;margin:26px 0 10px;gap:12px}
    .section-title{margin:0;font-size:22px;letter-spacing:-0.03em}
    .section-kicker{color:var(--muted);font-size:13px}
    .kicker-link{
      display:inline-flex;align-items:center;gap:8px;
      text-decoration:none;color:var(--text);
      background:rgba(0,0,0,.05);
      padding:7px 10px;border-radius:999px;
      border:1px solid rgba(0,0,0,.06);
    }
    .kicker-link:hover{background:rgba(0,0,0,.07)}
    .kicker-link:after{content:"→";color:rgba(0,0,0,.55)}

    /* Horizontal cards */
    .hscroll-wrap{position:relative}
    .hscroll{
      display:flex; gap:16px; overflow:auto;
      padding:10px 2px 14px;
      scroll-behavior:smooth; scrollbar-width:none;
      scroll-snap-type:x mandatory;
    }
    .hscroll::-webkit-scrollbar{display:none}
    .card{
      background:var(--card);
      border-radius:var(--r);
      box-shadow:var(--shadow);
      border:1px solid rgba(0,0,0,.06);
      scroll-snap-align:start;
    }
    .card-wide{
      flex:0 0 calc((100% - 16px)/2);
      max-width:calc((100% - 16px)/2);
      height:520px;
      padding:18px;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    @media (max-width:560px){
      .card-wide{flex-basis:86vw; max-width:86vw; height:420px}
    }
    .card-eyebrow{color:var(--muted); font-size:12px; letter-spacing:.02em; margin:0 0 8px}
    .card-title{margin:0; font-size:22px; letter-spacing:-0.03em; line-height:1.25; font-weight:700}
    .card-desc{margin:10px 0 0; color:var(--muted); line-height:1.55; font-size:14px; max-width:56ch}
    .card-badge{position:absolute; top:16px; right:16px; font-size:12px; padding:6px 10px; border-radius:999px; background:rgba(0,0,0,.06)}
    .pills{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
    .pill{font-size:12px; padding:7px 10px; border-radius:999px; background:var(--surface); box-shadow:inset 0 0 0 1px rgba(0,0,0,.06)}
    .card-media{
      height:300px;
      border-radius:16px;
      overflow:hidden;
      background:var(--surface);
      border:1px solid rgba(0,0,0,.06);
      margin-top:auto;
    }
    .card-media img{width:100%; height:100%; object-fit:contain; display:block}

    /* Scroll buttons */
    .scroll-btn{
      position:absolute; top:50%; transform:translateY(-50%);
      width:38px; height:38px; border-radius:999px;
      border:1px solid rgba(0,0,0,.10);
      background:rgba(255,255,255,.9);
      box-shadow:0 8px 16px rgba(0,0,0,.10);
      display:grid; place-items:center;
      cursor:pointer; z-index:20;
    }
    .scroll-btn:hover{background:#fff}
    .scroll-left{left:-8px}
    .scroll-right{right:-8px}
    @media (max-width:1100px){.scroll-left{left:2px}.scroll-right{right:2px}}

    /* Marquee */
    .logo-marquee{
      position:relative;
      border-radius:var(--r);
      border:1px solid rgba(0,0,0,.06);
      background:var(--surface);
      overflow:hidden;
      padding:12px 0;
    }
    .logo-marquee:before,.logo-marquee:after{
      content:""; position:absolute; top:0; bottom:0; width:80px; pointer-events:none; z-index:2;
    }
    .logo-marquee:before{left:0; background:linear-gradient(90deg,var(--surface),rgba(245,245,247,0))}
    .logo-marquee:after{right:0; background:linear-gradient(270deg,var(--surface),rgba(245,245,247,0))}
    .logo-track{
      display:flex; gap:18px; align-items:center; width:max-content;
      animation:marquee 22s linear infinite;
    }
    .logo-marquee:hover .logo-track{animation-play-state:paused}
.logo-item{
      height:80px; min-width:180px; padding:0 28px; border-radius:999px;
      display:flex; align-items:center; justify-content:center;
      background:#fff; border:1px solid rgba(0,0,0,.06); box-shadow:var(--shadow);
      color:rgba(0,0,0,.72); font-size:15px; letter-spacing:.02em;
      user-select:none;
    }
.logo-item img{
      max-height:48px; max-width:170px; width:auto; height:auto; object-fit:contain; display:block;
    }
.logo-item:hover{filter:none; opacity:1}
    @keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

    /* News page */
    .news-grid{
      display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px; margin-top:12px;
    }
    .news-item-link{
      text-decoration:none;
      color:inherit;
      display:block;
    }
    .news-item{
      padding:22px; border-radius:var(--r);
      background:#fff; border:1px solid rgba(0,0,0,.06); box-shadow:var(--shadow);
      display:flex; flex-direction:column;
      min-height:520px;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .news-item:hover{
      transform:scale(1.02);
      box-shadow:0 10px 24px rgba(0,0,0,.12);
    }
    .news-item-link:focus-visible .news-item{
      outline:2px solid rgba(10,132,255,.55);
      outline-offset:3px;
      transform:scale(1.02);
      box-shadow:0 10px 24px rgba(0,0,0,.12);
    }
    .news-meta{display:flex; gap:10px; align-items:center; color:var(--muted); font-size:12px}
    .news-dot{width:4px;height:4px;border-radius:999px;background:rgba(0,0,0,.25)}
    .news-h{margin:10px 0 0; font-size:18px; letter-spacing:-0.02em; line-height:1.28}
    .news-p{margin:8px 0 0; color:var(--muted); font-size:14px; line-height:1.6}
    .news-tags{display:flex; flex-wrap:wrap; gap:6px; margin-top:12px}
    .news-tag{font-size:12px; padding:6px 10px; border-radius:999px; background:var(--surface); box-shadow:inset 0 0 0 1px rgba(0,0,0,.06)}
    .news-media{
      height:280px; border-radius:16px; overflow:hidden;
      background:var(--surface); border:1px solid rgba(0,0,0,.06);
      margin-top:auto;
    }
    .news-media img{width:100%;height:100%;object-fit:cover;display:block}
    .news-media.is-empty{background:rgba(0,0,0,.04)}
    @media (max-width:860px){.news-grid{grid-template-columns:1fr}}

    /* Team (simple) */
    .team-section{display:flex; flex-direction:column; gap:26px}
    .team-group{display:flex; flex-direction:column; gap:12px}
    .team-head{display:flex; align-items:baseline; justify-content:space-between; gap:12px}
    .team-note{color:var(--muted); font-size:12px}
    .team-grid{
      display:grid; grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
    }
    .team-card{
      display:flex; gap:12px;
      padding:14px; border-radius:var(--r);
      background:#fff; border:1px solid rgba(0,0,0,.06); box-shadow:var(--shadow);
    }
    .team-prof{
      display:grid; grid-template-columns:180px 1fr; gap:20px;
      padding:24px; border-radius:var(--r);
      background:#fff; border:1px solid rgba(0,0,0,.06); box-shadow:var(--shadow);
    }
    .avatar{
      width:180px;height:180px;border-radius:32px;
      background:var(--surface); border:1px solid rgba(0,0,0,.06);
    }
    .avatar img{width:100%; height:100%; object-fit:cover; display:block; border-radius:inherit}
    .team-prof .avatar img{object-position:50% 10%}

    .team-card .avatar{width:88px; height:88px; border-radius:18px; flex:0 0 auto}
    .info{display:flex; flex-direction:column}
    .sub{margin:6px 0 0; color:var(--muted); font-size:13px}
    .sub a{text-decoration:none; color:inherit}
    .sub a:hover{text-decoration:underline}
    .links{display:flex; gap:10px; margin-top:8px; font-size:12px}
    .links a{text-decoration:none; color:var(--text)}
    .icon-link{display:inline-flex; width:26px; height:26px; border-radius:10px}
    .icon-link img{width:100%; height:100%; display:block}
    .team-prof .icon-link{width:32px; height:32px; border-radius:12px}
    .icon-link:hover{
      box-shadow:0 0 12px rgba(10,132,255,.45), 0 0 24px rgba(10,132,255,.22);
    }
    .role{color:var(--muted); font-size:12px; letter-spacing:.02em}
    .name{margin:6px 0 0; font-size:22px; letter-spacing:-0.03em}
    .meta{margin-top:10px; color:var(--muted); font-size:14px; line-height:1.7}
    .meta a{text-decoration:none}
    .meta a:hover{text-decoration:underline}
    @media (max-width:560px){
      .team-prof{grid-template-columns:1fr}
      .avatar{width:100%; height:240px; border-radius:18px}
    }
    @media (max-width:980px){.team-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
    @media (max-width:640px){
      .team-grid{grid-template-columns:1fr}
      .team-card{flex-direction:column}
      .team-card .avatar{width:100%; height:180px}
    }

    /* Gallery hover */
    .gallery-grid .card{
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .gallery-grid .card:hover{
      transform:scale(1.02);
      box-shadow:0 10px 24px rgba(0,0,0,.12);
    }

    /* Research */
    .research-hero{
      position:relative;
      height:220px;
      border-radius:18px;
      overflow:hidden;
      background:
        radial-gradient(420px 220px at 70% 30%, rgba(60,120,255,.24), transparent 60%),
        radial-gradient(320px 200px at 35% 60%, rgba(0,0,0,.35), transparent 70%),
        linear-gradient(120deg, #0b0c10, #141a2a 55%, #0d111a);
      border:1px solid rgba(0,0,0,.08);
    }
    .research-hero:after{
      content:"";
      position:absolute; inset:0;
      background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
    }
    .research-hero-inner{
      position:relative; z-index:1;
      height:100%;
      display:flex; flex-direction:column; justify-content:flex-end;
      padding:22px 24px;
      color:#f5f7ff;
    }
    .research-hero-title{
      margin:0; font-size:28px; letter-spacing:-0.02em;
    }
    .research-hero-sub{
      margin:6px 0 0; color:rgba(245,247,255,.82); font-size:13px;
    }
    .research-section{
      margin-top:26px; padding-top:26px;
      border-top:1px solid rgba(0,0,0,.08);
    }
    .research-section:first-of-type{
      margin-top:22px; padding-top:0; border-top:0;
    }
    .research-grid{
      display:grid; grid-template-columns:240px 1fr;
      gap:18px; align-items:start;
    }
    .research-media{
      border-radius:14px; overflow:hidden;
      background:var(--surface);
      border:1px solid rgba(0,0,0,.08);
      box-shadow:var(--shadow);
      min-height:180px;
    }
    .research-media img{width:100%; height:100%; object-fit:cover; display:block}
    .research-title{
      margin:0; font-size:20px; color:#1f3d7a; letter-spacing:-0.02em;
    }
    .research-block{margin-top:10px}
    .research-label{
      font-weight:700; color:#1f3d7a; font-size:12px; letter-spacing:.02em;
    }
    .research-list{
      margin:6px 0 0; padding-left:18px;
      color:var(--text); font-size:14px; line-height:1.6;
    }
    .research-list li{margin:4px 0}
    .research-venue{
      font-size:12px; color:var(--muted); font-style:italic; margin-left:4px;
    }
    @media (max-width:820px){
      .research-grid{grid-template-columns:1fr}
      .research-media{min-height:200px}
    }

    /* Publications */
    .pub-section{margin-top:14px}
    .pub-year{font-size:14px; font-weight:700; color:var(--muted); margin:18px 0 8px}
    .pub-list{display:flex; flex-direction:column; gap:10px}
    .pub-item{
      background:#fff; border:1px solid rgba(0,0,0,.06); box-shadow:var(--shadow);
      border-radius:14px; padding:14px 16px;
      display:grid; grid-template-columns:140px 1fr; gap:14px; align-items:start;
    }
    .pub-thumb{
      width:140px; height:125px; border-radius:12px; background:var(--surface);
      border:1px solid rgba(0,0,0,.06);
      display:flex; align-items:center; justify-content:center;
      color:var(--muted); font-size:11px; letter-spacing:.08em;
      text-transform:uppercase;
    }
    .pub-thumb-label{padding:8px 10px; border-radius:8px; border:1px dashed rgba(0,0,0,.12)}
    .pub-thumb img{width:100%; height:100%; object-fit:cover; display:block; border-radius:inherit}
    .pub-body{min-width:0}
    .pub-title{font-weight:600; font-size:15px; margin:0 0 4px}
    .pub-meta{color:var(--muted); font-size:12px}
.pub-author{
      position:relative;
      display:inline-flex;
      align-items:flex-start;
    }
.pub-author-bold{
      font-weight:600;
    }
.pub-author-star{
      padding-right:12px;
    }
.pub-author-star:after{
      content:"★";
      position:absolute;
      top:-4px;
      right:3px;
      font-size:8px;
      color:#424141f7;
    }
    .pub-venue{color:var(--text); font-size:12px; margin-top:4px}
    .pub-status{
      margin-left:8px;
      font-size:11px;
      color:var(--muted);
      background:var(--surface);
      border:1px solid rgba(0,0,0,.06);
      padding:2px 6px;
      border-radius:999px;
    }
    .pub-notes{margin-top:6px; display:flex; flex-direction:column; gap:2px}
    .pub-note{color:var(--muted); font-size:11px}
.pub-tags{display:flex; flex-wrap:wrap; gap:6px; margin-top:8px}
.pub-tag{
      font-size:11px; padding:4px 8px; border-radius:999px; background:var(--surface);
      box-shadow:inset 0 0 0 1px rgba(0,0,0,.06); color:var(--muted);
    }
.pub-tag-nature-methods{
      background:#f1ecff;
      color:#4a3a75;
      box-shadow:none;
      border:1px solid rgba(74,58,117,.15);
    }
.pub-tag-nature-machine-intelligence{
      background:#f1ecff;
      color:#4a3a75;
      box-shadow:none;
      border:1px solid rgba(74,58,117,.15);
    }
.pub-tag-nature-communications{
      background:#f1ecff;
      color:#4a3a75;
      box-shadow:none;
      border:1px solid rgba(74,58,117,.15);
    }
.pub-tag-light-science-and-applications{
      background:#f1ecff;
      color:#4a3a75;
      box-shadow:none;
      border:1px solid rgba(74,58,117,.15);
    }
.pub-tag-elight{
      background:#f1ecff;
      color:#4a3a75;
      box-shadow:none;
      border:1px solid rgba(74,58,117,.15);
    }
.pub-tag-optica{
      background:#e9f7ff;
      color:#1d5c73;
      box-shadow:none;
      border:1px solid rgba(29,92,115,.15);
    }
.pub-tag-optics-express{
      background:#e9f7ff;
      color:#1d5c73;
      box-shadow:none;
      border:1px solid rgba(29,92,115,.15);
    }
    .pub-links{display:flex; gap:8px; margin-top:8px}
    .pub-link{
      font-size:12px; text-decoration:none; color:var(--text);
      background:rgba(0,0,0,.04); padding:5px 8px; border-radius:8px;
      border:1px solid rgba(0,0,0,.06);
    }
    .pub-link:hover{
      background:rgba(0,0,0,.07);
      box-shadow:0 0 0.5px rgba(2, 233, 79, 0.89), 0 0 14px rgba(29, 238, 99, 0.801);
    }

    /* Research cards */
    .research-card{
      display:flex;
      flex-direction:column;
      gap:16px;
      align-items:flex-start;
      position:relative;
      padding-top:0;
      background:rgba(255,255,255,.68);
      box-shadow:0 10px 30px rgba(0,0,0,.10);
      border:1px solid rgba(255,255,255,.6);
      backdrop-filter:blur(18px) saturate(140%);
      -webkit-backdrop-filter:blur(18px) saturate(140%);
      background-clip:padding-box;
    }
    .research-card-media{
      width:100%;
      height:500px;
      border-radius:12px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(0,0,0,.08);
      flex:0 0 auto;
      margin-top:0;
    }
    .research-card-media img{
      width:100%;
      height:100%;
      object-fit:contain;
      background:#fff;
      display:block;
    }
    .research-card-body{
      min-width:0;
      margin-top:0;
    }
    .research-card-title{
      position:static;
      margin:0 0 12px;
    }
    .research-subhead{
      margin-top:12px;
      font-weight:700;
      color:#0b2f4a;
      font-size:12px;
      letter-spacing:.02em;
      display:inline-block;
      padding:4px 8px;
      border-radius:8px;
      background:rgba(201, 231, 255, 0.7);
    }
    .subhead-why{background:rgba(255, 214, 153, 0.7); color:#7c4600;}
    .subhead-questions{background:rgba(169, 235, 255, 0.7); color:#1d5c73;}
    .subhead-build{background:rgba(200, 240, 214, 0.7); color:#1f5f3a;}
    .subhead-directions{background:rgba(255, 204, 229, 0.7); color:#7a305d;}
    .subhead-ideas{background:rgba(208, 200, 255, 0.7); color:#503a8f;}
    .research-paragraph{
      margin:6px 0 0;
      font-size:14px;
      line-height:1.6;
      color:var(--text);
    }
    .research-keywords{
      margin-top:10px;
      font-size:12px;
      color:var(--muted);
      line-height:1.6;
    }
    @media (max-width:680px){
      .research-card-media{height:200px}
    }

    /* Footer */
    .site-footer{border-top:1px solid rgba(0,0,0,.08); background:var(--surface); padding:26px 0}
    .footer-inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}
    .footer-title{font-weight:700}
    .footer-sub,.footer-small{color:var(--muted); font-size:13px; line-height:1.5}
    .footer-meta{display:flex; flex-direction:column; gap:4px; align-items:flex-end}
    @media (max-width:640px){.footer-meta{align-items:flex-start}}


/* Jekyll page chrome */
.page-wrap{padding:26px 0 60px}
.page-title{margin:0;font-size:26px;letter-spacing:-0.03em}
.page-kicker{color:var(--muted);font-size:13px;margin-top:6px}

/* Join page */
.join-roles{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.join-card{
  padding:22px;
  display:flex;
  flex-direction:column;
  height:100%;
  gap:25px;
}
.join-card-main{min-height:160px; display:flex; flex-direction:column; gap:8px}
.join-apply-block{margin-top:0; display:flex; flex-direction:column; gap:0}
.join-card-content{
  min-height:260px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.join-optional-block{min-height:64px; gap:4px}
.join-optional-block .join-label{margin-bottom:10px}
.join-apply-section{min-height:96px}
.join-apply-tight{gap:0}
.join-apply-block .join-label{margin-bottom:2px}
.join-card-main .join-label{margin-bottom:2px}
.join-block-body{margin-top:0}
.join-postdoc .join-optional-block{margin-top:10px}
.join-title{margin:0 0 10px}
.join-list{margin:0; padding-left:18px}
.join-roles{align-items:stretch}
@media (max-width:640px){
  .join-card-main{min-height:0}
}
.join-card-hover{
  transition:transform .18s ease, box-shadow .18s ease;
}
.join-card-hover:hover{
  transform:scale(1.02);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.join-label{
  display:inline-block;
  margin:0 0 8px;
  padding:4px 8px;
  border-radius:8px;
  font-weight:700;
  font-size:12px;
  letter-spacing:.02em;
  align-self:flex-start;
}
.join-required{
  color:#8a1c1c;
  background:rgba(255, 204, 204, 0.7);
}
.join-apply{
  color:#1e4b7a;
  background:rgba(201, 231, 255, 0.7);
}
.join-description{
  color:#1f5f3a;
  background:rgba(200, 240, 214, 0.7);
}
.join-apply-cta{
  text-align:center;
}
.join-apply-link{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  color:#0b2f4a;
  background:rgba(201, 231, 255, 0.7);
  border:1px solid rgba(30, 75, 122, 0.2);
}
.join-apply-link:hover{
  background:rgba(201, 231, 255, 0.9);
}
@media (max-width:980px){
  .join-roles{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .join-roles{grid-template-columns:1fr}
}
.attachment-grid{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:24px;
}
.attachment-card{
  background:var(--card);
  padding:0;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.attachment-header{
  padding:20px 24px 16px;
  border-bottom:1px solid var(--line);
  background:var(--card);
}
.attachment-label{
  margin:0 0 6px;
  font-size:18px;
  font-weight:700;
  letter-spacing:-0.01em;
}
.attachment-meta{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}
.attachment-map{
  border-bottom:1px solid var(--line);
}
.attachment-map iframe{
  width:100%;
  height:280px;
  border:0;
  display:block;
}
.attachment-body{
  padding:20px 24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.attachment-body p{
  margin:0;
  line-height:1.6;
}
.attachment-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.attachment-list li{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:14px;
}
.attachment-key{
  font-weight:600;
  color:var(--text);
  min-width:110px;
}
.attachment-value{
  color:var(--muted);
}
.attachment-list a{
  text-decoration:none;
  color:var(--muted);
  font-weight:400;
}
.attachment-list a:hover{
  text-decoration:none;
}
.attachment-action{
  padding:14px 24px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:flex-end;
}
.attachment-action a{
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  color:#0b5bd3;
}
.attachment-action a:hover{
  text-decoration:none;
}
.email-chip{
  display:inline-block;
  padding:2px 10px;
  border-radius:999px;
  background:rgba(11,91,211,.14);
  color:#06387d;
  font-weight:600;
  text-decoration:none;
}
.email-chip:hover{
  background:rgba(11,91,211,.22);
}
@media (max-width:900px){
  .attachment-map iframe{height:240px}
}
