/* Andrea Cannavina — Connect / Learn / Engage / About Section Pages */

/* -- Shared Layout -- */
.ac-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 10px 0 20px;
}

/* -- Page Hero -- */
.ac-page-hero {
  text-align: center;
  padding: 30px 20px 36px;
}
.ac-page-hero h1 {
  font-size: 2.4em;
  color: #164473;
  margin: 0 0 6px;
  font-weight: 400;
}
.ac-page-hero h1 span {
  color: #BECE43;
}
.ac-page-hero .ac-page-bold {
  font-size: 1.15em;
  font-weight: 700;
  color: #164473;
  margin-bottom: 4px;
  padding: 0;
}
.ac-page-hero p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 0 10px;
}
.ac-page-hero .ac-page-quiet {
  font-style: italic;
  color: #888;
}

/* -- Card Grid (2-col) -- */
.ac-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 40px;
}
.ac-card {
  background: #f4f6f9;
  border-radius: 14px;
  padding: 28px 26px;
  border-left: 5px solid #BECE43;
  transition: box-shadow 0.2s ease;
}
.ac-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.ac-card .ac-card-label {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #BECE43;
  font-weight: 700;
  margin-bottom: 6px;
}
.ac-card h3 {
  font-size: 1.25em;
  color: #164473;
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 1.2;
}
.ac-card p {
  font-size: 0.92em;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  padding: 0;
  margin: 0 0 10px;
}
#content .ac-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
#content .ac-card ul li {
  font-weight: 300;
  font-size: 0.92em;
  padding: 2px 0 2px 20px;
  position: relative;
  color: #555;
}
#content .ac-card ul li:before {
  content: '\f105' !important;
  font-family: FontAwesome;
  position: absolute;
  left: 4px;
  width: auto;
  display: block;
  color: #BECE43;
  font-weight: 700;
  margin-left: 0;
}
.ac-card .ac-card-tagline {
  font-weight: 700;
  font-size: 0.92em;
  color: #164473;
  margin-top: 6px;
}
.ac-card .ac-card-cta {
  display: inline-block;
  margin-top: 10px;
  color: #164473 !important;
  font-weight: 700;
  font-size: 0.95em;
  text-decoration: none;
  transition: color 0.2s;
}
.ac-card .ac-card-cta:link,
.ac-card .ac-card-cta:visited {
  color: #164473 !important;
}
.ac-card .ac-card-cta:hover {
  color: #BECE43 !important;
}

/* -- Full-width feature card -- */
.ac-card-full {
  grid-column: 1 / -1;
}

/* -- Dark Band -- */
.ac-sec-dark {
  background: linear-gradient(135deg, #164473 0%, #0c2137 100%);
  color: #fff;
  padding: 50px 30px;
  margin: 0 -20px 40px;
  text-align: center;
}
.ac-sec-dark .ac-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.ac-sec-dark h2 {
  font-size: 1.8em;
  color: #fff;
  font-weight: 400;
  margin: 0 0 16px;
}
.ac-sec-dark p {
  font-weight: 300;
  font-size: 1em;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  padding: 0;
  margin: 0 0 14px;
}

/* -- Buttons (shared w/ homepage) -- */
.ac-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ac-btn-primary,
.ac-btn-primary:link,
.ac-btn-primary:visited {
  display: inline-block;
  background: #BECE43;
  color: #164473 !important;
  font-size: 1.1em;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.ac-btn-primary:hover {
  background: #d4e255;
  color: #164473 !important;
  text-decoration: none;
}
.ac-btn-outline,
.ac-btn-outline:link,
.ac-btn-outline:visited {
  display: inline-block;
  background: transparent;
  color: #BECE43 !important;
  font-size: 1.1em;
  font-weight: 700;
  padding: 12px 28px;
  border: 2px solid #BECE43;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.ac-btn-outline:hover {
  background: rgba(190,206,67,0.15);
  color: #BECE43 !important;
  text-decoration: none;
}

/* -- Pathway Steps -- */
.ac-pathway {
  max-width: 680px;
  margin: 30px auto 0;
  text-align: left;
}
.ac-pathway-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ac-pathway-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #BECE43;
  color: #164473;
  font-size: 1.3em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-pathway-content h3 {
  font-size: 1.2em;
  color: #fff;
  margin: 0 0 6px;
  font-weight: 400;
}
.ac-pathway-content p {
  font-size: 0.95em;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.ac-pathway-connector {
  width: 2px;
  height: 28px;
  background: rgba(190,206,67,0.4);
  margin: 0 0 0 21px;
}

/* -- Section w/ heading -- */
.ac-sec {
  max-width: 780px;
  margin: 0 auto;
  padding: 36px 20px;
}
.ac-sec h2 {
  font-size: 1.7em;
  color: #164473;
  font-weight: 400;
  text-align: center;
  margin: 0 0 8px;
}
.ac-sec h2 span {
  color: #BECE43;
}
.ac-sec p {
  font-weight: 300;
  font-size: 1em;
  line-height: 1.65;
  color: #555;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 12px;
}
.ac-sec p.ac-left {
  text-align: left;
  max-width: 100%;
}

/* -- About: Bio block -- */
.ac-bio {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 0 20px;
  margin-bottom: 40px;
}
.ac-bio-photo {
  flex-shrink: 0;
  width: 220px;
  height: 280px;
  border-radius: 14px;
  background: linear-gradient(135deg, #164473 0%, #0c2137 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85em;
  text-align: center;
  padding: 20px;
}
.ac-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.ac-bio-text {
  flex: 1;
}
.ac-bio-text h2 {
  font-size: 1.6em;
  color: #164473;
  font-weight: 400;
  margin: 0 0 14px;
  text-align: left;
}
.ac-bio-text p {
  font-weight: 300;
  font-size: 0.95em;
  line-height: 1.7;
  color: #555;
  margin: 0 0 12px;
  padding: 0;
  text-align: left;
}
.ac-bio-text .ac-bio-title {
  font-weight: 700;
  color: #164473;
  font-size: 1em;
  margin-bottom: 14px;
}

/* -- About: Credentials list -- */
.ac-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 20px;
  margin-bottom: 40px;
}
.ac-credential {
  background: #f4f6f9;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.88em;
  font-weight: 400;
  color: #164473;
  border-left: 4px solid #BECE43;
}

/* -- Connect: Social card icons -- */
.ac-card .ac-card-icon {
  font-size: 2em;
  color: #164473;
  margin-bottom: 12px;
}

/* -- Engage: Tier summary -- */
.ac-tier-note {
  text-align: center;
  font-style: italic;
  color: #888;
  font-weight: 300;
  font-size: 0.92em;
  margin: -20px 0 40px;
  padding: 0 20px;
}

/* -- Responsive -- */
@media (max-width: 650px) {
  .ac-page-hero h1 { font-size: 1.8em; }
  .ac-cards { grid-template-columns: 1fr; }
  .ac-sec-dark { margin: 0 -15px; padding: 36px 20px; }
  .ac-bio { flex-direction: column; align-items: center; text-align: center; }
  .ac-bio-photo { width: 180px; height: 230px; }
  .ac-bio-text h2 { text-align: center; }
  .ac-bio-text p { text-align: center; }
  .ac-credentials { justify-content: center; }
}
