/* ===== PLK No.1 Career Team — palette drawn from the logo ===== */
:root{
  --cream:#FAF4E6;
  --beige:#F3E8CE;
  --brown:#5B3A24;
  --brown-soft:#7c5a3f;
  --gold:#C9A24B;
  --gold-dark:#8a5e18;
  --sage:#8BA888;
  --sage-dark:#6f8d6c;
  --ink:#3d2a1c;
  --shadow:0 6px 20px rgba(91,58,36,.12);
  --radius:18px;
  --maxw:1080px;
  /* Unified typeface across the whole site: Nunito (Latin) + Noto Sans TC (Chinese) */
  --font-display:"Nunito","Noto Sans TC","PingFang TC","Microsoft JhengHei",-apple-system,"Segoe UI",sans-serif;
  --font-body:"Nunito","Noto Sans TC","PingFang TC","Microsoft JhengHei",-apple-system,"Segoe UI",sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  line-height:1.7;
  background-color:var(--cream);
  background-image:
    radial-gradient(circle at 12% 12%, rgba(201,162,75,.10), transparent 38%),
    radial-gradient(circle at 88% 6%, rgba(139,168,136,.12), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='%23c9a24b' fill-opacity='0.05'%3E%3Cellipse cx='45' cy='55' rx='11' ry='9'/%3E%3Cellipse cx='32' cy='37' rx='4.5' ry='6'/%3E%3Cellipse cx='42' cy='30' rx='4.5' ry='6.5'/%3E%3Cellipse cx='54' cy='30' rx='4.5' ry='6.5'/%3E%3Cellipse cx='64' cy='38' rx='4.5' ry='6'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment:fixed,fixed,fixed;
}
a{color:var(--gold-dark);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;display:block}

/* ---- Header ---- */
header.site{
  background:
    linear-gradient(105deg, rgba(255,249,237,.94) 0%, rgba(255,249,237,.6) 38%, rgba(255,247,228,.12) 100%),
    url("images/header-bg.svg") center/cover no-repeat,
    var(--cream);
  border-bottom:3px solid var(--gold);
  position:sticky;top:0;z-index:50;
  box-shadow:var(--shadow);
}
.bar{
  max-width:var(--maxw);margin:0 auto;padding:14px 20px;
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
}
.brand{display:flex;align-items:center;gap:14px;min-width:0}
.brand .logo{
  width:104px;height:104px;border-radius:50%;object-fit:cover;flex:none;
}
.brand .logo-fallback{
  width:104px;height:104px;border-radius:50%;flex:none;
  display:grid;place-items:center;background:var(--beige);
  border:3px solid var(--gold);color:var(--brown);font-weight:800;font-size:18px;
  box-shadow:0 4px 14px rgba(91,58,36,.22);
}
.brand .titles{min-width:0}
.brand .school{font-size:.78rem;letter-spacing:.18em;color:var(--gold-dark);font-weight:700;text-transform:uppercase}
.brand .dept{font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:var(--brown);line-height:1.1;letter-spacing:.01em}
.brand .motto{font-family:var(--font-display);font-style:italic;font-weight:500;font-size:.92rem;color:var(--gold-dark);margin-top:2px;letter-spacing:.02em}
nav.main{margin-left:auto;display:flex;align-items:center;gap:6px;flex-wrap:nowrap;position:relative}
.nav-links{display:flex;align-items:center;gap:6px;flex-wrap:nowrap}
nav.main a{
  color:var(--brown);font-weight:600;padding:8px 12px;border-radius:10px;
  font-size:1rem;line-height:1.5;
}
nav.main a:hover{background:var(--beige);text-decoration:none}
/* hamburger (CSS-only checkbox toggle); hidden on desktop, shown on phones */
.nav-toggle{position:absolute;opacity:0;pointer-events:none;width:1px;height:1px}
.nav-burger{display:none;cursor:pointer;border:1.5px solid var(--gold);background:#fff;color:var(--brown);
  border-radius:10px;padding:7px 12px;font-size:1.2rem;line-height:1;user-select:none}
.nav-burger:hover{background:var(--beige)}

/* ---- grouped dropdown menus (CSS-only: hover on desktop, tap-focus on mobile) ---- */
.navgroup{position:relative}
.navgroup-btn{
  border:none;background:none;font-family:inherit;font-size:1rem;cursor:pointer;
  color:var(--brown);font-weight:600;padding:8px 12px;border-radius:10px;line-height:1.5;
  display:inline-flex;align-items:center;gap:5px;
}
.navgroup-btn::after{content:"\25BE";font-size:.7em;opacity:.65}
.navgroup:hover .navgroup-btn,
.navgroup:focus-within .navgroup-btn{background:var(--beige)}
.navgroup-menu{
  position:absolute;top:calc(100% + 6px);right:0;min-width:178px;
  background:#fffdf8;border:1px solid #ece0c4;border-radius:12px;
  box-shadow:0 14px 30px rgba(91,58,36,.18);padding:6px;
  display:none;flex-direction:column;gap:2px;z-index:60;
}
.navgroup-menu::before{content:"";position:absolute;top:-6px;left:0;right:0;height:6px}
.navgroup:hover .navgroup-menu,
.navgroup:focus-within .navgroup-menu{display:flex}
.navgroup-menu a{display:block;white-space:nowrap;padding:9px 14px;border-radius:8px}
.navgroup-menu a.active{background:var(--beige)}

/* ---- mid widths (small laptops / tablets): stack brand over nav at a FIXED
   breakpoint so the header height is identical in EN and 中 (the English nav row
   is wider, so a content-based wrap would otherwise stack only in English). ---- */
@media(min-width:721px) and (max-width:959px){
  .bar{ flex-direction:column; align-items:flex-start; gap:8px }
  /* brand stays left; the nav row + language toggle align to the right */
  nav.main{ margin-left:0; align-self:flex-end }
}

/* ---- wide desktop: drop the nav + lang toggle down so they sit on the
   "Dream high and fly high" motto line (instead of vertically centred) ---- */
@media(min-width:960px){
  .bar{ align-items:flex-end }
}

/* ---- phones: collapse nav into a ☰ menu (groups become inline sections) ---- */
@media(max-width:720px){
  /* shrink the logo + tighten the brand text so the longer EN lines fit one row each
     (like the compact 中 text) at common phone widths — no clipping of the school name */
  .brand .logo{ width:58px; height:58px }
  .brand .school{ letter-spacing:.03em; font-size:.7rem }
  .brand .dept{ font-size:1.05rem }
  .brand .motto{ font-size:.78rem }
  /* take the ☰ out of the bar flow so a wider EN brand can't push it to a 2nd row;
     the header height is then driven only by the brand → identical in both languages */
  .bar{ padding-right:56px }
  nav.main{ position:absolute; top:14px; right:14px; margin-left:0 }
  .nav-burger{display:inline-flex}
  .nav-links{
    display:none;position:absolute;top:calc(100% + 8px);right:0;min-width:210px;
    flex-direction:column;flex-wrap:nowrap;align-items:stretch;gap:2px;z-index:60;
    background:#fffdf8;border:1px solid #ece0c4;border-radius:12px;
    box-shadow:0 14px 30px rgba(91,58,36,.18);padding:8px;
    /* cap height (below the sticky header) + nowrap so a long menu scrolls vertically
       instead of wrapping into a second column off-screen, or clipping bottom items */
    max-height:calc(100vh - 190px);max-height:calc(100dvh - 190px);
    overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;
  }
  .nav-toggle:checked ~ .nav-links{display:flex}
  .nav-links > a{padding:10px 12px;border-radius:8px}
  /* mobile menu order: language, JUPAS tools, Info, Study tools */
  .nav-links .langbtn{order:1;align-self:flex-start;margin:0 0 8px}
  .nav-links .navgroup-jupastools{order:2}
  .nav-links .navgroup-info{order:3}
  .nav-links .navgroup-studytools{order:4}
  /* groups become static sections (label + always-visible children), no hover needed */
  .nav-links .navgroup{position:static}
  .nav-links .navgroup-btn{width:100%;justify-content:flex-start;cursor:default;color:var(--gold-dark);
    font-size:.78rem;text-transform:uppercase;letter-spacing:.04em;padding:10px 12px 4px}
  .nav-links .navgroup-btn::after{display:none}
  .nav-links .navgroup-menu{
    position:static;display:flex;box-shadow:none;border:none;background:none;
    padding:0 0 4px 10px;min-width:0;
  }
  .nav-links .navgroup-menu::before{display:none}
  .nav-links .navgroup-menu a{white-space:normal}
}
.langbtn{
  border:1.5px solid var(--gold);background:#fff;color:var(--brown-soft);
  border-radius:999px;padding:6px 14px;cursor:pointer;font-weight:700;font-size:.85rem;
}
.langbtn:hover{background:var(--gold);color:#fff}

/* ---- Hero ---- */
.hero{
  position:relative;overflow:hidden;
  max-width:var(--maxw);margin:30px auto 0;padding:46px 40px;
  background:
    radial-gradient(120% 120% at 0% 0%, #fffaf0 0%, transparent 55%),
    radial-gradient(120% 130% at 100% 100%, #eef2e3 0%, transparent 55%),
    linear-gradient(135deg,#fff7e6,#f3e8cd);
  border:1px solid #e7d6a8;border-radius:26px;
  box-shadow:0 14px 38px rgba(91,58,36,.14);
}
.hero-inner{position:relative;z-index:2}
.hero-kicker{
  display:inline-block;font-weight:800;font-size:.8rem;letter-spacing:.12em;
  color:var(--gold-dark);background:#fff8e7;border:1.5px solid #e7d6a8;
  padding:5px 14px;border-radius:999px;margin-bottom:12px;
}
.hero h1{
  font-family:var(--font-display);font-weight:700;
  margin:.05em 0;color:var(--brown);font-size:2.5rem;line-height:1.12;letter-spacing:.005em;
}
.hero p{margin:.5em 0 0;color:var(--brown-soft);max-width:54ch;font-size:1.08rem}
.hero-sprig{position:absolute;width:230px;opacity:.55;z-index:1;pointer-events:none}
.hero-sprig.tr{top:-26px;right:-18px;transform:rotate(8deg)}
.hero-sprig.bl{bottom:-30px;left:-22px;transform:rotate(195deg);opacity:.4}

/* ---- Layout ---- */
main{max-width:var(--maxw);margin:0 auto;padding:24px 20px 60px}
section{scroll-margin-top:90px}
h2.section-title{
  font-family:var(--font-display);font-weight:700;letter-spacing:.01em;
  color:var(--brown);font-size:1.85rem;margin:46px 0 18px;
  display:flex;align-items:center;gap:12px;
}
h2.section-title::before{
  content:"";width:34px;height:34px;flex:none;
  background:url("images/leaf.svg") center/contain no-repeat;
  filter:drop-shadow(0 2px 2px rgba(111,141,108,.25));
}
h2.section-title::after{
  content:"";flex:1;height:0;
  border-top:2px dotted #dcc890;margin-left:6px;
}

/* ---- Category filter ---- */
.filters{display:flex;gap:8px;flex-wrap:wrap;margin:6px 0 18px}
.chip{
  border:1.5px solid var(--gold);background:#fffdf7;color:var(--brown);
  padding:8px 18px;border-radius:999px;cursor:pointer;font-weight:700;font-size:.92rem;
  box-shadow:0 2px 6px rgba(91,58,36,.06);transition:all .15s ease;
}
.chip:hover{background:var(--beige);transform:translateY(-1px)}
.chip.active{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff;border-color:var(--gold-dark);box-shadow:0 5px 14px rgba(169,132,47,.3)}

/* ---- Post grid / cards ---- */
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));gap:20px}
.card{
  background:#fffdf8;border:1px solid #ece0c4;border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;
  transition:transform .18s ease,box-shadow .18s ease;position:relative;
}
.card::after{content:"";position:absolute;inset:0;border-radius:var(--radius);border:2px solid transparent;transition:border-color .18s ease;pointer-events:none}
.card:hover,.card:focus-visible{transform:translateY(-6px) scale(1.035);box-shadow:0 20px 38px rgba(91,58,36,.24);z-index:2;outline:none}
.card:hover::after{border-color:rgba(201,162,75,.55)}
.card .thumb{aspect-ratio:16/10;background:var(--beige);overflow:hidden;position:relative}
.card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.card:hover .thumb img{transform:scale(1.05)}
.card .thumb.empty{display:grid;place-items:center;font-size:2.6rem;background:linear-gradient(135deg,#f3e8ce,#eef2e3)}
.card .pad{padding:16px 18px 20px;display:flex;flex-direction:column;gap:9px;flex:1}
.tag{
  align-self:flex-start;font-size:.72rem;font-weight:800;letter-spacing:.05em;
  text-transform:uppercase;padding:5px 12px;border-radius:999px;
}
.tag.local{background:#e8f0e6;color:var(--sage-dark)}
.tag.mainland{background:#f1ddd5;color:#9c5b33}
.tag.foreign{background:#f6ecd2;color:var(--gold-dark)}
.tag.career{background:#f0e2d6;color:var(--brown)}
.card h3{font-family:var(--font-display);font-weight:600;margin:2px 0;color:var(--brown);font-size:1.18rem;line-height:1.32}
.card .meta{font-size:.8rem;color:var(--brown-soft);font-weight:600}
.card .excerpt{font-size:.93rem;color:#5c4a3a;flex:1}
.card .readmore{
  align-self:flex-start;margin-top:6px;font-weight:800;color:var(--gold-dark);
}
.card .readmore:hover{color:var(--brown)}
.pin{font-size:.72rem;color:var(--gold-dark);font-weight:800}
.empty-state{padding:40px;text-align:center;color:var(--brown-soft)}

/* ---- Single post (modal) ---- */
.overlay{
  position:fixed;inset:0;background:rgba(61,42,28,.55);z-index:100;
  display:none;align-items:flex-start;justify-content:center;padding:40px 16px;overflow:auto;
}
.overlay.open{display:flex}
.article{
  background:#fff;max-width:760px;width:100%;border-radius:var(--radius);
  box-shadow:0 20px 60px rgba(0,0,0,.3);overflow:hidden;
}
.article .hd{padding:22px 26px;border-bottom:1px solid #eee2c8;position:relative}
.article .hd h2{font-family:var(--font-display);font-weight:700;margin:.2em 0;color:var(--brown);font-size:1.6rem;line-height:1.25}
.article .hd .meta{color:var(--brown-soft);font-size:.85rem}
.article .body{padding:6px 26px 26px;white-space:pre-wrap;color:#3f2f22}
.article img.cover{width:100%;max-height:520px;object-fit:contain;background:var(--beige);cursor:zoom-in}

/* ---- Full-size photo lightbox ---- */
.lightbox{
  position:fixed;inset:0;background:rgba(28,18,10,.92);z-index:200;
  display:none;align-items:center;justify-content:center;padding:24px;cursor:zoom-out;
}
.lightbox.open{display:flex;animation:lbfade .18s ease}
@keyframes lbfade{from{opacity:0}to{opacity:1}}
.lightbox img{
  max-width:96vw;max-height:96vh;object-fit:contain;border-radius:6px;
  box-shadow:0 16px 60px rgba(0,0,0,.6);
}
.lb-close{
  position:fixed;top:18px;right:22px;width:42px;height:42px;border:none;border-radius:50%;
  background:rgba(255,255,255,.15);color:#fff;font-size:1.2rem;cursor:pointer;z-index:201;
}
.lb-close:hover{background:rgba(255,255,255,.3)}
.closex{
  position:absolute;top:14px;right:16px;border:none;background:var(--beige);
  width:34px;height:34px;border-radius:50%;cursor:pointer;font-size:1.1rem;color:var(--brown);
}
.closex:hover{background:var(--gold);color:#fff}

/* ---- Team & Resources ---- */
.team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:16px}
.member{background:#fffdf8;border:1px solid #ece0c4;border-radius:var(--radius);padding:22px 18px;text-align:center;box-shadow:var(--shadow);transition:transform .15s ease}
.member:hover{transform:translateY(-4px)}
.member .avatar{width:70px;height:70px;border-radius:50%;margin:0 auto 12px;background:linear-gradient(135deg,#f3e8ce,#eef2e3);display:grid;place-items:center;color:var(--gold-dark);font-size:1.7rem;border:2px solid var(--gold)}
.member .nm{font-family:var(--font-display);font-weight:600;font-size:1.1rem;color:var(--brown)}
.member .rl{font-size:.85rem;color:var(--brown-soft);margin-top:2px}
.res-list{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.res-list li{background:#fff;border:1px solid #ece0c4;border-radius:12px;padding:12px 16px;box-shadow:var(--shadow);display:flex;align-items:center;gap:10px}
.res-list li::before{content:"🔗";flex:none}

/* ---- Footer ---- */
footer.site{
  position:relative;overflow:hidden;
  background:linear-gradient(160deg,#5f3d27,#4a2f1d);color:#f4e7d2;margin-top:54px;
  border-top:4px solid var(--gold);
}
.footer-sprig{position:absolute;width:240px;top:-30px;right:30px;opacity:.18;transform:rotate(160deg);pointer-events:none}
footer.site .inner{position:relative;z-index:2;max-width:var(--maxw);margin:0 auto;padding:34px 20px;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
footer.site a{color:var(--gold)}
.footer-right{display:flex;flex-direction:column;align-items:flex-end;gap:12px}
.footlink{display:inline-flex;align-items:center;gap:9px;color:#f4e7d2;font-weight:700;text-decoration:none}
.footlink svg{transition:transform .15s ease}
.footlink:hover{color:#fff;text-decoration:none}
.footlink:hover svg{transform:scale(1.12)}
.admin-link{font-size:.85rem;opacity:.85}
@media(max-width:560px){
  .footer-right{align-items:flex-start}
}

@media(max-width:560px){
  .hero{ margin-top:18px; padding:26px 22px; border-radius:20px }
  .hero h1{font-size:1.5rem}
  .hero p{font-size:1rem}
  .hero-kicker{font-size:.72rem;margin-bottom:8px}
  .hero-sprig{width:140px}
  .brand .dept{font-size:1.05rem}
}

/* ---- Skip to content (accessibility) ---- */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--brown);color:#fff;padding:10px 16px;border-radius:0 0 10px 0;z-index:1000;font-weight:700}
.skip-link:focus{left:0;text-decoration:none}

/* ---- Section subtitle ---- */
.section-sub{color:var(--brown-soft);margin:-6px 0 18px;font-size:1rem;max-width:62ch}

/* ---- Tools section (homepage) ---- */
.tools-grouptitle{
  font-family:var(--font-display);font-weight:800;color:var(--gold-dark);
  font-size:1rem;letter-spacing:.04em;text-transform:uppercase;
  margin:22px 0 12px;display:flex;align-items:center;gap:10px;
}
.tools-grouptitle::after{content:"";flex:1;height:0;border-top:1.5px dotted #dcc890}
.tools-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:16px;margin-bottom:6px}
.tool-card{
  display:flex;gap:14px;align-items:flex-start;
  background:#fffdf8;border:1px solid #ece0c4;border-radius:16px;
  padding:16px 18px;box-shadow:var(--shadow);text-decoration:none;color:var(--ink);
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.tool-card:hover{transform:translateY(-4px);box-shadow:0 16px 30px rgba(91,58,36,.18);border-color:var(--gold);text-decoration:none}
.tool-card:focus-visible{outline:2px solid var(--gold-dark);outline-offset:2px}
.tool-ic{
  flex:none;width:46px;height:46px;border-radius:12px;display:grid;place-items:center;
  font-size:1.5rem;background:linear-gradient(135deg,var(--beige),#eef2e3);border:1px solid #e6d8b6;
}
.tool-body{display:flex;flex-direction:column;gap:5px;min-width:0}
.tool-name{font-family:var(--font-display);font-weight:800;color:var(--brown);font-size:1.08rem}
.tool-desc{font-size:.9rem;color:#5c4a3a;line-height:1.5}
.tool-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:3px}
.tool-aud{background:var(--beige);color:var(--gold-dark);font-weight:800;font-size:.72rem;padding:3px 9px;border-radius:999px;letter-spacing:.02em}
.tool-lock{background:#fbeede;color:#9a5b16;font-weight:800;font-size:.72rem;padding:3px 9px;border-radius:999px;border:1px solid #f0d29a}

/* ---- Footer quick-links ---- */
.footer-links{display:flex;flex-direction:column;gap:7px;min-width:150px}
.footer-links .fl-title{font-weight:800;color:#f4e7d2;margin-bottom:3px;font-size:.92rem}
.footer-links a{color:#f0dca8;font-weight:600;font-size:.9rem}
.footer-links a:hover{color:#fff;text-decoration:none}

/* ---- Footer bottom bar: copyright + sitemap ---- */
.footer-bottom{
  position:relative;z-index:2;max-width:var(--maxw);margin:0 auto;
  padding:14px 20px 4px;border-top:1px solid rgba(244,231,210,.16);
  display:flex;justify-content:space-between;align-items:center;gap:10px 18px;flex-wrap:wrap;
  color:#dcc8a2;font-size:.82rem;line-height:1.6;
}
.footer-bottom .fb-copy{min-width:0}
.footer-bottom .fb-sitemap{color:#f0dca8;font-weight:700;white-space:nowrap}
.footer-bottom .fb-sitemap:hover{color:#fff;text-decoration:none}

@media(max-width:560px){
  .tools-grid{grid-template-columns:1fr}
}

/* ---- Floating "back to top" button ---- */
#to-top{
  position:fixed; right:22px; bottom:22px; z-index:900;
  width:48px; height:48px; border:none; border-radius:14px; cursor:pointer;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:#fff;
  box-shadow:0 8px 20px rgba(169,132,47,.42);
  display:grid; place-items:center;
  opacity:0; transform:translateY(14px) scale(.95); pointer-events:none;
  transition:opacity .25s ease, transform .25s ease, filter .15s ease;
}
#to-top.show{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto }
#to-top:hover{ filter:brightness(1.08); transform:translateY(-3px) scale(1.04) }
#to-top:active{ transform:translateY(-1px) scale(.98) }
#to-top:focus-visible{ outline:2px solid var(--brown); outline-offset:3px }
@media(max-width:560px){
  #to-top{ right:14px; bottom:14px; width:44px; height:44px }
}
@media print{ #to-top{ display:none !important } }

/* ============================================================
   ACCESSIBILITY — visible keyboard focus + reduced motion
   ============================================================ */
:where(a,button,input,select,textarea,summary,[tabindex]):focus-visible{
  outline:2px solid var(--brown); outline-offset:2px; border-radius:4px;
}
.chip:focus-visible,.navgroup-btn:focus-visible,.langbtn:focus-visible,
.closex:focus-visible,.lb-close:focus-visible{
  outline:2px solid var(--brown); outline-offset:2px;
}
/* cards previously suppressed their outline — restore a clear ring */
.card:focus-visible{ outline:2px solid var(--brown); outline-offset:3px }

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important; scroll-behavior:auto !important;
  }
  .card:hover,.card:focus-visible,.tool-card:hover,.member:hover,
  .footlink:hover svg,.card:hover .thumb img{ transform:none !important }
}
