:root{
  --blue:#11166b;

  --page-gutter:clamp(20px,6vw,72px);
  --maxw:1100px;

  /* Futuristic dark */
  --neo-bg:#060813;
  --neo-text:rgba(255,255,255,.92);
  --neo-muted:rgba(255,255,255,.68);
  --neo-accent:rgba(120, 210, 255, .95);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#111;
  line-height:1.6;
}

/* Container */
.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding-left:var(--page-gutter);
  padding-right:var(--page-gutter);
}

/* ===== HEADER ===== */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--blue);
  box-shadow:0 4px 18px rgba(0,0,0,.2);
}
.nav{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
}
.brand{
  font-weight:800;
  line-height:1.1;
  color:#fff;
  text-decoration:none;
}
.brand--link:hover{opacity:.95}
.nav ul{
  list-style:none;
  display:flex;
  gap:28px;
  margin:0;
  padding:0;
}
.nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  position:relative;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:#fff;
  transform:scaleX(0);
  transition:.25s;
}
.nav a:hover::after,
.nav a.active::after{
  transform:scaleX(1);
}
.lang-switch{
  display:flex;
  gap:6px;
  font-size:13px;
}
.lang-btn{
  background:none;
  border:none;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* ===== RESUME (NEO) ===== */
.resume-neo{
  min-height:100vh;
  position:relative;
  background: var(--neo-bg);
  color: var(--neo-text);
  overflow:hidden;
}

/* Background futuriste UNIFORME */
.resume-neo::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(90, 220, 255, .18), transparent 62%),
    radial-gradient(900px 520px at 82% 28%, rgba(170, 120, 255, .18), transparent 62%),
    radial-gradient(900px 520px at 50% 92%, rgba(40, 120, 255, .10), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.25));
  filter:saturate(1.05);
}

.resume-neo > *{
  position:relative;
  z-index:1;
}

/* =========================
   PDF fixed (cliquable)
   ========================= */
.pdf-float{
  position:fixed;
  right:18px;
  top:35%;
  transform:translateY(-50%);
  width:64px;
  height:86px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  color:#fff;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
  cursor:pointer;

  z-index: 3000;
  pointer-events: auto;
}
.pdf-float:hover{ background:rgba(255,255,255,.09); }
.pdf-float__ico svg{ width:22px;height:22px; }
.pdf-float__txt{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.9;
}

/* HERO */
.resume-hero{
  padding:54px 0 10px;
}
.resume-hero__inner{ text-align:center; }

.resume-hero__title{
  margin:0;
  font-size:clamp(26px, 4.2vw, 46px);
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  text-shadow:0 18px 60px rgba(0,0,0,.6);
}
.resume-hero__underline{
  width:84px;
  height:3px;
  margin:16px auto 22px;
  border-radius:99px;
  background:rgba(120,210,255,.75);
  box-shadow:0 0 22px rgba(120,210,255,.25);
}

.resume-id{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:0 auto 14px;
}
.resume-id__photo{
  width:42px;
  height:42px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}
.resume-id__text{ text-align:left; }
.resume-id__name{
  font-weight:800;
  color:rgba(255,255,255,.95);
  line-height:1.2;
}
.resume-id__line{
  font-size:14px;
  color:rgba(255,255,255,.68);
  margin-top:2px;
}

.resume-chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin:16px auto 26px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.9);
  font-weight:700;
  font-size:13px;
  backdrop-filter: blur(10px);
}

.resume-section-title{
  margin:34px 0 18px;
  font-weight:900;
  letter-spacing:.26em;
  text-transform:uppercase;
  font-size:18px;
  color:rgba(255,255,255,.92);
}
.resume-section-title--center{
  text-align:center;
  display:block;
}

/* ===== CAROUSEL ===== */
.exp-strip{
  position:relative;
  padding:10px 0 30px;
  background:transparent;
}
.exp-strip::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(900px 420px at 50% 10%, rgba(255,255,255,.04), transparent 62%);
  opacity:.9;
}

.strip-shell{
  width:min(1240px, calc(100% - (var(--page-gutter) * 1)));
  margin:0 auto;
  position:relative;
  padding:0 18px;
}

/* ✅ IMPORTANT : horizontal scroll only */
.exp-viewport{
  overflow-x:auto;        /* horizontal scroll enabled */
  overflow-y:hidden;      /* vertical scroll disabled */
  scroll-behavior:smooth;
  border-radius:18px;
  padding:2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}
.exp-track{
  display:flex;
  gap:22px;
  padding:12px 2px;
}

/* hide vertical wheel effect: nothing to do here, we removed wheel JS */

/* Card */
.exp-card{
  flex:0 0 360px;
  min-height:210px;
  border-radius:18px;
  text-decoration:none;
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 50px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
  padding:18px 18px 16px;
  transition:transform .22s, background .22s, border-color .22s;
}
.exp-card:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
}
.exp-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.exp-card__date{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
}
.exp-card__dot{
  width:9px;height:9px;
  border-radius:999px;
  background:rgba(120,210,255,.85);
  box-shadow:0 0 18px rgba(120,210,255,.35);
}
.exp-card__role{
  font-weight:900;
  font-size:18px;
  line-height:1.25;
  margin:0 0 10px;
}
.exp-card__org{
  font-weight:700;
  color:rgba(170,190,255,.9);
  margin:0 0 10px;
}
.exp-card__meta{
  color:rgba(255,255,255,.60);
  font-weight:650;
  font-size:13px;
  margin:0 0 18px;
}
.exp-card__cta{
  margin-top:auto;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(120,210,255,.92);
}

/* arrows */
.strip-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  z-index:5;
}
.strip-arrow:hover{ background:rgba(255,255,255,.09); }
.strip-arrow--left{ left:-6px; }
.strip-arrow--right{ right:-6px; }

/* ===== EDUCATION ===== */
.education{
  padding: 0 0 18px;
}
.edu-grid{
  width:min(1240px, calc(100% - (var(--page-gutter) * 1)));
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.edu-card{
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 50px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
  padding:16px 16px 14px;
}

/* ✅ whole card clickable, NO underline, NO purple */
.edu-card--link{
  display:block;
  color:inherit;
  text-decoration:none;
}
.edu-card--link:visited{
  color:inherit;
  text-decoration:none;
}
.edu-card--link:hover{
  text-decoration:none;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  transform: translateY(-1px);
  transition: .2s;
}

.edu-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.edu-card__title{
  margin:0;
  font-size:16px;
  font-weight:900;
  line-height:1.25;
  color:rgba(255,255,255,.92);
}
.edu-card__school{
  margin-top:8px;
  font-weight:800;
  color:rgba(170,190,255,.92);
}
.edu-card__date{
  margin-top:6px;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.65);
}
.edu-tag{
  flex:0 0 auto;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(120,210,255,.95);
  padding:6px 10px;
  border-radius:999px;
  background:rgba(120,210,255,.08);
  border:1px solid rgba(120,210,255,.18);
}
.edu-tag--soft{
  color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
}

/* ===== SKILLS ===== */
.skills{
  padding: 6px 0 46px;
}

.skills-matrix{
  width: min(1240px, calc(100% - (var(--page-gutter) * 1)));
  margin: 0 auto;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.skills-matrix::before{
  content:"";
  position:absolute;
  inset:-40px;
  pointer-events:none;
  background:
    radial-gradient(520px 280px at 15% 10%, rgba(90, 220, 255, .16), transparent 62%),
    radial-gradient(520px 280px at 85% 20%, rgba(170, 120, 255, .14), transparent 62%),
    radial-gradient(520px 280px at 50% 110%, rgba(40, 120, 255, .10), transparent 62%);
  opacity:.9;
}

.skills-col{
  position: relative;
  z-index: 1;
  border-radius: 18px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px;
}

.skills-col__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}
.skills-col__title{
  font-weight: 900;
  letter-spacing: .06em;
  color: rgba(255,255,255,.94);
}
.skills-col__hint{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.skills-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.skill-row{
  position: relative;
  padding: 12px 12px 18px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.skill-name{
  display:block;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  line-height: 1.15;
}
.skill-meta{
  display:block;
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(255,255,255,.62);
  font-weight: 650;
}

.skill-badge{
  position:absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(120,210,255,.95);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(120,210,255,.08);
  border: 1px solid rgba(120,210,255,.18);
}

.skill-meter{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
}
.skill-meter::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: var(--w, 70%);
  border-radius: 999px;
  background: rgba(120,210,255,.85);
  box-shadow: 0 0 18px rgba(120,210,255,.25);
}
.skill-row[data-level="95"]{ --w:95%; }
.skill-row[data-level="85"]{ --w:85%; }
.skill-row[data-level="82"]{ --w:82%; }
.skill-row[data-level="80"]{ --w:80%; }
.skill-row[data-level="78"]{ --w:78%; }
.skill-row[data-level="75"]{ --w:75%; }
.skill-row[data-level="74"]{ --w:74%; }
.skill-row[data-level="70"]{ --w:70%; }
.skill-row[data-level="68"]{ --w:68%; }
.skill-row[data-level="65"]{ --w:65%; }
.skill-row[data-level="60"]{ --w:60%; }
.skill-row[data-level="45"]{ --w:45%; }

.skill-row:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
  transition: .2s;
}

/* ===== RECOMMENDATION LETTERS ===== */
.reco{
  padding: 4px 0 24px;
}

.reco-grid{
  width: min(1240px, calc(100% - (var(--page-gutter) * 1)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@keyframes docOpen {
  0%   { transform: rotate(0deg) translateY(0); }
  50%  { transform: rotate(-2deg) translateY(-1px); }
  100% { transform: rotate(0deg) translateY(0); }
}

.reco-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 16px;
  border-radius:18px;
  text-decoration:none;
  color: rgba(255,255,255,.92);

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);

  transition: transform .22s, background .22s, border-color .22s;
}

.reco-card__icon{
  width:42px;
  height:42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}

.reco-card__icon::after{
  content:"";
  position:absolute;
  right:-10px;
  top:-10px;
  width:22px;
  height:22px;
  background: rgba(120,210,255,.22);
  border: 1px solid rgba(120,210,255,.25);
  transform: rotate(45deg) scale(0);
  transition: transform .22s ease;
  border-radius: 4px;
}

.reco-card__icon svg{
  width:22px;
  height:22px;
  color: rgba(120,210,255,.95);
  transition: transform .22s ease;
}

.reco-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.reco-card:hover .reco-card__icon{
  animation: docOpen .32s ease;
}
.reco-card:hover .reco-card__icon::after{
  transform: rotate(45deg) scale(1);
}
.reco-card:hover .reco-card__icon svg{
  transform: translateY(-1px) scale(1.03);
}

.reco-card__text{ min-width: 0; }
.reco-card__title{
  font-weight: 900;
  line-height: 1.15;
}
.reco-card__subtitle{
  margin-top: 4px;
  font-weight: 700;
  color: rgba(170,190,255,.92);
  font-size: 13px;
}
.reco-card__hint{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.60);
}
.reco-card__cta{
  margin-left:auto;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(120,210,255,.92);
  flex: 0 0 auto;
}

.reco-card--disabled{
  cursor: not-allowed;
  opacity: .65;
}
.reco-card--disabled:hover{
  transform: none;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}
.reco-card--disabled .reco-card__icon::after{
  transform: rotate(45deg) scale(0);
}

/* ===== WANT TO SEE REAL EXAMPLES (SANS BULLE) ===== */
.projects-call{
  padding: 10px 0 34px;
}

.projects-call__inner{
  text-align:center;
}

.projects-call__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(255,255,255,.94);
  text-transform: uppercase;
  font-size: 14px;
}

.projects-call__text{
  margin: 0 auto 16px;
  max-width: 70ch;
  color: rgba(255,255,255,.65);
  font-weight: 650;
}

.projects-call__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(10,10,20,.95);
  background: rgba(120,210,255,.92);
  border: 1px solid rgba(120,210,255,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: transform .2s, filter .2s;
}
.projects-call__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* ====== FOOTER IDENTIQUE À L’INDEX ====== */

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:.25s;
}

.btn--primary{
  background:#fff;
  color:var(--blue) !important;
  box-shadow:0 12px 26px rgba(0,0,0,.35);
}
.btn--primary:hover{ transform:translateY(-2px); }

.btn--ghost{
  border:1.5px solid rgba(255,255,255,.6);
  background:rgba(255,255,255,.12);
  color:#fff !important;
}
.btn--ghost:hover{ background:rgba(255,255,255,.22); }

.btn--primary-dark{
  background:#fff;
  color:var(--blue) !important;
  box-shadow:0 12px 26px rgba(0,0,0,.25);
}
.btn--ghost-dark{
  border:1.5px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.12);
  color:#fff !important;
}

/* CTA band */
.cta-band{
  background:linear-gradient(180deg, #11166b 0%, #0d1258 100%);
  color:#fff;
  padding:42px 0;
}

.cta-band__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.cta-band__text h3{
  margin:0 0 6px;
  font-size:22px;
  letter-spacing:.02em;
}
.cta-band__text p{
  margin:0;
  opacity:.9;
}

.cta-band__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Footer */
.footer{
  background:#0b0f4f;
  color:#e9ecff;
}

.footer__grid{
  padding:44px 0;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:34px;
}

.footer__brand{
  font-weight:900;
  font-size:18px;
  margin-bottom:10px;
  color:#fff;
}

.footer__muted{
  margin:6px 0 0;
  opacity:.85;
  color:#d7dcff;
}

.footer__title{
  font-weight:800;
  color:#fff;
  margin-bottom:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.footer__links a{
  color:#d7dcff;
  text-decoration:none;
  opacity:.92;
}
.footer__links a:hover{
  opacity:1;
  text-decoration:underline;
}

.footer__contact{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d7dcff;
  text-decoration:none;
  margin-bottom:12px;
}
.footer__contact:hover{ color:#fff; }

.ico{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  opacity:.9;
}
.ico svg{ width:18px;height:18px;color:currentColor; }

.footer__lang{ margin-top:16px; }

.lang-switch--footer{ margin-top:8px; }
.lang-switch--footer span{
  opacity:.55;
  color:#d7dcff;
}
.lang-switch--footer .lang-btn{
  padding:2px 6px;
  border-radius:6px;
}
.lang-switch--footer .lang-btn.active,
.lang-switch--footer .lang-btn:hover{
  background:rgba(255,255,255,.12);
}

/* Bottom bar */
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:14px 0;
}
.footer__bottom-inner{
  text-align:center;
  font-size:13px;
  color:#d7dcff;
  opacity:.9;
}

/* ===== Responsive ===== */
@media (max-width:1180px){
  .exp-card{ flex-basis: 340px; }
}
@media (max-width:980px){
  .strip-shell{ width: calc(100% - var(--page-gutter)); }
  .exp-card{ flex-basis: 320px; }
  .edu-grid{ grid-template-columns: 1fr; }
  .skills-matrix{ grid-template-columns: 1fr; }
  .reco-grid{ grid-template-columns: 1fr; }

  .cta-band__inner{
    flex-direction:column;
    text-align:center;
  }
  .cta-band__actions{ justify-content:center; }
  .footer__grid{ grid-template-columns:1fr; }
}
@media (max-width:768px){
  .pdf-float{ right:12px; }
  .strip-arrow{ display:none; }
  .exp-card{ flex-basis: 300px; }
}

/* ===== VOLUNTEER DETAILS (4 per row, smaller, hover info, NOT clickable) ===== */
.vol-details{
  padding: 8px 0 30px;
}

/* same margins as above: we reuse .container */
.vol-details__grid{
  width: min(1240px, calc(100% - (var(--page-gutter) * 1)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* smaller squares */
.vol-item__box{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;

  background: rgba(255,255,255,.04);
  border: 2px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);

  cursor: default; /* not clickable */
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  outline: none;
}

.vol-item__box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: rgba(255,255,255,.96);
  padding: 12px;
}

/* hover effect like premium */
.vol-item__box:hover,
.vol-item__box:focus{
  transform: translateY(-2px);
  border-color: rgba(120,210,255,.35);
  background: rgba(255,255,255,.06);
}

/* Tooltip/info (hover only) */
.vol-item__tip{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;

  padding: 10px 10px;
  border-radius: 14px;

  background: rgba(10,12,24,.78);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.vol-item__box:hover .vol-item__tip,
.vol-item__box:focus .vol-item__tip{
  opacity: 1;
  transform: translateY(0);
}

.vol-item__title{
  font-weight: 900;
  color: rgba(255,255,255,.95);
  line-height: 1.15;
  font-size: 13px;
}

.vol-item__desc{
  margin-top: 6px;
  font-weight: 650;
  color: rgba(255,255,255,.70);
  font-size: 12px;
  line-height: 1.35;
}

/* “More to come” tile */
.vol-item__box--empty{
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vol-item__empty{
  text-align: center;
  font-weight: 900;
  color: rgba(255,255,255,.80);
  letter-spacing: .02em;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 980px){
  .vol-details__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  .vol-details__grid{
    grid-template-columns: 1fr;
  }
}