@charset "utf-8";
/* CSS Document */



/* Section band */
.heritage-technical{
  padding: 100px 0;
  background: #f6f7f8; /* grey band */
}

/* Optional subtle blue tint at bottom (comment out if not wanted) */
/*
.heritage-technical{
  background: linear-gradient(
    to bottom,
    #f6f7f8 0%,
    #f6f7f8 70%,
    rgba(0,99,166,.03) 100%
  );
}
*/

/* Section head tweaks (safe if you already have these) */
.heritage-technical .section-label{
  color: var(--duration-blue);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.heritage-technical .section-head h2{
  margin: 8px 0 10px;
}

.heritage-technical .section-head p{
  color:#666;
}

/* Grid */
.tech-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 40px;
}

/* Card */
.tech-card{
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  overflow: hidden;
}

/* Blue accent line */
.tech-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background: var(--duration-blue);
}

/* Card header */
.tech-card__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.tech-card__head h3{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color:#111;
}

/* Chips (Top hung / Side hung) */
.tech-chip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,99,166,.08);
  color: var(--duration-blue);
  font-weight: 700;
  white-space: nowrap;
}

/* Key/Value rows */
.tech-kv{
  margin: 0;
  padding: 6px 0;
}

.tech-kv > div{
  display:flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.tech-kv > div:last-child{
  border-bottom: 0;
}

.tech-kv dt{
  color: #666;
  font-size: 14px;
}

.tech-kv dd{
  margin: 0;
  font-weight: 800;
  color: #222;
  font-size: 14px;
}

/* Performance icons block */
.tech-icons{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 20px 0;
}

.tech-icon{
  background: #f6f7f8;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

/* Blue performance badge */
.tech-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  min-width: 38px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--duration-blue);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,99,166,.35);
  font-weight: 900;
}

.tech-icon small{
  display:block;
  margin-top: 8px;
  color:#666;
  font-size: 12px;
}

/* Bullet list */
.tech-list{
  margin: 0;
  padding: 16px 20px 18px 38px;
  color:#555;
}

.tech-list li{
  margin-bottom: 10px;
}

/* Notes / body copy inside cards */
.tech-note{
  padding: 14px 20px 20px;
  margin: 0;
  color:#666;
  line-height: 1.6;
  font-size: 14px;
}

/* Downloads list */
.tech-downloads{
  padding: 8px 10px 0;
}

.tech-file{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  margin: 8px 10px;
  border-radius: 12px;
  background: #f6f7f8;
  text-decoration: none;
  color: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.tech-file:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,99,166,.18);
}

.tech-file__title{
  font-weight: 800;
  font-size: 14px;
  color: var(--duration-blue);
}

.tech-file__meta{
  font-size: 12px;
  color:#666;
  white-space: nowrap;
}

/* Optional: add a small PDF pill at the end (use if you want)
.tech-file__meta::before{
  content:"PDF";
  display:inline-block;
  margin-right:8px;
  padding:2px 6px;
  border-radius:999px;
  font-size:11px;
  background: rgba(0,99,166,.10);
  color: var(--duration-blue);
  font-weight:700;
}
*/

/* Sub-card inside the wide downloads card */
.tech-subcard{
  margin: 14px 20px 20px;
  padding: 16px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.tech-subcard h4{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  color:#111;
}

.tech-subcard p{
  margin: 0;
  color:#666;
  line-height: 1.55;
  font-size: 14px;
}

/* Wide card spans both columns */
.tech-card--wide{
  grid-column: 1 / -1;
}

/* Optional: make the #technical anchor land nicely below fixed header */
#technical{
  scroll-margin-top: 120px;
}

/* Responsive */
@media (max-width: 980px){
  .tech-grid{
    grid-template-columns: 1fr;
  }
  .tech-card--wide{
    grid-column: auto;
  }
  .tech-icons{
    grid-template-columns: repeat(2, 1fr);
  }
}





.tech-table-wrap{
  padding: 20px 20px 10px;
  overflow-x: auto;
}

.tech-table{
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

/* base cells */
.tech-table th,
.tech-table td{
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.35;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0,0,0,.045);
}

/* header row */
.tech-table thead th{
  background: #f8fafb;
  font-weight: 800;
  color: #111;
  text-align: center;
  white-space: nowrap;
}

/* first column in header */
.tech-table thead th:first-child{
  text-align: left;
  color: #111;
  min-width: 190px;
  padding-left: 20px;
}

/* row labels */
.tech-table tbody th{
  text-align: left;
  font-weight: 800;
  color: #222;
  background: #fcfcfc;
  white-space: nowrap;
  min-width: 190px;
  padding-left: 20px;
}

/* body cells */
.tech-table tbody td{
  text-align: center;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
  min-width: 72px;
}

/* alternating data columns only */
.tech-table tr > *:nth-child(2),
.tech-table tr > *:nth-child(4),
.tech-table tr > *:nth-child(6),
.tech-table tr > *:nth-child(8){
  background: rgba(0,99,166,.035);
}

/* faint vertical separators */
.tech-table th + th,
.tech-table th + td,
.tech-table td + td{
  border-left: 1px solid rgba(0,0,0,.035);
}

/* last row no hard border */
.tech-table tbody tr:last-child th,
.tech-table tbody tr:last-child td{
  border-bottom: 0;
}

/* subtle hover */
.tech-table tbody tr:hover th,
.tech-table tbody tr:hover td{
  background-color: rgba(0,99,166,.05);
}

/* scrollbar polish */
.tech-table-wrap::-webkit-scrollbar{
  height: 10px;
}

.tech-table-wrap::-webkit-scrollbar-track{
  background: rgba(0,0,0,.04);
  border-radius: 999px;
}

.tech-table-wrap::-webkit-scrollbar-thumb{
  background: rgba(0,99,166,.22);
  border-radius: 999px;
}

/* responsive */
@media (max-width: 980px){
  .tech-table{
    min-width: 720px;
  }
}

@media (max-width: 640px){
  .tech-table-wrap{
    padding: 16px 16px 8px;
  }

  .tech-table th,
  .tech-table td{
    padding: 13px 14px;
    font-size: 13px;
  }

  .tech-table thead th:first-child,
  .tech-table tbody th{
    min-width: 165px;
    padding-left: 16px;
  }

  .tech-table tbody td{
    min-width: 64px;
  }
}

