/* =========================================================
   DR. SHYAM BABU
   CLEAN INTERNATIONAL ACADEMIC WEBSITE
   COMPLETE RESPONSIVE STYLESHEET
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  width:100%;
  max-width:100%;
  margin:0;
  padding:0;

  scroll-behavior:smooth;
  scroll-padding-top:80px;

  overflow-x:hidden;
}

body{
  width:100%;
  max-width:100%;
  min-width:0;

  margin:0;
  padding:0;

  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;

  color:#172b40;
  background:#ffffff;

  line-height:1.65;

  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;

  overflow-x:hidden;
}

img{
  max-width:100%;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input{
  font:inherit;
}

button{
  cursor:pointer;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.container{
  width:min(1160px,92%);
  max-width:1160px;

  margin-left:auto;
  margin-right:auto;
}


/* =========================================================
   HEADER
========================================================= */

header{
  position:sticky;
  top:0;
  z-index:1000;

  width:100%;
  max-width:100%;

  background:rgba(255,255,255,.97);

  border-bottom:1px solid #e5ebf1;

  box-shadow:
    0 2px 14px rgba(20,50,80,.05);

  backdrop-filter:blur(10px);
}

.nav{
  min-height:74px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;
}


/* =========================================================
   BRAND
========================================================= */

.brand{
  display:flex;
  align-items:center;

  gap:10px;

  color:#172b40;

  min-width:0;
}

.brand strong{
  display:block;

  font-size:15px;
  font-weight:800;

  line-height:1.2;
}

.brand small{
  display:block;

  color:#78899a;

  font-size:10px;

  margin-top:3px;

  line-height:1.3;
}

.logo{
  width:42px;
  height:42px;

  flex:0 0 42px;

  border-radius:11px;

  display:grid;
  place-items:center;

  background:#123b60;

  color:#ffffff;

  font-weight:800;

  box-shadow:
    0 6px 15px rgba(18,59,96,.18);
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav nav{
  display:flex;
  align-items:center;

  gap:22px;
}

.nav nav a{
  position:relative;

  color:#34485d;

  font-size:13px;
  font-weight:650;

  white-space:nowrap;

  transition:
    color .2s ease;
}

.nav nav a:hover{
  color:#0d5b89;
}

.nav nav a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-7px;

  width:0;
  height:2px;

  background:#0d5b89;

  transition:
    width .2s ease;
}

.nav nav a:hover::after{
  width:100%;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

#menu{
  display:none;

  border:0;
  background:transparent;

  color:#123b60;

  font-size:28px;

  line-height:1;

  padding:5px;

  cursor:pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero{
  position:relative;

  width:100%;
  max-width:100%;
  margin:0;
  box-sizing:border-box;
  overflow:hidden;

  color:#ffffff;

  background:
    linear-gradient(
      110deg,
      #173f59 0%,
      #42657a 48%,
      #b8c8d0 100%
    );

  min-height:505px;

  display:flex;
  align-items:center;
}


/* subtle scientific background */

.hero::before{
  content:"";

  position:absolute;

  width:420px;
  height:420px;

  left:-180px;
  top:-100px;

  border-radius:50%;

  background:
    rgba(255,255,255,.055);

  border:
    1px solid rgba(255,255,255,.08);
}

.hero::after{
  content:"";

  position:absolute;

  width:520px;
  height:520px;

  right:-260px;
  top:-180px;

  border-radius:50%;

  border:
    1px solid rgba(255,255,255,.08);
}


/* =========================================================
   HERO GRID
========================================================= */

.heroGrid{
  position:relative;
  z-index:2;

  width:100%;
  max-width:100%;

  display:grid;

  grid-template-columns:
    minmax(0,1fr)
    360px;

  gap:55px;

  align-items:center;

  padding-top:65px;
  padding-bottom:65px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.heroContent{
  min-width:0;
  max-width:700px;
}

.eyebrow{
  margin:0 0 12px;

  color:#718394;

  font-size:11px;

  font-weight:750;

  letter-spacing:2px;

  text-transform:uppercase;
}

.hero .eyebrow{
  color:#cfe4ef;
}

.heroContent h1{
  margin:0;

  color:#ffffff;

  font-size:
    clamp(44px,5vw,70px);

  line-height:1.02;

  letter-spacing:-2.5px;

  font-weight:850;
}

.heroContent h2{
  margin:12px 0 10px;

  color:#ffffff;

  font-size:
    clamp(20px,2vw,28px);

  line-height:1.2;

  font-weight:750;
}

.heroAffiliation{
  margin:0 0 12px;

  color:#e2edf3;

  font-size:14px;

  font-weight:500;
}

.lead{
  margin:0 0 12px;

  color:#e1edf3;

  font-size:14px;

  font-weight:500;
}

.heroText{
  max-width:650px;

  margin:0 0 22px;

  color:#d7e5ec;

  font-size:13px;

  line-height:1.65;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.heroButtons{
  display:flex;
  flex-wrap:wrap;

  gap:9px;

  margin-bottom:20px;
}

.btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  min-height:42px;

  padding:10px 16px;

  border-radius:7px;

  background:#ffffff;

  color:#124d70;

  border:1px solid #ffffff;

  font-size:12px;

  font-weight:750;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.btn:hover{
  transform:translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0,0,0,.15);
}

.btn.light{
  color:#ffffff;

  background:
    rgba(255,255,255,.10);

  border-color:
    rgba(255,255,255,.35);
}


/* =========================================================
   HERO HIGHLIGHTS
========================================================= */

.heroHighlights{
  display:flex;

  flex-wrap:wrap;

  gap:8px;
}

.heroHighlights > div{
  min-width:105px;

  padding:9px 11px;

  border-radius:8px;

  background:
    rgba(255,255,255,.10);

  border:
    1px solid rgba(255,255,255,.16);

  backdrop-filter:blur(5px);
}

.heroHighlights strong{
  display:block;

  color:#ffffff;

  font-size:11px;

  line-height:1.3;
}

.heroHighlights span{
  display:block;

  margin-top:3px;

  color:#d4e2e9;

  font-size:9px;

  line-height:1.35;
}


/* =========================================================
   HERO PROFILE
========================================================= */

.heroProfile{
  width:100%;

  display:flex;

  align-items:center;
  justify-content:center;

  min-width:0;
}


/* =========================================================
   CIRCULAR PROFILE PHOTO
========================================================= */

.profileImageBox{
  width:235px;
  height:235px;

  flex:0 0 235px;

  overflow:hidden;

  border-radius:50%;

  padding:5px;

  background:#ffffff;

  border:1px solid rgba(255,255,255,.7);

  box-shadow:
    0 15px 40px rgba(0,0,0,.22);
}

.profileImageBox img{
  display:block;

  width:100%;
  height:100%;

  max-width:none;

  object-fit:cover;

  object-position:center center;

  border-radius:50%;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section{
  width:100%;
  max-width:100%;

  overflow:hidden;
}

.section{
  padding:75px 0;
}

.section h2{
  margin:0 0 24px;

  color:#17324a;

  font-size:
    clamp(30px,3.5vw,43px);

  line-height:1.08;

  letter-spacing:-1.5px;

  font-weight:800;
}

.section p{
  color:#687887;

  font-size:14px;

  line-height:1.75;
}


/* =========================
   ABOUT SECTION — FULL WIDTH
   ========================= */

#about .about-content {
    width: 100%;
    max-width: 100%;
}

#about .about-content p {
    width: 100%;
    max-width: 100%;
    text-align: justify;
    text-justify: inter-word;
}

/* Remove any two-column restriction */
#about{
    display:block;
    padding-bottom:55px;
}

#about > * {
    max-width: 100%;
}

/* =========================================================
   CARDS
========================================================= */

.card{
  min-width:0;

  background:#ffffff;

  border:
    1px solid #e4ebf0;

  border-radius:15px;

  padding:25px;

  box-shadow:
    0 8px 25px rgba(30,60,90,.045);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.card:hover{
  transform:translateY(-3px);

  border-color:#d2e0e8;

  box-shadow:
    0 14px 30px rgba(30,60,90,.08);
}

.card h3{
  margin:0 0 14px;

  color:#1a334a;

  font-size:16px;
}

.card p{
  margin:8px 0 0;
}

.card > b{
  display:block;

  color:#356384;

  font-size:13px;

  letter-spacing:.2px;
}


/* =========================================================
   RESEARCH INTEREST TAGS
========================================================= */

.tags{
  display:flex;

  flex-wrap:wrap;

  gap:8px;
}

.tags span{
  display:inline-flex;

  align-items:center;

  padding:6px 10px;

  border-radius:999px;

  background:#edf5f9;

  color:#42657d;

  border:1px solid #e0ebf1;

  font-size:10px;

  line-height:1.2;
}


/* =========================================================
   TEACHING
========================================================= */

.soft{
  background:#f4f8fb;
}

.grid3{
  width:100%;

  display:grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap:18px;
}

.grid3 .card{
  height:100%;
}


/* =========================================================
   RESEARCH
========================================================= */

#research{
  background:#ffffff;
}


/* =========================================================
   REPOSITORY
========================================================= */

#repository{
  background:#f4f8fb;
}

.repoTop{
  display:grid;

  grid-template-columns:
    minmax(0,1fr)
    minmax(280px,390px);

  gap:35px;

  align-items:end;

  margin-bottom:30px;
}

.repoTop > div{
  min-width:0;
}

.repoTop h2{
  margin-bottom:15px;
}

.repoTop p{
  max-width:700px;
}

#search{
  width:100%;

  min-width:0;

  height:50px;

  padding:0 17px;

  border:
    1px solid #d5e0e7;

  border-radius:10px;

  background:#ffffff;

  color:#1c3448;

  outline:none;

  box-shadow:
    0 5px 18px rgba(30,60,90,.04);

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

#search:focus{
  border-color:#4d83a2;

  box-shadow:
    0 0 0 3px rgba(43,105,139,.10);
}


/* =========================================================
   REPOSITORY CATEGORIES
========================================================= */

.categories{
  width:100%;

  display:grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap:12px;

  margin-bottom:30px;
}

.categories button{
  min-width:0;

  min-height:82px;

  padding:14px;

  text-align:left;

  border:
    1px solid #dce6ec;

  border-radius:13px;

  background:#ffffff;

  color:#24465d;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.categories button:hover{
  transform:translateY(-2px);

  border-color:#a9c6d7;

  box-shadow:
    0 8px 20px rgba(30,60,90,.06);
}

.categories button.active{
  border-color:#17618a;

  box-shadow:
    0 0 0 1px #17618a;
}

.categories b{
  display:block;

  font-size:13px;

  line-height:1.3;
}

.categories small{
  display:block;

  margin-top:4px;

  color:#788896;

  font-size:10px;

  line-height:1.35;
}


/* =========================================================
   REPOSITORY BAR
========================================================= */

.repoBar{
  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:15px;

  margin-bottom:18px;
}

.repoBar h3{
  margin:0;

  color:#173b54;

  font-size:20px;
}

#status{
  color:#758696;

  font-size:12px;
}


/* =========================================================
   RESOURCES
========================================================= */

.resources{
  width:100%;

  display:grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap:18px;
}

.resources > *{
  min-width:0;
  max-width:100%;
}
.resource{
  display:flex;
  align-items:flex-start;
  gap:10px;

  min-width:0;

  padding:4px 0;

  color:#17324a;

  text-decoration:none;

  transition:
    color .2s ease,
    transform .2s ease;
}

.resource .icon{
  flex:0 0 auto;

  font-size:15px;

  line-height:1.4;

  margin-top:1px;
}

.resource > div{
  min-width:0;
}

.resource b{
  display:block;

  color:#17324a;

  font-size:13px;
  font-weight:650;

  line-height:1.45;

  margin:0 0 3px;

  overflow-wrap:anywhere;
}

.resource small{
  display:block;

  color:#71808c;

  font-size:10px;

  line-height:1.4;
}

.resource:hover{
  color:#0d5b89;
}

.resource:hover b{
  color:#0d5b89;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty{
  padding:35px 20px;

  text-align:center;

  color:#748492;

  background:#ffffff;

  border:
    1px dashed #cbd9e1;

  border-radius:12px;
}


/* =========================================================
   TIP
========================================================= */

.tip{
  margin-top:25px;

  padding:15px 17px;

  border-radius:10px;

  background:#ffffff;

  border:1px solid #e2eaf0;

  color:#667786;

  font-size:12px;

  line-height:1.6;
}

.tip b{
  color:#234c67;
}


/* =========================================================
   CONTACT
========================================================= */

.contact{
  display:grid;

  grid-template-columns:
    minmax(0,1fr)
    minmax(280px,.75fr);

  gap:70px;

  align-items:start;
}

.contact > div{
  min-width:0;
}

.contact a{
  color:#185b80;

  font-weight:600;
}

.contact a:hover{
  text-decoration:underline;
}


/* =========================================================
   SOCIAL / ACADEMIC LINKS
========================================================= */

.links{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:10px;
   margin-top:10px;
}

.links a{
  display:flex;

  align-items:center;

  min-height:48px;

  padding:12px 14px;

  background:#f5f8fa;

  border:1px solid #e3ebef;

  border-radius:9px;

  color:#24465d;

  font-size:12px;

  transition:
    background .2s ease,
    transform .2s ease;
}

.links a:hover{
  background:#edf4f8;

  transform:translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

footer{
  width:100%;

  padding:30px 0;

  background:#102f46;

  color:#ffffff;
}

footer .container{
  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:20px;
}

footer b{
  font-size:14px;
}

footer small{
  color:#b7c8d3;

  font-size:11px;
}
/* =========================================================
   LAPTOP — 100% ZOOM VERSION
   Same visual proportions as the preferred 150% view
   ========================================================= */

@media (min-width:1001px) and (max-width:1700px){

  .container{
    width:94%;
    max-width:1160px;
  }

  /* HERO */
  .hero > .container{
    width:100%;
    max-width:100%;
    padding-left:24px;
    padding-right:24px;
  }

  .heroGrid{
    grid-template-columns:
      minmax(0,1fr)
      280px;

    gap:35px;

    padding-top:65px;
    padding-bottom:65px;
  }

  .heroContent{
    width:100%;
    max-width:100%;
  }

  .heroContent h1{
    font-size:46px;
    line-height:1.02;
    letter-spacing:-1.8px;
  }

  .heroContent h2{
    font-size:24px;
  }

  .heroAffiliation{
    font-size:12px;
  }

  .heroText{
    max-width:600px;
    font-size:12px;
  }

  .profileImageBox{
    width:210px;
    height:210px;
    flex-basis:210px;
  }

  .nav nav{
    gap:15px;
  }

  .nav nav a{
    font-size:12px;
  }
}
/* =========================================================
   TABLET
========================================================= */

@media (max-width:1000px){

  .container{
    width:min(94%,1160px);
  }

  .nav nav{
    gap:15px;
  }

  .heroGrid{
    grid-template-columns:
      minmax(0,1fr)
      280px;

    gap:35px;
  }

  .profileImageBox{
    width:210px;
    height:210px;

    flex-basis:210px;
  }

  .two{
    gap:40px;
  }

  .grid3{
    gap:14px;
  }

}


/* =========================================================
   MOBILE — MAIN FIX
========================================================= */

/* Desktop: small gap between Teaching and Research */
@media (min-width:821px){
  #teaching > .container + .container{
    margin-top:16px;
  }
}
@media (max-width:820px){

  html,
  body{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    overflow-x:hidden !important;
  }

  main{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    margin:0 !important;
    padding:0 !important;

    overflow-x:hidden !important;
  }

  header,
  footer,
  section{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    margin-left:0 !important;
    margin-right:0 !important;
  }


  /* =======================================================
     HEADER
  ======================================================= */

  .nav{
    min-height:70px;

    padding-top:10px;
    padding-bottom:10px;
  }

  .nav nav{
    display:none;
  }

  #menu{
    display:block;
  }
#about .about-content p{
    width:100%;
    max-width:100%;
    text-align:left;
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
}

  /* =======================================================
     CONTAINER
  ======================================================= */

  .container{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    margin-left:auto !important;
    margin-right:auto !important;

    padding-left:24px !important;
    padding-right:24px !important;
  }


  /* =======================================================
     HERO
  ======================================================= */

  .hero{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    overflow:hidden !important;
  }

  .hero > .container{
    width:100% !important;
    max-width:100% !important;

    padding-left:24px !important;
    padding-right:18px !important;
  }

  .heroGrid{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    display:grid !important;

    grid-template-columns:
      minmax(0,1fr)
      145px !important;

    gap:12px !important;

    align-items:center !important;

    padding-top:55px;
    padding-bottom:55px;
  }

  .heroContent{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }

  .heroContent h1{
    font-size:42px;

    line-height:1.02;

    letter-spacing:-1.8px;
  }

  .heroContent h2{
    font-size:20px;
  }

  .heroAffiliation,
  .lead{
    font-size:12px;
  }

  .heroText{
    font-size:12px;
  }

  .heroContent h1,
  .heroContent h2,
  .heroContent p{
    max-width:100% !important;

    overflow-wrap:break-word !important;
    word-break:normal !important;
  }


  /* =======================================================
     MOBILE CIRCLE
  ======================================================= */

  .heroProfile{
    width:145px !important;
    min-width:145px !important;
    max-width:145px !important;

    display:flex !important;

    align-items:center !important;
    justify-content:center !important;

    margin:0 !important;
    padding:0 !important;
  }

  .profileImageBox{
    width:140px !important;
    height:140px !important;

    min-width:140px !important;
    min-height:140px !important;

    max-width:140px !important;
    max-height:140px !important;

    flex:0 0 140px !important;

    border-radius:50% !important;

    overflow:hidden !important;

    padding:5px !important;

    margin:0 !important;

    border:1px solid rgba(255,255,255,.8) !important;

    box-shadow:
      0 10px 28px rgba(0,0,0,.20) !important;
  }

  .profileImageBox img{
    width:100% !important;
    height:100% !important;

    max-width:none !important;

    display:block !important;

    object-fit:cover !important;

    object-position:center center !important;

    border-radius:50% !important;
  }


  /* =======================================================
     HERO BUTTONS
  ======================================================= */

  .heroButtons{
    display:flex;

    flex-wrap:wrap;

    gap:8px;
  }

  .heroButtons .btn{
    min-height:42px;

    max-width:100%;
  }


  /* =======================================================
     HIGHLIGHTS
  ======================================================= */

  .heroHighlights{
    display:grid;

    grid-template-columns:
      repeat(2,minmax(0,1fr));

    gap:8px;
  }

  .heroHighlights > div{
    min-width:0;
  }


  /* =======================================================
     SECTIONS
  ======================================================= */

  .section{
    padding:60px 0;
  }

  .section h2{
    font-size:34px;

    letter-spacing:-1.2px;
  }


  /* =======================================================
     ABOUT
  ======================================================= */

  .two{
    width:100% !important;
    max-width:100% !important;

    grid-template-columns:1fr !important;

    gap:30px;
  }


  /* =======================================================
     TEACHING / RESEARCH
  ======================================================= */

  .grid3{
    width:100% !important;
    max-width:100% !important;

    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;

    gap:14px;
  }

  .grid3 .card{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }


  /* =======================================================
     REPOSITORY
  ======================================================= */

  .repoTop{
    width:100% !important;
    max-width:100% !important;

    display:flex;

    flex-direction:column;

    align-items:stretch;

    gap:18px;

    margin-bottom:25px;
  }

  #search{
    width:100% !important;
    max-width:100% !important;

    height:50px;
  }

  .categories{
    width:100% !important;
    max-width:100% !important;

    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;

    gap:12px;
  }

  .categories button{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }

  .resources{
    width:100% !important;
    max-width:100% !important;

    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;

    gap:14px;
  }

  .resources > *{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }

  .repoBar{
    flex-wrap:wrap;
  }


  /* =======================================================
     CONTACT
  ======================================================= */

  .contact{
    width:100% !important;
    max-width:100% !important;

    grid-template-columns:1fr !important;

    gap:35px;
  }


  /* =======================================================
     FOOTER
  ======================================================= */

  footer .container{
    width:100% !important;

    flex-direction:column;

    align-items:flex-start;
  }

}


/* =========================================================
   SMALL MOBILE — 480px
========================================================= */

@media (max-width:480px){

  .container{
    padding-left:20px !important;
    padding-right:20px !important;
  }

  .hero > .container{
    padding-left:20px !important;
    padding-right:14px !important;
  }


  /* -------------------------------------------------------
     HERO
  ------------------------------------------------------- */

  .heroGrid{
    grid-template-columns:
      minmax(0,1fr)
      132px !important;

    gap:8px !important;
  }

  .heroContent h1{
    font-size:38px;

    letter-spacing:-1.5px;
  }

  .heroContent h2{
    font-size:18px;
  }

  .heroAffiliation,
  .lead{
    font-size:11px;
  }

  .heroText{
    font-size:11px;
  }

  .heroProfile{
    width:132px !important;
    min-width:132px !important;
    max-width:132px !important;
  }

  .profileImageBox{
    width:126px !important;
    height:126px !important;

    min-width:126px !important;
    min-height:126px !important;

    max-width:126px !important;
    max-height:126px !important;

    flex-basis:126px !important;
  }


  /* -------------------------------------------------------
     HIGHLIGHTS
  ------------------------------------------------------- */

  .heroHighlights{
    grid-template-columns:1fr;
  }


  /* -------------------------------------------------------
     TEACHING & RESEARCH
  ------------------------------------------------------- */

  .grid3{
    grid-template-columns:1fr !important;

    gap:14px !important;
  }


  /* -------------------------------------------------------
     REPOSITORY
  ------------------------------------------------------- */

  .categories{
    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;
  }

  .resources{
    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;
  }


  /* -------------------------------------------------------
     CONTACT
  ------------------------------------------------------- */

  .links{
    grid-template-columns:1fr;
  }

}


/* =========================================================
   VERY SMALL PHONES — 360px
========================================================= */

@media (max-width:360px){

  .container{
    padding-left:16px !important;
    padding-right:16px !important;
  }

  .hero > .container{
    padding-left:16px !important;
    padding-right:10px !important;
  }


  /* -------------------------------------------------------
     HERO
  ------------------------------------------------------- */

  .heroGrid{
    grid-template-columns:
      minmax(0,1fr)
      115px !important;

    gap:7px !important;
  }

  .heroContent h1{
    font-size:34px;
  }

  .heroContent h2{
    font-size:17px;
  }

  .heroProfile{
    width:115px !important;
    min-width:115px !important;
    max-width:115px !important;
  }

  .profileImageBox{
    width:110px !important;
    height:110px !important;

    min-width:110px !important;
    min-height:110px !important;

    max-width:110px !important;
    max-height:110px !important;

    flex-basis:110px !important;
  }


  /* -------------------------------------------------------
     REPOSITORY
  ------------------------------------------------------- */

  .categories{
    grid-template-columns:
      1fr 1fr !important;

    gap:9px;
  }

  .categories button{
    padding:11px;

    min-height:78px;
  }

  .categories b{
    font-size:12px;
  }

  .categories small{
    font-size:9px;
  }

  .resources{
    grid-template-columns:
      1fr !important;
  }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    transition:none !important;
    animation:none !important;
  }

}    min-width:145px !important;
    min-height:145px !important;

    max-width:145px !important;
    max-height:145px !important;

    border-radius:50% !important;

    overflow:hidden !important;

    padding:0 !important;
    margin:0 !important;

    border:5px solid #ffffff !important;

    background:#ffffff !important;

    box-shadow:
      0 10px 28px rgba(0,0,0,.20) !important;
  }

  .profileImageBox img{
    display:block !important;

    width:100% !important;
    height:100% !important;

    max-width:none !important;

    object-fit:cover !important;

    object-position:center center !important;

    border-radius:50% !important;

    margin:0 !important;
    padding:0 !important;
  }

  /* =======================================================
     HERO BUTTONS
  ======================================================= */

  .heroButtons{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }

  .heroButtons .btn{
    max-width:100%;
  }

}


/* =========================================================
   SMALL MOBILE — ≤ 480px
========================================================= */

@media (max-width:480px){

  .hero > .container{
    padding-left:22px !important;
    padding-right:16px !important;
  }

  .heroGrid{
    grid-template-columns:
      minmax(0,1fr) 135px !important;

    gap:10px !important;
  }

  .heroProfile{
    width:135px !important;
    min-width:135px !important;
    max-width:135px !important;
  }

  .profileImageBox{
    width:130px !important;
    height:130px !important;

    min-width:130px !important;
    min-height:130px !important;

    max-width:130px !important;
    max-height:130px !important;
  }

}


/* =========================================================
   VERY SMALL PHONES — ≤ 360px
========================================================= */

@media (max-width:360px){

  .hero > .container{
    padding-left:18px !important;
    padding-right:12px !important;
  }

  .heroGrid{
    grid-template-columns:
      minmax(0,1fr) 118px !important;

    gap:8px !important;
  }

  .heroProfile{
    width:118px !important;
    min-width:118px !important;
    max-width:118px !important;
  }

  .profileImageBox{
    width:112px !important;
    height:112px !important;

    min-width:112px !important;
    min-height:112px !important;

    max-width:112px !important;
    max-height:112px !important;
  }

   .heroHighlights .hero-stat a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.heroHighlights .hero-stat a strong,
.heroHighlights .hero-stat a small {
    display: block;
}

.heroHighlights .hero-stat a:hover {
    text-decoration: none;
}
}
/* =========================================================
   RESEARCH PUBLICATIONS
========================================================= */

#publications .publication-list{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:28px;
}

#publications .publication-card{
  display:block;
  width:100%;
  padding:18px 20px;
  background:#ffffff;
  border:1px solid #e5eaf0;
  border-radius:12px;
  text-decoration:none;
  color:inherit;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

#publications .publication-card:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

#publications .publication-card strong{
  display:block;
  color:#173b53;
  font-size:15px;
  line-height:1.55;
}

#publications .publication-card small{
  display:block;
  margin-top:8px;
  color:#647684;
  font-size:12px;
  line-height:1.55;
}
