@charset "UTF-8";
/* CSS Document */

/* Basic Reset */
body {
  background-color: #cdd9da;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Links */
a {
  color: #9C3A38;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #000;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Lucida Sans', Arial, sans-serif;
  color: #91263C;
  margin-top: 1em;
}

/* Custom Classes */
.section-header {
  font-size: 18px;
  font-weight: bold;
  color: #91263C;
}
.sidebar-link {
  color: #FFFFFF;
  font-size: 12px;
  text-align: center;
}

/* Highlight Box (Legacy) */
.highlight-box {
  background-color: #FCECDF;
  padding: 10px;
  margin: 15px 0;
}

/* Buttons */
.button-link {
  display: inline-block;
  background-color: #91263C;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
}
.button-link:hover {
  background-color: #B5816F;
}

/* === STANDARD LAYOUT WIDTH (RESTORED) === */

/* Main Content */
main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
}

/* Logo Block */
.logo-container {
  width: 800px;
  margin: 0 auto;
  text-align: left;
  background-color: #CDD9DA;
  padding-top: 10px;
}

/* Container for White Content Box */
.container {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: left;
}

/* Red Banner */
.red-banner {
  background-color: #B5816F;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  margin: 20px auto 0 auto;
  max-width: 800px;
}

/

/* Fix bottom spacing between white content box and footer */
.container:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* Function list with perfect emoji alignment */
.insights-list {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  display: grid;
  row-gap: 10px;
}

.insights-list li {
  display: grid;
  grid-template-columns: 28px 1fr; /* left column for emoji, right for text */
  column-gap: 10px;
  align-items: start;
}

.insights-emoji {
  width: 28px;            /* locks the column width */
  text-align: center;     /* centers the emoji */
  line-height: 1.1;       /* keeps it snug */
  font-size: 20px;        /* consistent size */
}

.readmore {
  color: #91263C;
  font-weight: bold;
  text-decoration: none;
}
.readmore:hover { color: #45687B; text-decoration: underline; }

/* Optional: subtle divider between function sections */
.fn-section { padding: 10px 0 18px; border-bottom: 1px solid #eee; }
.fn-section:last-child { border-bottom: 0; }

