/* Match the overall feel of existing site: clean, maroon accents */
:root{
  --fsu-maroon: #782F40;
  --fsu-gold: #CEB888;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.page{
  max-width: none;
  margin: 0 auto;
  padding: 28px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.page-head h1{
  margin: 16px 0 10px;
  color: var(--fsu-gold);
  font-size: 34px;
  letter-spacing: 0.2px;
}


.page-head,
.grid{
  width: 80%;
}

.page .desc{
  font-size: 1.05rem;
  line-height: 1.6;
}
.subtitle{
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15.5px;
  max-width: 900px;
}

.grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/*
@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
	    .main-container{
        margin-top: 5%;
    }
}
*/

@media (max-width: 900px){
  .grid{
    grid-template-columns: 1fr;
    width: 92%;
  }

  .page-head{
    width: 92%;
  }
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}

/*
.card{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}
*/

.card-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.card h2{
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  color: #111827;
}

.tag{
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(120,47,64,0.18);
  color: var(--fsu-maroon);
  background: rgba(120,47,64,0.06);
}

.desc{
  margin: 10px 0 14px;
  color: #374151;
  line-height: 1.6;
  font-size: 14.5px;
}

.specs{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin: 12px 0 14px;
}

.spec{
  display: flex;
  gap: 10px;
  padding: 6px 0;
  line-height: 1.35;
}

.spec .k{
  width: 92px;
  color: var(--muted);
  font-size: 13px;
}

.spec .v{
  flex: 1;
  color: #111827;
  font-size: 13.5px;
}

.links{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn{
  display: inline-block;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  border: 1px solid var(--fsu-maroon);
  background: var(--fsu-maroon);
  color: white;
  transition: transform 0.05s ease, opacity 0.15s ease;
}

.btn:hover{
  opacity: 0.92;
}

.btn:active{
  transform: translateY(1px);
}

.btn.outline{
  background: transparent;
  color: var(--fsu-maroon);
}

.note{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.55;
}

/* Optional: highlight active nav link if navbar.css doesn't already */
.nav-links a.active{
  color: var(--fsu-gold);
  font-weight: 700;
}

/* Only affect navbar layout on systems page */
.systems-nav-header{
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Put links on the same row as the title */
.systems-nav-header .nav-links.inline{
  display: flex;
  gap: 14px;
}

/* Make links visually lighter than the title */
.systems-nav-header .nav-links.inline a{
  font-size: 14px;
  font-weight: 600;
}

/* Optional: highlight active page */
.systems-nav-header .nav-links.inline a.active{
  color: #CEB888;  /* FSU gold */
}

/* ---------- LEEP funding note (Conversational AI Infrastructure only) ---------- */

.funding-note {
  margin: 14px 0 16px 0;
  padding: 12px 14px;
  border-left: 3px solid #782F40;   /* FSU garnet */
  background-color: #faf7f7;
}

.funding-note p {
  margin: 6px 0;
  line-height: 1.45;
  font-size: 0.95em;
}

