/*------------------------------------*\
  #ROOT VARIABLES
\*------------------------------------*/
:root {
  /* Colors */
  --color-primary: #ed5d40;
  --color-primary-dark: #e54d2e;
  --color-primary-light: rgba(237, 93, 64, 0.05);
  --color-dark: #162c50;
  --color-dark-darker: #0f1f3a;
  --color-white: #ffffff;
  --color-light-bg: #f8f9fa;

  /* Text Colors */
  --text-light-strong: #ffffff;
  --text-light-weak: rgba(255, 255, 255, 0.8);
  --text-dark-strong: hsl(10deg 5% 20% / 90%);
  --text-dark-weak: hsl(10deg 5% 20% / 80%);
  --text-primary: var(--color-primary);
  --text-primary-hover: var(--color-primary);
  --text-primary-bg-hover: var(--color-primary-light);

  /* Link Colors */
  --link-color: var(--color-primary);
  --link-hover-color: var(--color-primary-dark);
  --link-hover-bg: var(--color-primary-light);

  /* Value Card Colors */
  --color-transparency: #298a74;
  --color-transparency-light: rgba(41, 138, 116, 0.1);
  --color-community: #db7543;
  --color-community-light: rgba(219, 117, 67, 0.1);
  --color-data: #db9e43;
  --color-data-light: rgba(219, 158, 67, 0.1);

  /* Typography */
  --font-family-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-family-heading: "Faustina", serif;
  --font-weight-strong: 600;
  --font-weight-weak: 400;
  --letter-spacing-heading: -0.02em;
  --letter-spacing-body: 0.01em;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-base: 1.5;
  --line-height-loose: 1.6;
  --line-height-extra-loose: 1.8;

  /* Font Sizes */
  --font-size-4xl: 3.5rem;
  --font-size-3xl: 2.5rem;
  --font-size-2xl: 2rem;
  --font-size-xl: 1.625rem;
  --font-size-lg: 1.25rem;
  --font-size-md: 1.125rem;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-32: 8rem;
  --space-64: 16rem;

  /* Borders */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-base: 0.5rem;
  --radius-lg: 0.75rem;

  /* Accessibility */
  --focus-ring-color: #facb29; /* Yellow */
  --focus-ring-width: 0.1875rem; /* 3px */
  --focus-ring-offset: 0.125rem; /* 2px */
}

/*------------------------------------*\
  #RESET & BASE STYLES
\*------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  line-height: var(--line-height-base);
  color: var(--text-dark-weak);
  letter-spacing: var(--letter-spacing-body);
  font-weight: var(--font-weight-weak);
  font-size: var(--font-size-base);
}

/*------------------------------------*\
  #ACCESSIBILITY
\*------------------------------------*/
/* Global Focus Styles */
:focus {
  outline: none;
}

:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
  /* We might need to adjust border-radius per component if the outline looks jagged */
}

/* Remove focus styles for mouse/touch interactions */
:focus:not(:focus-visible) {
  outline: none;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: auto;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
  background: var(--color-primary);
  color: var(--text-light-strong);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: var(--font-weight-strong);
  transition: none; /* No transition needed for visibility */
}

.skip-link:focus {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 1100;
  outline: none;
  color: var(--text-light-strong) !important;
}

.skip-link:focus-visible {
  /* Enhance focus style using focus variables */
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
  /* Ensure the core visibility styles from :focus are also applied */
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 1100;
}

/*------------------------------------*\
  #LAYOUT
\*------------------------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/*------------------------------------*\
  #BASE TYPOGRAPHY
\*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-strong);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
  color: var(--text-dark-strong);
}

h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-6);
}

h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
}

p {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  color: var(--text-dark-weak);
  font-weight: var(--font-weight-weak);
  letter-spacing: var(--letter-spacing-body);
  margin-bottom: var(--space-4);
}

/*------------------------------------*\
  #BASE ELEMENTS
\*------------------------------------*/
/* Base Anchor Styles */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:visited {
  color: var(--link-color);
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

/* Ensure focus styles apply to anchors */
a:focus {
  outline: none; /* Handled globally, but reinforce */
  color: inherit !important; /* Prevent external styles (like DNN default.css) from changing color */
}

a:focus-visible {
  /* Inherit global focus style - ONLY apply outline, not position */
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
  /* Optional: match focus ring shape to potential element shape */
  border-radius: var(--radius-sm);
}

/*------------------------------------*\
  #COMMON ELEMENTS / UTILITIES
\*------------------------------------*/
.eyebrow {
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  font-weight: var(--font-weight-strong);
  letter-spacing: 1px;
  line-height: var(--line-height-tight);
  display: block;
  font-family: var(--font-family-primary);
}

/* External Link Icons */
.external-link {
  display: inline-flex !important;
  align-items: center;
  gap: var(--space-2) !important;
}

.external-link i {
  font-size: var(--font-size-sm);
  transition: transform 0.3s ease;
}

.external-link:hover .fa-external-link-alt {
  transform: translate(2px, -2px);
}

/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/

/* Component: Navigation */
.navbar {
  background: var(--color-white);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  padding: 0;
  width: 100%;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.5rem;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 100%;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.nav-link {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: var(--font-weight-weak);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-body);
  transition: all 0.3s ease;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.nav-link:visited {
  color: var(--color-dark);
}

.nav-link:hover {
  color: var(--text-primary-hover);
  background: var(--text-primary-bg-hover);
  text-decoration: none; /* Override global underline */
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Component: Buttons */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: var(--font-weight-strong);
  transition: all 0.3s ease;
  border: 0.125rem solid transparent;
  font-size: var(--font-size-base);
}

/* Primary Button */
.btn-primary {
  background: var(--color-primary);
  color: var(--text-light-strong);
}

.btn-primary:visited {
  color: var(--text-light-strong);
}

.btn-primary:focus {
  color: var(--text-light-strong) !important;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--text-light-strong);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.5rem rgba(237, 93, 64, 0.3);
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.25rem rgba(237, 93, 64, 0.2);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  border: 0.125rem solid var(--text-light-strong);
  color: var(--text-light-strong);
}

.btn-secondary:visited {
  color: var(--text-light-strong);
}

.btn-secondary:focus {
  color: var(--text-light-strong) !important;
}

.btn-secondary:hover {
  background: var(--text-light-strong);
  color: var(--color-dark) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-secondary:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.9);
}

/* Outline Primary Button */
.btn-outline-primary {
  background: transparent;
  border: 0.125rem solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-primary:visited {
  color: var(--color-primary);
}

.btn-outline-primary:focus {
  color: var(--color-primary) !important;
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--text-light-strong) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline-primary:active {
  transform: translateY(0);
  background: var(--color-primary-dark);
  color: var(--text-light-strong) !important;
}

/* Component: Hero */
.hero-banner {
  background: linear-gradient(rgba(22, 44, 80, 0.7), rgba(22, 44, 80, 0.7)),
    url("/Portals/_default/Skins/gobcostofliving/Assets/harbour.jpg");
  background-size: cover;
  background-position: center 25%;
  height: 30rem;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light-strong);
  margin-top: 4.5rem;
}

.hero-title {
  color: var(--text-light-strong);
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-strong);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.hero-heading {
  color: var(--text-light-strong);
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-strong);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.hero-subtitle {
  color: var(--text-light-weak);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
  opacity: 0.9;
  font-weight: var(--font-weight-weak);
  line-height: var(--line-height-loose);
  letter-spacing: var(--letter-spacing-body);
  font-family: var(--font-family-primary);
}

/* Component: Purpose Section */
.purpose {
  padding: var(--space-32) 0;
  background: var(--color-light-bg);
}

.purpose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.purpose-image {
  height: 100%;
}

.purpose-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.purpose-text {
  padding-right: var(--space-8);
}

.purpose p {
  max-width: 800px;
  margin-bottom: var(--space-8);
  font-size: var(--font-size-md);
  color: var(--text-dark-weak);
}

/* Component: CTA Banner */
.cta-banner {
  background: var(--color-dark);
  color: var(--text-light-strong);
  position: relative;
  overflow: visible;
  padding: 0;
  margin: 0;
  width: 100%;
}

/*------------------------------------*\
  #SUMMIT AGENDA STYLES
\*------------------------------------*/

.summit-agenda {
  padding: var(--space-16) 0 var(--space-20);
  background-color: var(--color-white);
}

.agenda-wrapper {
  margin-top: var(--space-8);
  border-radius: var(--radius-base);
  overflow: hidden;
  background-color: var(--color-white);
}

.agenda-heading {
  background-color: var(--color-dark);
  padding: var(--space-5);
  text-align: center;
  margin-bottom: var(--space-12);
  border-radius: 0.5rem;
}

.agenda-heading h3 {
  color: var(--text-light-strong);
  margin: 0;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
}

.agenda-title h3 {
  font-size: var(--font-size-xl); /* Increased from default */
  line-height: 1.2;
}

.agenda-item {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb !important;
  transition: background-color 0.3s ease;
}

.agenda-item:hover {
  background-color: var(--color-primary-light);
}

.agenda-item:last-child {
  border-bottom-left-radius: var(--radius-base);
  border-bottom-right-radius: var(--radius-base);
}

.agenda-time {
  flex: 0 0 180px;
  padding: var(--space-4);
  background-color: var(--color-light-bg);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: var(--font-weight-strong);
  display: flex;
  align-items: center;
}

.agenda-description {
  flex: 1;
  padding: var(--space-4);
}

.agenda-description p {
  margin-bottom: 0;
}

.agenda-description p + p {
  margin-top: var(--space-2);
}

.agenda-session-title {
  color: var(--color-primary);
  font-weight: var(--font-weight-strong);
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
}

.agenda-cta {
  text-align: center;
  margin-top: var(--space-8);
}

/* Responsive styles for agenda */
@media (max-width: 767px) {
  .agenda-item {
    flex-direction: column;
  }

  .agenda-time {
    flex: 0 0 auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: var(--space-3) var(--space-4);
  }

  .agenda-description {
    padding: var(--space-4);
    padding-bottom: var(--space-16);
  }

  .agenda-description p {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 480px) {
  .summit-agenda {
    padding: var(--space-8) 0 var(--space-12);
  }

  .agenda-wrapper {
    margin-top: var(--space-4);
    border-radius: var(--radius-sm);
  }

  .agenda-heading {
    padding: var(--space-3);
  }

  .agenda-heading h3 {
    font-size: var(--font-size-base);
  }

  .agenda-time {
    padding: var(--space-2) var(--space-3);
  }

  .agenda-description {
    padding: var(--space-3);
    padding-bottom: var(--space-16);
  }

  .agenda-session-title {
    font-size: var(--font-size-xs);
  }
}

.cta-banner .container {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.cta-background {
  background-image: url("/Portals/_default/Skins/gobcostofliving/Assets/vector-topo.svg");
  background-size: cover;
  background-position: center;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: visible;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-inline: var(--space-5);
}

.cta-text {
  text-align: left;
  max-width: 600px;
}

.cta-buttons {
  margin: 0;
  display: flex;
  place-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.cta-image {
  position: relative;
  width: 100%;
  height: 18.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner h2 {
  margin-bottom: var(--space-6);
  color: var(--text-light-strong);
  font-size: var(--font-size-3xl);
}

.cta-banner p {
  max-width: 600px;
  margin-bottom: var(--space-8);
  font-size: var(--font-size-md);
  color: var(--text-light-weak);
}

/* Component: Page Header */
.page-header {
  background: var(--color-dark);
  color: var(--text-light-strong);
  padding: var(--space-16) 0;
  text-align: center;
  margin-top: 4.5rem;
}

.page-header .eyebrow {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.header-subtitle {
  font-size: var(--font-size-lg);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: var(--line-height-loose);
  letter-spacing: var(--letter-spacing-body);
  font-weight: var(--font-weight-weak);
  font-family: var(--font-family-primary);
}

/* Component: About Content */
.about-content {
  padding: var(--space-20) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-20);
}

.about-text p {
  margin-bottom: var(--space-6);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

/* Component: Values Section */
.values-section {
  text-align: center;
  margin-bottom: var(--space-20);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.value-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.value-card:nth-child(1) {
  background: var(--color-transparency-light);
}

.value-card:nth-child(2) {
  background: var(--color-community-light);
}

.value-card:nth-child(3) {
  background: var(--color-data-light);
}

.value-card:hover {
  transform: translateY(-0.3125rem);
}

.value-card h3 {
  margin-bottom: var(--space-4);
}

.value-card:nth-child(1) h3 {
  color: var(--color-transparency);
}

.value-card:nth-child(2) h3 {
  color: var(--color-community);
}

.value-card:nth-child(3) h3 {
  color: var(--color-data);
}

.value-card p {
  color: var(--text-dark-weak);
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  letter-spacing: var(--letter-spacing-body);
  font-weight: var(--font-weight-weak);
  font-family: var(--font-family-primary);
}

/* Component: CTA Section */
.cta-section {
  text-align: center;
  background: var(--color-light-bg);
  padding: var(--space-16) var(--space-8);
  border-radius: var(--radius-lg);
}

.cta-section p {
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Component: Footer */
.footer {
  background: var(--color-dark-darker);
  color: var(--text-light-strong);
  padding: var(--space-12) 0 var(--space-4);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.footer-logo a {
  display: inline-block;
  height: fit-content;
}

.footer-logo img {
  height: 55px;
}

.footer-links a {
  color: var(--text-light-weak);
  text-decoration: none;
  margin-left: var(--space-8);
  transition: color 0.3s ease;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-body);
  font-weight: var(--font-weight-weak);
  font-family: var(--font-family-primary);
}

.footer-links a:visited {
  color: var(--text-light-weak);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--text-light-weak);
  font-size: var(--font-size-xs);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-body);
  font-weight: var(--font-weight-weak);
  font-family: var(--font-family-primary);
}

.footer-bottom a:visited {
  color: var(--text-light-weak);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* Footer Social Link Styles */
.footer-social {
  margin-block: 1rem;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: var(--space-6);
}

.footer-social h4 {
  font-size: var(--font-size-base);
  color: var(--text-light-weak);
  font-weight: var(--font-weight-weak);
  margin-bottom: var(--space-3);
  font-family: var(--font-family-primary);
  letter-spacing: normal;
}

.footer-social a {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-lg);
}

.footer-social a:hover,
.footer-social a:focus {
  color: var(--color-primary);
  text-decoration: none;
}

/*------------------------------------*\
  #RESPONSIVE DESIGN
\*------------------------------------*/
@media (min-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
  }

  .hero-banner,
  .page-header {
    margin-top: 5rem;
    padding-bottom: 3rem;
  }

  .purpose-image img {
    position: sticky;
    top: 140px;
  }
}

@media (max-width: 767px) {
  .hero-banner h1,
  .page-header h1 {
    font-size: var(--font-size-3xl);
    margin: 0 auto;
  }

  .logo img {
    width: 100%;
    height: auto;
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
  }

  .purpose h2,
  .cta-banner h2 {
    font-size: var(--font-size-xl);
  }

  .page-header,
  .hero-banner {
    margin-top: 0 !important;
  }

  .purpose-content,
  .cta-content,
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .purpose-text {
    padding-right: 0;
  }

  .cta-image {
    height: 18.75rem;
    order: -1;
  }

  .cta-text {
    text-align: center;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-top: var(--space-4);
  }

  .footer-links a {
    display: block;
    margin: var(--space-2) 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    margin-bottom: var(--space-4);
  }

  .nav-content {
    flex-direction: column;
    height: auto;
    padding: var(--space-4) 0;
  }

  .nav-links {
    margin-top: var(--space-4);
    width: 100%;
    justify-content: center;
  }

  .nav-link {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-base);
  }

  .btn {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .page-header {
    padding: var(--space-12) 0 var(--space-12);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: var(--space-6);
  }

  h1 {
    font-size: var(--font-size-3xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }

  h3 {
    font-size: var(--font-size-lg);
  }

  .footer-social {
    text-align: center;
  }

  .footer-social ul {
    justify-content: center;
  }

  .purpose {
    padding: var(--space-16) 0;
  }
}

@media (max-width: 480px) {
  .hero-banner h1,
  .page-header h1 {
    font-size: var(--font-size-2xl);
  }

  .hero-subtitle,
  .header-subtitle {
    font-size: var(--font-size-md);
  }

  .purpose h2,
  .cta-banner h2,
  .section-heading h2 {
    font-size: var(--font-size-xl);
  }

  h1 {
    font-size: var(--font-size-2xl);
  }

  h2 {
    font-size: var(--font-size-xl);
  }

  h3 {
    font-size: var(--font-size-md);
  }

  .section-intro {
    font-size: var(--font-size-base);
  }

  .news-image {
    height: 240px;
  }
}

/* Base Typography */
strong,
b {
  color: var(--text-primary);
  font-weight: var(--font-weight-strong);
}

/* Component: News Listing */
.news-listing {
  padding: var(--space-16) 0 var(--space-20);
  background-color: var(--color-light-bg);
}

.section-heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-size-md);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius-base);
  overflow: hidden;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}

.news-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: var(--space-6);
}

.agenda-date,
.agenda-location {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding-bottom: var(--space-4);
}

.date-icon,
.location-icon {
  margin-right: var(--space-2); /* Add some space between icon and text */
  display: inline-flex; /* Change to inline-flex */
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: var(--font-size-lg);
}

.date-details,
.location-details {
  display: flex;
  align-items: center; /* Align items vertically */
}

.date-label,
.location-label {
  margin-right: var(--space-2);
}

/* Ensure icons are vertically centered with text */
.date-icon i,
.location-icon i {
  vertical-align: middle;
}

.date-value,
.location-value {
  font-weight: var(--font-weight-strong);
}

.news-date {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-strong);
  margin-bottom: var(--space-2);
}

.news-content h3 {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-md);
  line-height: var(--line-height-tight);
}

.news-content h3 a {
  color: var(--text-dark-strong);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-content h3 a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.news-content p {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-4);
  color: var(--text-dark-weak);
  line-height: var(--line-height-loose);
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--font-weight-strong);
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
}

.news-link i {
  font-size: var(--font-size-xs);
  transition: transform 0.3s ease;
}

.news-link:hover i {
  transform: translateX(0.25rem);
}

@media (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .news-image {
    height: 300px;
  }
}

/* Enhanced timeline section headers */
.timeline-section-header {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: var(--text-light-strong);
  display: block; /* Changed from inline-block */
  margin-top: 2rem;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-base);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font-weight: var(--font-weight-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: var(--font-size-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Add decorative elements to section headers */
.timeline-section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 10px 10px;
  opacity: 0.3;
}

/* Special styling for the first section header */
.agenda-timeline-section:first-child .timeline-section-header {
  margin-top: 0; /* Remove top margin for first section */
}

/* Add extra visual separation between sections */
.agenda-timeline-section {
  margin-bottom: var(--space-16); /* Increased from space-10 */
  position: relative;
}

.agenda-timeline-section:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .timeline-section-header {
    margin-top: var(--space-8);
    font-size: var(--font-size-base);
    padding: var(--space-2) var(--space-4);
  }

  .agenda-timeline-section {
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-6);
  }
}

@media (max-width: 480px) {
  .timeline-section-header {
    margin-top: var(--space-8);
    font-size: var(--font-size-sm);
  }

  .agenda-timeline-section {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
  }
}

/* Speakers Section */
.speakers-section {
  background-color: var(--color-white);
  padding: var(--space-12) var(--space-6);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
  margin: 0 auto;
}

.speaker-card {
  background-color: var(--color-white);
  border-radius: var(--radius-base);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #d1d5db; /* Slightly darker light gray border */
}

.speaker-card:hover {
  transform: scale(1.05);
}

.speaker-image {
  width: 160px;
  height: 160px;
  margin-bottom: var(--space-4);
  position: relative;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
}

.speaker-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
  text-align: center;
}

.speaker-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-strong);
  color: var(--text-dark-strong);
  text-align: center;
  margin-bottom: var(--space-1);
}

.speaker-session {
  font-size: var(--font-size-sm);
  font-style: italic;
  color: var(--text-dark-weak);
  margin-bottom: var(--space-2);
  text-align: center;
}

.speaker-bio-link {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-strong);
  text-decoration: none;
}

.speaker-bio-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
