@charset "UTF-8";
/* Tab Styles */

/* Tabs */

.tabs {
  display: flex;
/*  border-bottom: 1px solid #ddd; */
  border: 1px solid #ddd;	
  background: transparent;
/*  border-radius: 0.25rem; */
  border-top-left-radius: 0.5rem; 	
  border-top-right-radius: 0.5rem; 	
  border-bottom-left-radius: 0.25rem; 	
  border-bottom-right-radius: 0.25rem; 		
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);	
}

.tabs button {
  flex: 1;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  color: #444;
  font-weight: 600;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

/* Active tab */
.tabs button[aria-selected="true"] {
/* color: #0077cc; */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  background-color: #3366CC;
  border-top-left-radius: 0.5rem; 	
  border-top-right-radius: 0.5rem; 	
  border-bottom-left-radius: 0.25rem; 	
  border-bottom-right-radius: 0.25rem; 		
/*  border-bottom-color: #0077cc; */
}

/* Inactive tab hover */
.tabs button[aria-selected="false"]:hover {
  color: #005fa3; /* darker brand color */
  border-bottom-color: #ccc; /* light underline cue */
}

/* Download bar */
.download-bar {
  text-align: right;
  margin-top: 1rem;
}

.download-link {
  display: inline-block;
  margin-top: 1.65rem; /* adds space above */	
  padding: 0.5em 1em;
  background-color: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
  float: right;
/*  background: #0077cc;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none; */
}

.download-link:link {
  color: #C8E8EE; 
/*  color: #A8DCEE; */
}

/* Hover and focus state */
.download-link:hover,
.download-link:focus {
  background-color: #005fa3;
  color: #fff;
}

/* Active state (optional) */
.download-link:active {
  background-color: #004a80;
}

/* .download-link:hover {
  background: #005fa3;
} */

/* Vitae Content Styles */

.vitae-subhed {
/*  display: flex;
  align-items: center; */
  display: inline-block;
  vertical-align: middle;
}

.vitae-content {
  background: white;
  padding: 1rem 2rem;
/*  margin-top: 2rem; */
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.vitae-content::after {
  content: "";
  display: block;
  clear: both;
}

.ul-vitae {
  display: flex;
  flex-direction: column; /* For vertical list */
  gap: 7px; /* Adds 15px space between list items */	
}

.li-vitae {
  font-size: 1.1rem;
}

.h1-vitae {
  font-size: 1.65rem;
  margin-bottom: 15px;
  padding-bottom: 0;	
}

.h2-vitae {
  font-family: 'Reddit Sans', sans-serif;	
  font-size: 1.35rem;
  font-weight: 400;
}
.h3-vitae {
  font-size: 1.1rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-vitae {
  margin-bottom: 0;
}

#design-innovation .vitae-content {
  max-height: none;
}

#education-academia .vitae-content {
  max-height: none;
}

button {
  font-family: 'Reddit Sans', sans-serif;
}

.vitae-for {
  font-weight: 300;
	font-style: italic;
}

.bump-right {
  margin-left: 0.75rem;
}

