/*

*/

.scalable-image {
  /* This ensures the image is never wider than its container */
  max-width: 100%;
  /* This keeps the image's aspect ratio intact as it scales */
  height: auto;
  /* Optional: centers the image if its container is wider than the image */
  display: block;
  margin: 0 auto;
	
}
/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

	body
	{
		background: #141414;
	}

	body,input,textarea,select
	{
		font-family: 'Arimo', sans-serif;
		font-size: 16pt;
		line-height: 1.75em;
		color: #4c4c4c;
	}

	h1,h2,h3,h4,h5,h6
	{
		text-transform: uppercase;
		font-weight: bold;
	}
	
		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
		{
			color: inherit;
			text-decoration: none;
		}
		
	/* Change this to whatever font weight/color pairing is most suitable */
	strong, b
	{
		font-weight: bold;
		color: #000000;
	}
	
	em, i
	{
		font-style: italic;
	}

	/* Don't forget to set this to something that matches the design */
	a
	{
		text-decoration: underline;
		color: #272727;
	}

	a:hover
	{
		text-decoration: none;
	}
	
	sub
	{
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}
	
	sup
	{
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}
	
	hr
	{
		border: 0;
		border-top: solid 1px #ddd;
	}
	
	blockquote
	{
		border-left: solid 0.5em #ddd;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}
	
	p, ul, ol, dl, table
	{
		margin-bottom: 1em;
	}

	header
	{
		margin-bottom: 2em;
	}
	
		header h2
		{
		    line-height: 1.2;
		}
	
		header .byline
		{
			display: block;
			margin: 0.5em 0 0 0;
			padding: 0 0 0.5em 0;
		}
		
	footer
	{
		margin-top: 1em;
	}

	br.clear
	{
		clear: both;
	}

	/* Sections/Articles */
	
		section,
		article
		{
			margin-bottom: 3em;
		}
		
		section > :last-child,
		article > :last-child
		{
			margin-bottom: 0;
		}

		section:last-child,
		article:last-child
		{
			margin-bottom: 0;
		}

		.row > section,
		.row > article
		{
			margin-bottom: 0;
		}

	/* Images */

		.image
		{
			display: inline-block;
		}
		
			.image img
			{
				display: block;
				width: 100%;
			}

			.image.featured
			{
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}
			
			.image.full
			{
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}
			
			.image.left
			{
				float: left;
				margin: 0 2em 2em 0;
			}
			
			.image.centered
			{
				display: block;
				margin: 0 0 2em 0;
			}

				.image.centered img
				{
					margin: 0 auto;
					width: auto;
				}

	/* Lists */

		ul.default
		{
			margin: 0;
			padding: 0;
			list-style: none;
		}
		
			ul.default li
			{
				padding: 0.60em 0em;
				border-top: 1px solid;
				border-color: rgba(255,255,255,.1);
			}
			
			ul.default li:first-child
			{
				padding-top: 0;
				border-top: none;
			}
			
			ul.default a
			{
				text-decoration: none;
				color: rgba(255,255,255,.5);
			}
			
			ul.default a:hover
			{
				text-decoration: underline;
			}
			
		ul.style {
		}
		
		ul.style li {
			margin: 0;
			padding: 2em 0em 1.5em 0em;
			border-top: 1px solid #ECECEC;
		}
		
		ul.style li:first-child
		{
			padding-top: 0;
			border-top: none;
		}
		
		ul.style img {
			float: left;
			margin-right: 20px;
		}
		
		ul.style p {
		}
		
		ul.style .posted {
			padding: 0em 0em 1em 0em;
			letter-spacing: 1px;
			text-transform: uppercase;
			font-size: 8pt;
			color: #A2A2A2;
		}
		
		ul.style .first {
			padding-top: 0px;
			border-top: none;
		}
							

	/* Buttons */
		
		.button
		{
			position: relative;
			display: inline-block;
			margin-top: 2em;
			padding: 0.90em 1.5em;
			background: #e95d3c;
			border-radius: 40px;
			text-decoration: none;
			text-transform: uppercase;
			font-size: 1.1em;
			color: #FFF;
			-moz-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			-webkit-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			-o-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			-ms-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			cursor: pointer;
		}

			.button:hover
			{
				background: #de3d27;
				color: #FFF !important;
			}
			
/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

	#header
    {
	position: relative;
	background-color: #2a2f27;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	}


  /* Move IRIDIUM text UP */
    #logo {
	margin-top: -.5em;
    }

/* Move nav DOWN even if another rule fights it */


    /* Move nav buttons DOWN */
    #nav {
	margin-top: -14.5em;
    }

		#nav ul
		{
			margin: 0;
		}
	
/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

	#banner
	{
		position: relative;
		background: #333;
		color: #fff;
	}

/*********************************************************************************/
/* Main                                                                          */
/*********************************************************************************/

	#main
	{
		position: relative;
		background: #fff;
	}

/*********************************************************************************/
/* Featured                                                                      */
/*********************************************************************************/
	
	#featured
	{
		position: relative;
		background: #f2f2f2;
	}
	
	#featured h2
	{
		display: block;
		margin-bottom: 2em;
		font-size: 1.4em;
	}
	
/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/
	
	#footer
	{
		position: relative;
		background: #1d1d1d;
	}
	
	#footer h2
	{
		display: block;
		color: #FFF;
	}
	
/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/
	
	#copyright
	{
		position: relative;
		padding: 3em 0em;
		letter-spacing: 1px;
		text-align: center;
		color: rgba(255,255,255,.2);
	}
	
	#copyright .container
	{
	}
	
	#copyright a
	{
		text-decoration: none;
		color: rgba(255,255,255,.3);
	}	

/* =========================================================

  BBBE 2026 refresh: header + hero (safe overrides)

  Paste at BOTTOM of css/style.css

  ========================================================= */

 

/* --- Hard reset of old template hacks that fight the new header --- */

#nav { margin-top: 0 !important; }     /* old CSS pulled nav upward */

#logo { margin-top: 0 !important; }    /* old CSS nudged logo */

 

#header {

 /* Keep your seasonal/time-of-day background-image rotation */

 background-repeat: no-repeat;

 background-size: cover;

 background-position: center;

 

 /* New layout expects predictable height */

 min-height: 520px;

 

 /* Prevent legacy padding rules from making the header huge */

 padding: 0 !important;

}

 

/* --- Top bar: logo + nav in a readable, non-overlapping row --- */

.site-header {

 width: 100%;

 margin: 1.25rem auto 0 auto;

 padding: 0.85rem 1rem;

 border-radius: 18px;

 

 /* Readable over bright winter-day AND dark night banners */

 background: rgba(255, 255, 255, 0.78);

 backdrop-filter: blur(6px);

 

 display: flex;

 align-items: center;

 gap: 1rem;

}

 

/* Brand block */

.brand {

 flex: 0 0 auto;

}

 

.brand-link {

 display: flex;

 align-items: center;

 gap: 0.75rem;

 text-decoration: none;

 border: 0;

}

 

.brand-mark {

 width: 46px;

 height: 46px;

 border-radius: 999px;

 display: block;

}

 

.brand-name {

 font-weight: 700;

 line-height: 1.1;

 text-transform: none;

 letter-spacing: 0;

 white-space: nowrap;

}

 

/* Nav gets the flexible middle space */

.primary-nav {

 flex: 1 1 auto;

 min-width: 0; /* critical for flex shrink behavior */

}

 

.primary-nav ul {

 display: flex;

 align-items: center;

 gap: 1.15rem;

 margin: 0;

 padding: 0;

 flex-wrap: nowrap;

}

 

.primary-nav li { list-style: none; }

 

.primary-nav a {

 text-decoration: none;

 border: 0;

 white-space: nowrap;

}

 

/* Optional: slightly reduce nav link size so it fits comfortably */

.primary-nav a { font-size: 0.95em; }

 

/* --- Header CTA slot (Topic pages only) --- */

/* IMPORTANT: This CTA is in-flow (no absolute positioning),

  so it can never cover nav items. */

.header-cta {

 flex: 0 0 auto;

}

 

/* Keep header CTA compact so it doesn’t dominate */

.header-cta .button.header-button {

 margin: 0;

 padding: 0.70em 1.10em;

 font-size: 0.95em;

}

 

/* Safety rule: hide header CTA before it can collide at narrower widths */

@media (max-width: 1100px) {

 .header-cta { display: none; }

}

 

/* --- Hero overlay (Home page) --- */

.hero {

 position: relative;

 margin-top: 4.25rem;

 max-width: 760px;

 

 /* A little padding makes text feel intentional, not “floating” */

 padding: 1.50rem 1.75rem 1.75rem 1.75rem;

 border-radius: 18px;

}

 

/* Adaptive scrim behind hero text: fixes winter-day readability */

.hero::before {

 content: "";

 position: absolute;

 inset: 0;

 border-radius: 18px;

 background: linear-gradient(

   to bottom,

   rgba(0, 0, 0, 0.35),

   rgba(0, 0, 0, 0.15)

 );

 z-index: 0;

}

 

/* Text above the scrim */

.hero h1,

.hero p,

.hero .hero-button {

 position: relative;

 z-index: 1;

}

 

.hero h1 {

 margin: 0 0 0.35rem 0;

 color: #fff;

 text-shadow:

   0 2px 12px rgba(0,0,0,0.45),

   0 0 2px rgba(0,0,0,0.35);

}

 

.hero p {

 margin: 0 0 1.15rem 0;

 color: rgba(255,255,255,0.95);

 text-shadow: 0 2px 10px rgba(0,0,0,0.40);

 font-size: 1.15em;

 line-height: 1.55;

}

 

/* You like the orange CTA—keep it, add a small shadow for winter-day */

.hero .hero-button {

 box-shadow: 0 4px 18px rgba(0,0,0,0.35);

 padding: 0.85em 1.50em;

}


/* =========================================================
   Header readability fix (desktop & tablet)
   ========================================================= */

/* Top header bar text */
.site-header {
  background: rgba(255, 255, 255, 0.85); /* slightly less transparent */
}

/* Title text */
.site-header .brand-name,
.site-header .site-title,
.site-header h1 {
  color: #1f2a1f; /* deep neutral green-black */
}

/* Nav links */
.site-header .primary-nav a {
  color: #2b2b2b;
}

/* Active / hover state */
.site-header .primary-nav a:hover,
.site-header .primary-nav .active a {
  color: #0f3d2e; /* dark green accent */
}

/* Optional: subtle divider so header feels intentional */
.site-header {
  box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}
 
/* =========================================================
   Header baseline alignment: title vs. nav
   ========================================================= */

/* Don’t move the nav; move the title text slightly up */
.site-header .brand-name {
  display: inline-block;
  transform: translateY(-2px); /* try -2px; if too much, use -1px */
}

/* Optional: make the title’s line box tighter, so it sits like the nav text */
.site-header .brand-name {
  line-height: 1 !important;
}


/* =========================================================
   Body text readability: constrain line length
   ========================================================= */

/* =========================================================
   Reading measure: constrain prose without shrinking the whole site
   ========================================================= */

/* Keep the site layout wide, but limit long-form text width */
#main #content section {
  max-width: 1600px;     /* Was 980 desktop-friendly container for content area */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Constrain paragraphs to a readable measure */
#main #content section p {
  max-width: 1400px;     /*  was 760 comfortable line length */
  margin-left: auto;
  margin-right: auto;
}

/* iPad landscape (and similar tablet widths): slightly narrower reading column */
@media (min-width: 768px) and (max-width: 1024px) {
  #main #content section p {
    max-width: 700px;
  }
}


/* =========================================================
   Banner → content transition
   ========================================================= */

.section-intro {
  max-width: 760px;
  margin: 1.75rem auto 0.75rem auto; /* pulls content closer to banner */
  padding: 0 1.25rem;
  font-size: 0.95em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2a1f;
}

/* =========================================================
   Post-banner content container
   ========================================================= */

/* Wrap all content BELOW the banner */
.post-banner-content {
  /* width: 100vw; */
  /* max-width: 1100px;  */  /* prevents over-wide desktop lines */
     margin: 0 20 0 20; 
  /* padding: 0 1rem 1rem 1.25rem; */
}

/* Phones: use full width for readability */
@media (max-width: 736px) {
  .post-banner-content {
    width: 100%;
    margin-top: 1.25rem;
  }
}

/* =========================================================
   Board page: 3-up cards with circular photos
   ========================================================= */

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.board-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.35rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.board-photo {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.85rem auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.board-name {
  text-align: center;
  font-weight: 700;
  font-size: 1.15em;
  margin-bottom: 0.15rem;
  color: #1f2a1f;
}

.board-role {
  text-align: center;
  font-weight: 700;
  font-size: 0.95em;
  margin-bottom: 0.85rem;
  color: #0f3d2e;
}

.board-bio {
  font-size: 1.05em;
  line-height: 1.55;
  color: #2b2b2b;
}

/* =========================================================
   Topic pages: fold-down list of all 15 topics
   ========================================================= */

.topics-fold {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.topics-fold summary {
  cursor: pointer;
  font-weight: 700;
  color: #1f2a1f;
  list-style: none;
  outline: none;
}

.topics-fold summary::-webkit-details-marker {
  display: none;
}

.topics-fold summary::after {
  content: "▾";
  float: right;
  opacity: 0.8;
}

.topics-fold[open] summary::after {
  content: "▴";
}

.topics-fold-inner {
  margin-top: 0.85rem;
}

/* =========================================================
   Topic fold-down menu: force readable black text
   ========================================================= */

.topics-fold a {
  color: #000000 !important;
  text-decoration: none;
}

.topics-fold a:hover {
  color: #0f3d2e !important;   /* optional: your dark green accent */
  text-decoration: underline;
}

/* =========================================================
   Fold-down topics menu: override Iridium's ul.default link color
   ========================================================= */

.topics-fold ul.default a {
  color: #000 !important;
}

.topics-fold ul.default a:hover {
  color: #000 !important;
  text-decoration: underline;
}

/* Optional: the divider line in ul.default is also white—make it subtle gray */
.topics-fold ul.default li {
  border-color: rgba(0, 0, 0, 0.15);
}

/* =========================================================
   Board page: enforce circular headshots across all devices
   ========================================================= */

.board-photo {
  width: 110px !important;
  height: 110px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block;
}



/* Footer contact line (keep consistent and readable) */
#copyright .footer-contact {
  margin: 0;
  padding: 18px 0 14px 0;
  text-align: center;
  color: #fff;
}

#copyright .footer-contact a {
  color: #fff;
  text-decoration: underline;
}

/* Footer banner strip: 150px tall, shows bottom of the same banner image */
.footer-banner {
  position: relative;
  height: 150px;

  /* background image is set via JS (same as header) */
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* Adjustable gradient strengths */
.footer-banner {
  --g35: 0.35;  /* opacity at 35% */
  --g75: 0.75;  /* opacity at 75% */
  --g100: 1.00; /* opacity at 100% (top) */
}

/* Linear overlay gradient: 0% at bottom, 100% at top */
.footer-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.00) 0%,
    rgba(0, 0, 0, var(--g35)) 35%,
    rgba(0, 0, 0, var(--g75)) 75%,
    rgba(0, 0, 0, var(--g100)) 100%
  );
}

/* Optional: a subtle separator line between email row and strip */
#copyright .container {
  position: relative;
}
#copyright .container::after {
  content: "";
  display: block;
  height: 1px;
  opacity: 0.25;
  background: rgba(255,255,255,0.7);
}
/* --- Home page: keep header calm (no top-right CTA) --- */

/* Nothing needed here: just omit .header-cta from index.html */

 

/* --- Below-the-fold topics: allow a 3-column layout later (optional) --- */

/* If you decide to build the logo-between-columns layout with CSS Grid,

  we can add that next; this block does not change current markup. */