:root{
  transition: color .25s ease, background .25s ease, border-color .25s ease;
  /* Dark theme – higher contrast */
  --bg:#0a0c12;
  --bg-2:#0d1220;
  --glass:rgba(255,255,255,.05);

  --text:#f1f4f9;           /* brighter body text */
  --muted:#c4ceda;          /* lighter muted text for readability */
  --line:rgba(255,255,255,.28); /* stronger border for dark theme */
  --brand:#5cd2f3;          /* brighter cyan for links/buttons */
  --accent:#b79cff;         /* slightly brighter purple */
  --ok:#34d399;
  --hdr-bg: rgba(10,12,18,.92);       /* header background (dark) */
  --nav-link:#e6edf6;                 /* nav link color (dark) */
  --card-b:20px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --tag-bg: rgba(183,156,255,.22);
  --tag-border: rgba(183,156,255,.45);
  --tag-text: #eef6ff;
  --hero-card-bg: linear-gradient(135deg, rgba(7,10,18,.95), rgba(18,27,44,.9));
  --hero-card-outline: rgba(92,210,243,.45);
  --hero-card-tag-bg: rgba(92,210,243,.18);
  --hero-card-tag-border: rgba(92,210,243,.45);
  --hero-card-text:#f5f8ff;
  --hero-card-sub: rgba(241,244,249,.85);
}

/* Light mode – also boost contrast a bit */
@media (prefers-color-scheme: light){
  :root{
    --bg:#f6f9fc;
    --bg-2:#eef3f9;
    --glass:rgba(255,255,255,.9);

    --text:#0b172a;         /* darker text in light mode */
    --muted:#314559;        /* readable muted text in light mode */
    --line:rgba(0,0,0,.15);
    --brand:#0e99c5;        /* cyan shifted darker for light bg */
    --accent:#6c4fff;
    --hdr-bg: rgba(255,255,255,.85);  /* header background (light) */
    --nav-link:#0b172a;               /* nav link color (light) */
    --tag-bg: rgba(108,79,255,.10);
    --tag-border: rgba(108,79,255,.30);
    --tag-text: #2b2963;
    --hero-card-bg: linear-gradient(135deg, rgba(255,255,255,.96), rgba(224,236,255,.92));
    --hero-card-outline: rgba(14,153,197,.28);
    --hero-card-tag-bg: rgba(14,153,197,.14);
    --hero-card-tag-border: rgba(14,153,197,.25);
    --hero-card-text:#0b172a;
    --hero-card-sub: rgba(11,23,42,.7);
  }
}

/* --- Manual theme overrides (take precedence over media queries) --- */
:root[data-theme="dark"]{
  --bg:#0a0c12;
  --bg-2:#0d1220;
  --glass:rgba(255,255,255,.05);
  --text:#f1f4f9;
  --muted:#c4ceda;
  --line:rgba(255,255,255,.28);   /* stronger border for dark theme */
  --brand:#5cd2f3;
  --accent:#b79cff;
  --ok:#34d399;
  --hdr-bg: rgba(10,12,18,.92);
  --nav-link:#e6edf6;
  --tag-bg: rgba(183,156,255,.22);
  --tag-border: rgba(183,156,255,.45);
  --tag-text: #eef6ff;
  --hero-card-bg: linear-gradient(135deg, rgba(7,10,18,.95), rgba(18,27,44,.9));
  --hero-card-outline: rgba(92,210,243,.45);
  --hero-card-tag-bg: rgba(92,210,243,.18);
  --hero-card-tag-border: rgba(92,210,243,.45);
  --hero-card-text:#f5f8ff;
  --hero-card-sub: rgba(241,244,249,.85);
}
:root[data-theme="light"]{
  --bg:#f6f9fc;
  --bg-2:#eef3f9;
  --glass:rgba(255,255,255,.9);
  --text:#0a1522;
  --muted:#2a3e51;
  --line:rgba(0,0,0,.15);
  --brand:#0e99c5;
  --accent:#6c4fff;
  --ok:#34d399;
  --hdr-bg: rgba(255,255,255,.85);
  --nav-link:#0b172a;
  --tag-bg: rgba(108,79,255,.10);
  --tag-border: rgba(108,79,255,.30);
  --tag-text: #2b2963;
  --hero-card-bg: linear-gradient(135deg, rgba(255,255,255,.96), rgba(224,236,255,.92));
  --hero-card-outline: rgba(14,153,197,.28);
  --hero-card-tag-bg: rgba(14,153,197,.14);
  --hero-card-tag-border: rgba(14,153,197,.25);
  --hero-card-text:#0b172a;
  --hero-card-sub: rgba(11,23,42,.7);
}

*{ box-sizing:border-box }
html{ scroll-behavior:smooth }
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:linear-gradient(180deg,var(--bg) 0%, var(--bg-2) 55%, var(--bg) 100%);
  color:var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background .25s ease;
}
a{ color:var(--brand); text-decoration:none }
a:hover, a:focus{
  text-decoration:underline;
}
.container{ max-width:1120px; margin:0 auto; padding:clamp(20px, 4vw, 40px); }
main > section{
  position:relative;
  margin:clamp(40px, 5vw, 72px) 0;
  padding:clamp(14px, 2.5vw, 28px) 0;
  scroll-margin-top:96px;
}
main > section:first-of-type{
  margin-top:clamp(28px, 3vw, 48px);
  padding-top:0;
}
main > section:not(:first-of-type){
  padding-top:clamp(20px, 3vw, 32px);
}
main > section:not(:first-of-type)::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, transparent 0%, var(--line) 15%, var(--line) 85%, transparent 100%);
  opacity:.85;
  pointer-events:none;
}

/* Header */
.hdr{
  position:sticky;
  top:0;
  z-index:40;
  background: var(--hdr-bg);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom:1px solid var(--line);
}
.hdr-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:10px clamp(12px, 3vw, 24px) }
.brand{ display:flex; align-items:center; gap:12px }
.brand strong{
  font-weight:800;
  color:var(--text);
}
.hdr-navwrap{
  display:flex;
  align-items:center;
  gap:20px;
  margin-left:auto;
  flex:1 1 auto;
}
.hdr-controls{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.logo{ width:40px; height:40px; border-radius:12px; background:linear-gradient(135deg,var(--brand),var(--accent)); display:grid; place-items:center; color:#07121a; font-weight:900; box-shadow:var(--shadow); border:1px solid var(--line) }
.nav a{
  margin:0 10px;
  color:var(--nav-link);
  font-weight:600;
}

/* Nav: center items and allow graceful wrapping on tighter widths */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  white-space: normal;
  will-change: transform, opacity;
}
.nav a { margin: 0 8px; }

/* Tighter nav on mid-sized screens (delay wrapping) */
@media (max-width: 1180px){
  .nav { gap: 8px; }
  .nav a { margin: 0 6px; font-size: 0.96rem; }
}
@media (max-width: 1060px){
  .nav { gap: 6px; }
  .nav a { margin: 0 4px; font-size: 0.92rem; }
}
.nav a.active,
.nav a:hover,
.nav a:focus{
  color:var(--text);
  text-decoration:underline;
  text-underline-offset:3px;
}
.lang{
  display:flex;
  align-items:center;
  gap:10px;
  padding:4px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
}
:root[data-theme="light"] .lang{
  background:rgba(14,153,197,.08);
}
.lang-label{
  font-size:.72rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--muted);
}
.lang-buttons{
  display:flex;
  align-items:center;
  gap:6px;
}
.lang button{
  padding:6px 14px;
  border-radius:999px;
  border:none;
  background:transparent;
  color:var(--text);
  cursor:pointer;
  font-weight:600;
}
.lang button.active{ background:linear-gradient(135deg,var(--brand),var(--accent)); color:#041018; font-weight:700 }

/* Make language active state persistent from initial load (no flash) */
html[data-lang="en"] #btn-en,
html[data-lang="gr"] #btn-gr{
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:#041018;
  font-weight:700;
}
.theme{ display:flex; align-items:center; }

/* Removed old .theme button styles */

.theme select{
  padding:6px 10px;
  border-radius:10px;
  border:1px solid var(--line);
  background:var(--bg);
  color:var(--text);
  cursor:pointer;
}
.theme select:focus{
  outline:2px solid var(--brand);
  outline-offset:2px;
  border-radius:10px;
}
@media (max-width: 980px){
  .hdr-navwrap{
    gap:12px;
    justify-content:flex-end;
  }
  .hdr-controls{
    margin-left:auto;
  }
}
@media (max-width: 720px){
  .hdr-navwrap{
    flex-direction:column;
    align-items:flex-end;
  }
  .lang-label{
    display:none;
  }
}
/* Hide brand subtitle on small screens to reduce header crowding */
@media (max-width: 600px){
  #brand-tag{
    display:none;
  }
  .brand strong{
    font-size:0.92rem;
  }
}

/* Hamburger button (hidden on desktop) */
.hamburger{
  display:none;
  width:42px; height:42px;
  border-radius:10px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  cursor:pointer;
  align-items:center; justify-content:center;
  gap:5px;
}
.hamburger:focus-visible{ outline:2px solid var(--brand); outline-offset:2px; }
.hamburger span{
  display:block;
  width:20px; height:2px;
  background:var(--text);
}

/* HERO NAMESPACE ISOLATION */
.hero-section {
  display: block;
  margin: 0;
  padding: 0;
}

/* --- HERO SECTION — CLEAN RESPONSIVE LAYOUT (FINAL) --- */

.hero-section .hero-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 50px) 20px;
}

.hero-section .hero-card {
  background: var(--hero-card-bg);
  border: 1px solid var(--hero-card-outline);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 14px 40px rgba(0,0,0,.38);
}

.hero-section .hero-card-top {
  display: flex;
  gap: clamp(24px, 3vw, 40px);
  align-items: flex-start;
}

.hero-section .hero-card-info {
  flex: 1 1 0%;
  min-width: 0;
}

.hero-section .hero-name {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--hero-card-text);
}

.hero-section .hero-title {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--hero-card-sub);
  margin-bottom: 16px;
}

.hero-section .hero-intro,
.hero-section .hero-mission {
  color: var(--hero-card-text);
  line-height: 1.55;
  margin-bottom: 14px;
}

.hero-section .hero-mission {
  font-weight: 600;
  color: var(--accent);
}

.hero-section .hero-ctas {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-section .hero-subgrid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-section .hero-subgrid span {
  background: var(--hero-card-tag-bg);
  border: 1px solid var(--hero-card-tag-border);
  padding: 6px 12px;
  border-radius: 12px;
  color: var(--hero-card-text);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-section .hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.hero-section .hero-photo-frame {
  flex-shrink: 0;
  width: clamp(110px, 14vw, 160px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 5px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  align-self: flex-start;
}

.hero-section .hero-photo {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Responsive collapse */
@media (max-width: 640px) {
  .hero-section .hero-card-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-section .hero-photo-frame {
    width: 140px;
    align-self: center;
    order: -1;
  }
  .hero-section .hero-card {
    padding: 22px;
  }
  .hero-section .hero-subgrid {
    justify-content: center;
  }
  .hero-section .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .hero-section .hero-card {
    padding: 18px;
  }
  .hero-section .hero-ctas {
    flex-direction: column;
  }
}
.card{
  background:linear-gradient(180deg,var(--glass),rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--card-b);
  box-shadow:var(--shadow);
  overflow:hidden; 
  padding:clamp(20px, 2.5vw, 32px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:not(.hero-card):hover{
  transform: translateY(-2px);
  box-shadow:0 18px 40px rgba(5,8,16,.3);
  border-color:rgba(92,210,243,.45);
}


@media (max-width: 980px){
}
@media (max-width: 860px){
  .grid{ grid-template-columns:1fr; }
  .tile{ grid-column:span 12; }
}

/* Ensure comfortable layout before phone sizes */
@media (max-width: 640px){
  /* unify spacing on phones */
  main > section{ margin:28px 0; padding:12px 0; }
  main > section:not(:first-of-type){ padding-top:18px; }
  main > section:not(:first-of-type)::before{
    left:16px;
    width:calc(100% - 32px);
  }
  .grid{ gap:14px; }
  .card{ padding:18px; }
  .stats{ grid-template-columns:repeat(2,minmax(120px,1fr)); gap:10px; }
}
.section-title{
  position:relative;
  margin:0 0 1.5rem;
  font-size:clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight:700;
  letter-spacing:-0.3px;
  padding-left:20px;
}
.section-title::before{
  content:"";
  position:absolute;
  left:0;
  top:0.15em;
  bottom:0.15em;
  width:5px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--brand),var(--accent));
}
@media (max-width: 640px){
  .section-title{
    font-size:22px;
    margin:10px 0 12px;
    padding-left:14px;
  }
  main > section{ scroll-margin-top:84px; }
}
/* Revert to fixed desktop font size */
h1{ font-size:46px; line-height:1.12; margin:.35rem 0; letter-spacing:-0.3px; }
.hero .sub{
  color: var(--muted);          /* adapt to dark/light theme */
  margin:0 auto .4rem;
  text-align:center;
  max-width:640px;
}
/* Revert to fixed desktop subtitle font size */
.sub{ color:var(--muted); font-size:19px; line-height:1.45; }
/* Wrap long words/links and improve readability */
.card h1,.card h2,.card h3,.card .sub,
.card p,.card li,.tile p,.tile li{
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
  -webkit-hyphens:auto; /* iOS Safari */
  line-height:1.5;
}
.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px,1fr));
  gap:16px;
  margin-top:clamp(20px, 3vw, 32px);
  width:100%;
}
.hero-card .stats{
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:clamp(16px, 2vw, 26px);
}
:root[data-theme="light"] .hero-card .stats{
  border-top:1px solid rgba(0,0,0,.08);
}
.stat{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--glass),rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  display:flex;
  flex-direction:column;
  gap:2px;
  animation: statRise .6s ease both;
}
.hero-card .stat{
  text-align:left;
  align-items:flex-start;
}
.stat b{
  font-size:1.45rem;
  color:var(--text);
}
.stat .muted{
  font-size:.9rem;
}
@media (max-width: 480px){
  .stats{ grid-template-columns:1fr; }
}
code{ white-space:normal; word-break:break-word; }
pre{ white-space:pre-wrap; word-break:break-word; }

/* Restore base grid and tile structure */

/* Project action links */
.actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px }
.proj-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid transparent;
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:#041018;
  font-weight:600;
  box-shadow:0 8px 24px rgba(5,8,16,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.proj-link:hover,
.proj-link:focus-visible{
  text-decoration:none;
  transform: translateY(-2px);
  box-shadow:0 12px 28px rgba(5,8,16,.45);
  filter:brightness(1.05);
}
:root[data-theme="light"] .proj-link{
  color:#f7fbff;
  box-shadow:0 8px 20px rgba(14,17,31,.25);
}
@media (prefers-color-scheme: light){
  :root:not([data-theme]) .proj-link{
    color:#f7fbff;
    box-shadow:0 8px 20px rgba(14,17,31,.25);
  }
}

/* Contact styles - NEW DESIGN */
.contact-card-new {
  padding: clamp(24px, 3vw, 36px);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-avatar-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(92,210,243,.25);
}

.contact-intro h3 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.contact-intro p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(92,210,243,.06), rgba(183,156,255,.04));
  text-decoration: none;
  transition: all .25s ease;
}

.contact-link-item:hover,
.contact-link-item:focus {
  transform: translateY(-2px);
  border-color: rgba(92,210,243,.45);
  background: linear-gradient(135deg, rgba(92,210,243,.12), rgba(183,156,255,.08));
  box-shadow: 0 8px 24px rgba(92,210,243,.2);
  text-decoration: none;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--brand);
}

.contact-link-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.contact-link-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.contact-link-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .contact-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

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

  .contact-link-item {
    padding: 14px 16px;
  }
}

/* OLD Contact styles - Keep for backwards compatibility if needed */
.contact-card{
  padding:14px 16px;
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.contact-avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--brand);
  flex:0 0 auto;
}

.contact-card .list{
  display:grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  column-gap:16px;
  row-gap:6px;
  line-height:1.25;
}

/* Icon utilities */
.icon{
  width:16px;                 /* was 18px */
  height:16px;                /* was 18px */
  fill:currentColor;         /* inherits text/link color */
  vertical-align:middle;
  opacity:.95;
  flex:0 0 auto;
}


/* Hero Photo Box (unified inside hero-card) */


.pad-18{ padding:18px; }
.mt-10{ margin-top:10px; }

/* Inline external-link icon (force small size) */
.ext-icon{ display:inline-block; width:.95em; height:.95em; max-width:14px; max-height:14px; vertical-align:-1px; fill:currentColor; flex:0 0 auto; }
.ext-icon path{ fill:currentColor; }

/* Checklist with checkmark icons */
.checklist{ list-style:none; padding-left:0; display:grid; gap:8px; }
.checklist li{ display:flex; align-items:flex-start; gap:8px; }
.icon-check{ width:16px; height:16px; color:var(--ok); flex:0 0 auto; margin-top:3px; }
.icon-check svg{ display:block; width:100%; height:100%; }
.about-card{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.about-subheading{
  margin:32px 0 14px;
  font-size:0.82rem;
  font-weight:700;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.1em;
  opacity:0.75;
}

.about-leads{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:22px 26px;
  align-items:start;
}

.about-lead{
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  min-height:120px;
  border-radius:20px;
  border:1px solid var(--line);
  background:linear-gradient(160deg, rgba(92,210,243,.10), rgba(183,156,255,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.about-list{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:20px;
  padding-left:0;
  margin-top:14px;
}

.about-list li{
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--glass),rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.affil-logos{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(150px,1fr));
  gap:22px;
  padding-top:14px;
  padding-bottom:14px;
  justify-items:center;
  align-items:center;
}

.affil-logo-wrapper img{
  width:100%;
  max-height:52px;
  object-fit:contain;
  display:block;
  filter:brightness(1);
}

/* Align icon + text nicely inside contact items */
.contact-card .list li{
  display:flex;
  align-items:center;
  gap:6px;                    /* was 8px */
  font-size:14.5px;           /* a bit smaller */
}

/* Keep labels narrow and readable */
.contact-card .list li span[id^="lbl-"]{
  min-width:84px;             /* aligns columns */
  color:var(--muted);
}
/* Slightly brighten icons on hover to signal interactivity */
.contact-card a:hover .icon,
.contact-card a:focus .icon{
  opacity:1;
}

/* Mobile-friendly: stack avatar above details */
@media (max-width: 640px){
  .contact-card{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;                 /* was 12px */
    padding:14px;             /* tighter on mobile too */
  }
  .contact-avatar{
    width:52px;               /* a touch larger for touch */
    height:52px;
  }
  .contact-card .list{
    grid-template-columns: 1fr; /* single column on mobile */
    row-gap:8px;
  }
  .contact-card .list li{ font-size:15px; }
  .card li, .tile li{ line-height:1.55; }
}

/* Visible keyboard focus for header links */
.nav a:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
  border-radius:6px;
}
.btn:focus-visible,
.lang button:focus-visible,
.theme select:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
  border-radius:10px;
}

/* Skip link utility */
.sr-only-focusable{ position:absolute; left:-9999px; }
.sr-only-focusable:focus{ left:8px; top:8px; background:var(--bg); color:var(--text); padding:8px 10px; border-radius:8px; outline:2px solid var(--brand); }

/* Back to top button */
.back-to-top{
  position:fixed;
  right:16px; bottom:16px;
  width:40px; height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--glass),rgba(255,255,255,.02));
  color:var(--text);
  box-shadow: var(--shadow);
  cursor:pointer;
  display:grid; place-items:center;
  opacity:0; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index:50;
}
.back-to-top.show{
  opacity:1; transform: translateY(0);
}
.back-to-top:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
}

/* Enhanced :focus-visible styles for better accessibility */
a:focus-visible,
.proj-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: var(--card-b);
}

.affil-logo-wrapper:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  transform: translateY(-4px) scale(1.05);
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* Added per instructions */
@media (max-width:980px){
  .hdr{ position:sticky; top:0; }

  /* Mobile nav: hidden by default, slides down when open */
  .hamburger{ display:inline-flex; }
  .nav{
    position:fixed;
    left:0; right:0; top:64px;
    background: var(--hdr-bg);
    backdrop-filter: blur(10px);
    display:flex; flex-direction:column;
    gap:12px;
    padding:16px 24px;
    transform: translateY(-130%);
    opacity:0;
    pointer-events:none;
    transition: transform .25s ease, opacity .2s ease;
    border-bottom:1px solid var(--line);
  }
  .nav.nav--open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav a{ padding:8px 0; margin:0; }
}

/* Adjust hero image scaling */

@media (hover: none){
  .card:hover{ transform:none; box-shadow:var(--shadow); }
  .btn:hover{ transform:none; }
  .hero-card .btns .btn:hover{ transform:none; box-shadow:0 10px 24px rgba(5,8,16,.28); }
}

@media (prefers-reduced-motion: reduce){
  .hero .card{ animation:none !important; }
  .hero-card > *{
    animation:none !important;
    opacity:1 !important;
  }
  .hero-portrait{ animation:none !important; }
}

/* Print styles */
@media print{
  /* Basic page setup */
  @page{ margin: 12mm; }
  html, body{ background:#fff !important; }
  body{ color:#000 !important; }

  /* Simplify components for print */
  .hdr, .hamburger, .theme, .lang, .back-to-top{ display:none !important; }
  .card, .tile{ box-shadow:none !important; background:#fff !important; border:1px solid #ccc !important; }
  .btn, .tag{ display:none !important; }

  /* Layout adjustments */
  .container{ max-width:100% !important; padding:0 !important; }
  section{ margin:12px 0 !important; padding:0 !important; }
  .grid{ gap:12px 14px; grid-template-columns:1fr 1fr; }

  /* Typography tweaks for print clarity */
  h1{ font-size:28px !important; }
  h2{ font-size:20px !important; }
  h3{ font-size:16px !important; }
  .sub{ font-size:14px !important; color:#000 !important; }

  /* Images */
  img{ max-width:100% !important; height:auto !important; box-shadow:none !important; border:none !important; }

  /* Links show URL (optional; many browsers handle this via settings) */
  a{ color:#000 !important; text-decoration:none !important; }
}

/* Revert tag font size to fixed desktop size */
.tag{ display:inline-flex; gap:8px; align-items:center; padding:6px 12px; border-radius:999px; background:var(--tag-bg); border:1px solid var(--tag-border); color:var(--tag-text); font-weight:600; font-size:13px }


/* Make sure teaching badges sit nicely together */
#teaching .proj-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:.35rem 0 .5rem;
}

/* Bold label styling for Role / Ρόλος */
.role-label{ font-weight:700; }

/* --- Project meta & base project badge --- */
.proj-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin:.25rem 0 .5rem;
}
.proj-badge{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  line-height:1;
  border:1px solid var(--line);
  background:transparent;   /* let color variants paint background */
  color:var(--text);
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.proj-badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}


/* Small inline emoji icons for skills/badges */
.skill-ico{
  display:inline-block;
  font-size:1rem;
  line-height:1;
  margin-right:6px;
  transform: translateY(1px);
  opacity:.95;
}

/* Emoji inside publication badges */
.pub-badge .pub-emoji{
  display:inline-block;
  margin-right:6px;
  transform: translateY(1px);
  line-height:1;
}

/* — Tighten cards on smaller phones — */
@media (max-width: 600px){
  /* overall card padding */
  .card{ padding:14px; }

  /* project/portfolio tiles a bit tighter */
  .card.tile{
    padding:12px;
    margin-bottom:14px;
  }

  /* spacing around badges and lists */
  .card.tile .proj-meta{ margin:4px 0 6px; }
  .card.tile ul.list{ margin-top:6px; }

  /* make badges a touch more compact */
  .proj-badge{ padding:3px 8px; font-size:11.5px; }
}

/* --- Generic Button Styles (Kept for completeness) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,.02));
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  backdrop-filter: saturate(150%);
  min-height: 44px;
}
.btn:hover,
.btn:focus {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border: none;
  color: #041018;
  box-shadow: 0 18px 34px rgba(14,153,197,.28);
}
.btn.ghost {
  background: rgba(92,210,243,.08);
  border: 1px solid rgba(92,210,243,.55);
  color: var(--brand);
}
.btn.ghost:hover,
.btn.ghost:focus {
  background: rgba(92,210,243,.15);
}
.pub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .btn {
    font-size: 13.5px;
    padding: 7px 14px;
  }
}

/* --- Publications: badges + DOI links (Kept for completeness) --- */
.pub-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:6px 0 8px;
}
.pub-badge{
  display:inline-block;
  padding:3px 7px;
  border-radius:6px;
  font-size:12px;
  font-weight:600;
  margin-right:6px;
  color:#fff;            
  border:1px solid var(--line);
}
.pub-badge.journal{ background:#1976d2; }
.pub-badge.book{    background:#6a1b9a; }

/* DOI link styling */
.doi-link{
  font-size:12.5px;
  color:var(--brand);
  text-decoration:none;
  border-bottom:1px dotted var(--brand);
  padding-bottom:1px;
}
.doi-link:hover,
.doi-link:focus{ text-decoration:underline; border-bottom-color:transparent; }

/* Tighten publication items on small screens */
@media (max-width: 600px){
  .pub-meta{ gap:6px; margin:4px 0 6px; }
  .pub-badge{ padding:2px 8px; font-size:11.5px; }
  .doi-link{ font-size:11.5px; }
  #publications .timeline-item h3{ font-size:16px; }
  #publications .timeline .muted{ font-size:13.5px; }
}

/* --- Badge color palette (Research & Teaching) (Kept for completeness) --- */

/* Research program badges */
.badge-horizon { background:#0b66c3; color:#fff; border-color:rgba(0,0,0,.1); }
.badge-life    { background:#2e7d32; color:#fff; border-color:rgba(0,0,0,.1); }
.badge-espa    { background:#b23a48; color:#fff; border-color:rgba(0,0,0,.1); }

/* Portfolio/other badges */
.badge-web3      { background:#6a1b9a; color:#fff; border-color:rgba(0,0,0,.1); }
.badge-research  { background:#1565c0; color:#fff; border-color:rgba(0,0,0,.1); }
.badge-security  { background:#ef6c00; color:#fff; border-color:rgba(0,0,0,.1); }
.badge-resources { background:#455a64; color:#fff; border-color:rgba(0,0,0,.1); }
.badge-oss       { background:#263238; color:#fff; border-color:rgba(0,0,0,.1); }

/* Teaching badges */

/* --- Teaching Logo + Header Structure (Kept for completeness) --- */
.teach-header{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.teach-logo{
  width: 34px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  padding: 4px;
}

/* Course focus badge */
.badge-focus{
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #041018;
  border: none;
  font-weight: 700;
}
.badge-msc   { background:#3949ab; color:#fff; border-color:rgba(0,0,0,.1); } 
.badge-uniwa { background:#00695c; color:#fff; border-color:rgba(0,0,0,.1); }
.badge-uom   { background:#ad1457; color:#fff; border-color:rgba(0,0,0,.1); }

a.proj-badge:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* --- Teaching: Semester & Year badges (Kept for completeness) --- */
.proj-badge.badge-semester{
  color:#fff;
  border:none;
}

/* Spring: purple */
.proj-badge.badge-semester[data-semester="spring"]{
  background:#7c3aed; 
}

/* Fall: amber */
.proj-badge.badge-semester[data-semester="fall"]{
  background:#d97706; 
}

/* Neutral year badge */
.proj-badge.badge-year{
  background: linear-gradient(180deg,var(--glass), rgba(255,255,255,.02));
  color: var(--text);
  border:1px solid var(--line);
}

/* --- Year badges for research projects (Kept for completeness) --- */
.proj-year{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  line-height:1;
  background:#455a64;     
  color:#fff;
  border:1px solid rgba(0,0,0,.1);
}

#publications .card .pub-actions{ margin-top:16px; }
:root[data-theme="light"] .proj-year{ background:#37474f; color:#fff; }

.img-fluid{ display:block; max-width:100%; height:auto; }

/* Frame used for the hero portrait image (works on <img> inside <picture>) */

/* Ensure images inside <picture> behave like .img-fluid by default */
picture img{ display:block; max-width:100%; height:auto; }

/* --- Affiliation logos (About + Footer) --- */
.affil-logos{
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  align-items:center;
  justify-content:center;
  margin-top:12px;
  padding-top:10px;
  border-top:1px dashed var(--line);
}
.affil-logo{
  height:38px;
  width:auto;
  max-width:140px;
  object-fit:contain;
  padding:6px 10px;                 
  border-radius:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06); 
  filter:none;                       
  opacity:.95;
  transition: filter .2s ease, transform .2s ease, opacity .2s ease;
  mix-blend-mode: normal;
}
:root[data-theme="light"] .affil-logo{
  background: rgba(0,0,0,.04);
  filter: grayscale(15%) opacity(.98) brightness(.96);
}
.affil-logo:hover,
.affil-logo:focus{
  filter: none;
  opacity:1;
  transform: translateY(-1px);
}

/* --- Per‑logo tuning for tricky marks (Kept for completeness) --- */
.affil-logo.logo--boost{
  filter: grayscale(0%) opacity(1) brightness(1) contrast(1.12) !important;
}
:root[data-theme="light"] .affil-logo.logo--shadow{
  background:#fff;
  border-color:rgba(0,0,0,.12);
  filter: grayscale(0%) opacity(1) brightness(.98) contrast(1.2) drop-shadow(0 0 .5px rgba(0,0,0,.45)) !important;
}
:root[data-theme="dark"] .affil-logo.logo--invert{
  filter: invert(1) hue-rotate(180deg) brightness(1.1) contrast(1.05) !important;
  background: rgba(255,255,255,.12);
}

@media (prefers-color-scheme: light){
  .logo--onlight-darken{ filter: brightness(0) saturate(100%) invert(8%) contrast(112%); }
}
:root[data-theme="light"] .logo--onlight-darken{
  filter: brightness(0) saturate(100%) invert(8%) contrast(112%);
}

.logo--tinyshadow{ filter: drop-shadow(0 0 0.6px rgba(0,0,0,.45)); }

/* Footer presentation */
.site-footer{
  margin-top:32px;
  padding:18px 0 26px;
  border-top:1px solid var(--line);
  text-align:center;
  background: linear-gradient(180deg, rgba(255,255,255,.00), rgba(255,255,255,.02));
}
.footer-label{
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}
.affil-logos--footer{
  border-top:none;
  margin-top:0;
  padding-top:0;
  gap:12px 16px;
  justify-content:center;
}
.affil-logos--footer .affil-logo{
  height:42px;
  min-width:48px;
  max-width:160px;
}
@media (max-width: 480px){
  .affil-logos--footer .affil-logo{
    height:34px;
    min-width:40px;
  }
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding-bottom: 12px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(92,210,243,.08);
  border: 1px solid rgba(92,210,243,.25);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.footer-icon-link:hover,
.footer-icon-link:focus {
  background: rgba(92,210,243,.15);
  border-color: rgba(92,210,243,.45);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-divider {
  margin: 0 8px;
  opacity: 0.5;
}

#last-updated {
  font-size: 13px;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-divider {
    display: none;
  }
}

.site-footer .footer-copy{
  margin-top:10px;
  font-size:14px;
  color:var(--muted);
}

/* Responsive logo sizing */
@media (max-width: 720px){
  .affil-logo{ height:32px; max-width:120px; }
}
@media (max-width: 480px){
  .affil-logo{ height:28px; max-width:100px; }
}


/* About section subheadings */
.about-subheading {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 26px 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

/* --- Publication filter tags (Kept for completeness) --- */
.pub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 20px;
}

.filter-tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: default;
  user-select: none;
  letter-spacing: 0.03em;
}
.filter-tag::before {
  content: "#";
  opacity: 0.5;
  margin-right: 1px;
}

/* ------------------------------------------------------ */
/* FULL REDESIGN — Affiliation Logos (Kept for completeness) */
/* ------------------------------------------------------ */

.affil-section {
  margin-top: 32px;
  padding: 24px 0;
}

.affil-section h2 {
  text-align: left;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 1.65rem;
}

/* Modern grid layout */
.affil-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  justify-items: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Logo container — elevated card style */
.affil-logo-wrapper {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  width: 100%;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s;
}

/* Core logo styling */
.affil-logo-wrapper img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  display: block;
  filter: brightness(1);
}

/* Hover effects */
.affil-logo-wrapper:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

/* Light theme enhancements */
:root[data-theme="light"] .affil-logo-wrapper {
  background: rgba(0,0,0,.035);
  border-color: rgba(0,0,0,.12);
}

:root[data-theme="light"] .affil-logo-wrapper img {
  filter: brightness(.92) contrast(1.05);
}

/* Per-logo tuning */
.affil-logo--uom img {
  filter: contrast(1.15) brightness(1.05);
}
.affil-logo--uniwa img {
  filter: contrast(1.10);
}
.affil-logo--inbalight img,
.affil-logo--frontierslight img {
  filter: brightness(.90) contrast(1.1);
}

/* Responsive polish */
@media (max-width: 600px) {
  .affil-logos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 18px;
  }
  .affil-logo-wrapper {
    padding: 12px 14px;
    max-width: 130px;
  }
  .affil-logo-wrapper img {
    max-height: 42px;
  }
}

/* Fix bold visibility */
/* Fix bold visibility across all languages and muted contexts */
b,
strong {
  font-weight: 800 !important;
  color: var(--text) !important;
}

/* ------------------------------------------------------------------ */
/* FIX: Make bold text fully visible in all About cards (EN + GR)     */
/* Ensures <b> and <strong> override muted/parent colors and spans    */
/* ------------------------------------------------------------------ */

.about-lead b,
.about-lead strong,
.about-lead p b,
.about-lead p strong,
.about-lead span b,
.about-lead span strong,
.list li b,
.list li strong,
.muted b,
.muted strong {
    font-weight: 800 !important;
    color: var(--text) !important;
}

/* ------------------------------------------------------------------ */
/* Citation counts & Book statistics badges                            */
/* ------------------------------------------------------------------ */
.citation-count,
.book-stats {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: var(--ok);
}
.citation-count::before {
    content: "📊";
    font-size: 0.85em;
}
.book-stats::before {
    content: "📈";
    font-size: 0.85em;
}
:root[data-theme="light"] .citation-count,
:root[data-theme="light"] .book-stats {
    background: rgba(52, 211, 153, 0.12);
    color: #0d7d4d;
}

/* ------------------------------------------------------------------ */
/* Project tile with preview image                                     */
/* ------------------------------------------------------------------ */
.tile-with-preview {
    display: flex;
    flex-direction: column;
}
.tile-preview-link {
    display: block;
    margin: -18px -18px 16px -18px;
    border-radius: var(--card-b) var(--card-b) 0 0;
    overflow: hidden;
}
.tile-preview {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.tile-preview-link:hover .tile-preview {
    transform: scale(1.03);
    filter: brightness(1.1);
}
@media (max-width: 640px) {
    .tile-preview {
        height: 140px;
    }
}

/* ------------------------------------------------------------------ */
/* Contact card hover effects                                          */
/* ------------------------------------------------------------------ */
.contact-grid .contact-item,
.contact-card-grid > a,
.contact-card-grid > div {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-grid .contact-item:hover,
.contact-card-grid > a:hover,
.contact-card-grid > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(92, 210, 243, 0.15);
    border-color: var(--brand);
}

/* ------------------------------------------------------------------ */
/* Scroll progress indicator                                           */
/* ------------------------------------------------------------------ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    z-index: 9999;
    transition: width 0.1s ease-out;
    pointer-events: none;
}

/* ------------------------------------------------------------------ */
/* Footer last updated styling                                         */
/* ------------------------------------------------------------------ */
#last-updated {
    opacity: 0.7;
    font-size: 0.85em;
}
.footer-divider {
    margin: 0 6px;
    opacity: 0.5;
}

/* ------------------------------------------------------------------ */
/* Print stylesheet                                                    */
/* ------------------------------------------------------------------ */
@media print {
    /* Hide non-essential elements */
    .hdr,
    .hamburger,
    .back-to-top,
    .scroll-progress,
    .theme,
    .lang,
    #back-to-top {
        display: none !important;
    }

    /* Reset backgrounds for printing */
    body {
        background: white !important;
        color: #000 !important;
    }

    :root {
        --bg: white;
        --bg-2: white;
        --text: #000;
        --muted: #333;
        --line: #ccc;
    }

    /* Make cards print-friendly */
    .card,
    .tile,
    .hero-card {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    /* Ensure links show URLs */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
    a.proj-link[href]:after,
    a.btn[href]:after {
        content: none;
    }

    /* Adjust hero for print */
    .hero-section {
        padding: 20px 0 !important;
    }
    .hero-photo {
        max-width: 150px !important;
    }

    /* Ensure proper page breaks */
    section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    h2, h3 {
        break-after: avoid;
        page-break-after: avoid;
    }

    /* Footer adjustments */
    .site-footer {
        border-top: 1px solid #ddd;
        padding-top: 20px;
    }
    .affil-logos--footer {
        display: none;
    }
}
