/* CSS Variables for consistent theming */
:root {
  --primary: #008000;
  --primary-dark: #006400;
  --primary-light: #4CAF50;
  --bg-light: #F1F8F1;
  --bg-lighter: #E8F5E9;
  --text-dark: #222;
  --text-body: #444;
  --text-light: #666;
  /* Main tabs; subtabs use calc(... * --csrd-subtab-font-scale) */
  --csrd-tab-font-size: 0.95rem;
  --csrd-subtab-font-scale: 0.86;
  --card-shadow: none;
  --card-shadow-hover: none;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --container-width: 100%;
  --preview-width: 280px;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #FAFAFA;
  color: #222;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.csrd-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.csrd-topnav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.csrd-topnav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.15rem 0.25rem;
  margin: -0.15rem -0.25rem;
}

.csrd-topnav-brand:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.csrd-topnav-logo {
  height: 36px;
  width: auto;
  max-width: min(140px, 42vw);
  display: block;
  object-fit: contain;
}

.csrd-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.csrd-nav-toggle:hover,
.csrd-nav-toggle:focus-visible {
  background: rgba(107, 174, 14, 0.12);
  color: var(--primary);
}

.csrd-nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Font Awesome loads after this file and sets display on .fa-solid — must win when toggling icons */
.csrd-nav-toggle .csrd-nav-toggle-bars {
  font-size: 1.625rem;
  line-height: 1;
}

.csrd-nav-toggle .csrd-nav-toggle-close {
  display: none !important;
  font-size: 1.625rem;
  line-height: 1;
}

.csrd-topnav.is-menu-open .csrd-nav-toggle .csrd-nav-toggle-bars {
  display: none !important;
}

.csrd-topnav.is-menu-open .csrd-nav-toggle .csrd-nav-toggle-close {
  display: inline-block !important;
}

.csrd-topnav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.csrd-topnav-links::-webkit-scrollbar {
  display: none;
}

.csrd-topnav-links a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.csrd-topnav-links a:hover,
.csrd-topnav-links a:focus {
  color: var(--primary);
  background: rgba(107, 174, 14, 0.1);
}

.csrd-topnav-links a.active {
  color: var(--primary);
  background: rgba(107, 174, 14, 0.1);
  font-weight: 600;
}

@media (max-width: 768px) {
  .csrd-topnav {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }

  .csrd-topnav-inner {
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    row-gap: 0;
  }

  .csrd-nav-toggle {
    display: inline-flex;
  }

  .csrd-topnav-logo {
    height: 32px;
  }

  .csrd-topnav-links {
    flex: 0 0 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
    border-top: 1px solid transparent;
    margin: 0 -1rem;
    padding: 0 1rem;
    width: calc(100% + 2rem);
    box-sizing: border-box;
  }

  .csrd-topnav.is-menu-open .csrd-topnav-links {
    max-height: 420px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    border-top-color: rgba(0, 0, 0, 0.08);
    padding-top: 0.35rem;
    padding-bottom: 0.75rem;
    margin-top: 0.5rem;
  }

  .csrd-topnav-links li {
    width: 100%;
  }

  .csrd-topnav-links a {
    white-space: normal;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .csrd-topnav-links a.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.25);
  }
}

@media (max-width: 480px) {
  .csrd-topnav-inner {
    padding: 0.45rem 0.75rem;
  }

  .csrd-topnav-links {
    margin: 0 -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: calc(100% + 1.5rem);
  }

  .csrd-topnav-links a {
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }
}

body.csrd-nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .csrd-topnav-links {
    transition: none;
  }
}

.csrd-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4.75rem; /* Fixed navbar + logo row */
  padding-bottom: 1.75rem;
}

.csrd-main {
  width: 100%;
  max-width: 1200px;
  min-width: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}

.csrd-section {
  padding: 2rem 0;
  scroll-margin-top: 96px;
}

.csrd-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.csrd-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(75, 128, 10, 0.08);
  padding: 1.25rem;
  margin: 0.25rem 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease;
}

.csrd-card:hover {
  border-color: rgba(75, 128, 10, 0.15);
}

.csrd-kpi-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4B800A;
  padding-top: 0.5rem;
  border-top: 1px solid #E6F4D8;
}

.csrd-tag {
  background: #E6F4D8;
  color: #4B800A;
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.csrd-unit {
  color: #4B800A;
  padding: 0.15rem 0.5rem;
  font-size: 0.85rem;
  border: 1px solid #E6F4D8;
  border-radius: 4px;
}

.csrd-source {
  color: #6BAE0E;
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .csrd-main {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .csrd-card {
    padding: 1rem;
    border-radius: 6px;
  }
  .csrd-main {
    padding: 0.75rem;
  }
  h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom-width: 2px;
    line-height: 1.25;
  }

  h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  h4 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .csrd-topnav-links a {
    font-size: 0.9rem;
  }
  .csrd-kpi-info {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .csrd-section {
    padding: 1.5rem 0;
  }

  .csrd-card {
    margin: 0.5rem 0;
  }

  .toggle-table-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    display: block;
    width: 100%;
    text-align: center;
  }

  .source-link {
    display: inline-flex;
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    padding-bottom: 0.875rem;
    border-bottom-width: 2px;
    line-height: 1.2;
  }

  h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
  }

  h4 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .csrd-section {
    padding: 1.75rem 0;
  }

  .csrd-card {
    margin: 0.75rem 0;
  }

  .tab-section-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
    line-height: 1.4;
  }

  h2 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.625rem;
    border-bottom-width: 2px;
    line-height: 1.25;
  }

  h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.625rem;
  }

  h4 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.625rem;
  }

  p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.875rem;
  }

  .csrd-section {
    padding: 1.25rem 0;
  }

  .csrd-card {
    margin: 0.5rem 0;
  }

  .tab-section-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .accordion-header h3 {
    font-size: 0.95rem;
  }

  .accordion-content {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Accordion Styles */
.accordion {
  margin-bottom: 1.5rem;
}

.accordion-item {
  background: #fff;
  border: 1px solid rgba(75, 128, 10, 0.08);
  border-radius: 8px;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #6BAE0E;
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 1.25rem 1.25rem;
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-content h4 {
  margin-top: 0;
  color: #4B800A;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
  display: block;
}


/* Tabs Styles */
.tabs-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.tabs-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: static;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-link {
  padding: 0.65rem 0.85rem 0.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  font-size: var(--csrd-tab-font-size, 0.95rem);
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: max-content;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.tab-link.active {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  border-bottom-color: var(--primary);
  box-shadow: none;
}

.tab-link:hover:not(.active) {
  background: transparent;
  color: var(--primary);
}

.tab-content {
  display: none;
  padding: 1.5rem;
}

.tab-content.active {
  display: block;
}

.tab-section-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-light);
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Chart Styles */
.chart-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(107, 174, 14, 0.08);
  box-shadow: none;
  box-sizing: border-box;
}

.chart-area {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  position: relative;
  height: 400px;
  margin-bottom: 2rem;
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: none;
}

.chart-area canvas {
  width: 100% !important;
  height: 100% !important;
  border-radius: 6px;
}

/* Double materiality E/S/G: title → bullet list → description */
#double-materiality-section .chart-container--materiality {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

#double-materiality-section .materiality-panel-title {
  width: 100%;
  margin: 0 0 1rem 0;
  padding-left: 1rem;
  box-sizing: border-box;
}

#double-materiality-section .materiality-panel-title h4 {
  margin: 0;
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

#double-materiality-section .materiality-code-badge {
  width: 1.9rem;
  height: 1.9rem;
  min-width: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

#double-materiality-section .materiality-code-badge--environmental {
  background: #6bae0e;
  color: #fff;
}

#double-materiality-section .materiality-code-badge--social {
  background: #facc15;
  color: #3f2f00;
}

#double-materiality-section .materiality-code-badge--governance {
  background: #2563eb;
  color: #fff;
}

#double-materiality-section .chart-area.chart-area--materiality-list {
  height: auto;
  min-height: 0;
  margin: 0 0 0.5rem;
  padding-left: 1rem;
  display: block;
  overflow: visible;
  box-sizing: border-box;
}

/* Double materiality assessment process: full height on stacked mobile layout */
#double-materiality-section .chart-area.chart-area--process-infographic {
  height: auto;
  min-height: 0;
  margin-bottom: 1rem;
  overflow: visible;
}

#double-materiality-section .chart-area.chart-area--process-infographic .process-diagram {
  overflow-x: auto;
  overflow-y: visible;
  contain: none;
}

#double-materiality-section .chart-area.chart-area--process-infographic .assessment-process-infographic {
  overflow: visible;
}

#double-materiality-section .chart-interpretation--materiality-desc {
  margin-top: 0.75rem;
  padding: 0.25rem 0 0.25rem 1.75rem;
  background: transparent;
  border-radius: 0;
  border-left: 3px solid #222;
  width: 100%;
  box-sizing: border-box;
}

#double-materiality-section .chart-interpretation--materiality-desc p {
  margin: 0;
  color: #222;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
}

#double-materiality-section .materiality-topic-list {
  list-style: disc;
  list-style-position: outside;
  margin: 0;
  padding: 0.25rem 0 0.25rem 1.75rem;
  border-left: 3px solid var(--primary);
  width: 100%;
  box-sizing: border-box;
}

#double-materiality-section .materiality-topic-list li {
  padding: 0.4rem 0;
  margin: 0;
  background: none !important;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.45;
}

#double-materiality-section .materiality-topic-list li strong {
  font-weight: 700;
}

#double-materiality-section .materiality-topic-list li::marker {
  color: var(--primary);
  font-size: 0.85em;
}

#double-materiality-section .materiality-iro-table {
  table-layout: fixed;
  width: 100%;
}

#double-materiality-section .materiality-iro-table th,
#double-materiality-section .materiality-iro-table td {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  vertical-align: top;
  line-height: 1.45;
}

.chart-interpretation {
  background: rgba(248, 249, 250, 0.5);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.chart-interpretation h4 {
  margin: 0 0 1rem 0;
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
}

.chart-interpretation p {
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(251, 192, 45, 0.1);
  border: 1px solid rgba(251, 192, 45, 0.3);
  border-radius: 6px;
  border-left: 4px solid #FBBF24;
}

.disclaimer p {
  margin: 0;
  font-size: 0.85rem;
  color: #92400E;
  line-height: 1.4;
  font-weight: 500;
}

.disclaimer strong {
  color: #78350F;
}

/* Table Styles */
.table-container {
  margin: 1.5rem auto;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E6F4D8;
  background: #fff;
  box-shadow: none;
  position: relative;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .chart-container,
  .chart-area,
  .chart-interpretation,
  .table-container {
    width: 100%;
  }

  .chart-container {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
  }

  .chart-area.chart-area--tall {
    height: 460px;
    min-height: 380px;
  }

  #ghg .inner-tabs-container {
    gap: 0.5rem;
  }

  #ghg .inner-tab-content.active {
    min-width: 0;
  }

  #ghg-emissions .ghg-chart-container {
    margin-bottom: 0.75rem;
  }

  .ghg-scope-panel .chart-area {
    margin-bottom: 0.5rem;
    margin-top: 0;
  }

  .ghg-scope-dropdown-row {
    margin-bottom: 0.85rem;
  }

  .chart-area {
    height: 360px;
    min-height: 300px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
  }

  #double-materiality-section .chart-area.chart-area--materiality-list {
    height: auto;
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-left: 0.75rem;
  }

  #double-materiality-section .chart-area.chart-area--process-infographic {
    height: auto;
    min-height: 0;
    margin-bottom: 1rem;
    overflow: visible;
  }

  #double-materiality-section .chart-area.chart-area--process-infographic .process-diagram {
    overflow-y: visible;
    margin: 0.5rem 0;
  }

  #double-materiality-section .materiality-panel-title {
    margin-bottom: 0.875rem;
    padding-left: 0.75rem;
  }

  #double-materiality-section .materiality-panel-title h4 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .chart-interpretation {
    padding: 1rem;
    border-radius: 6px;
    margin-top: 0.75rem;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .chart-interpretation h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .chart-interpretation p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer {
    margin-top: 0.75rem;
    padding: 0.625rem;
    border-radius: 5px;
  }

  .disclaimer p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .table-container {
    margin: 1rem 0;
    border-radius: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
    position: relative;
  }

  .table-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
    z-index: 1;
  }

  .table-container::after {
    content: '↔ Scroll horizontally for more data';
    position: absolute;
    bottom: -25px;
    right: 0;
    font-size: 0.75rem;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .table-container:hover::after {
    opacity: 1;
  }

  .csrd-table {
    min-width: 600px;
    font-size: 0.85rem;
    border-collapse: separate;
    border-spacing: 0;
  }

  .csrd-table th,
  .csrd-table td {
    padding: 0.75rem 0.5rem;
    min-width: 80px;
    border-bottom: 1px solid #E6F4D8;
    border-right: 1px solid rgba(230, 244, 216, 0.5);
  }

  .csrd-table th {
    font-size: 0.8rem;
    padding: 0.875rem 0.5rem;
    background: linear-gradient(135deg, #F5F9F0 0%, #F0F5E8 100%);
    font-weight: 600;
    color: #4B800A;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .csrd-table th:last-child,
  .csrd-table td:last-child {
    border-right: none;
  }

  .csrd-table tbody tr {
    transition: background-color 0.2s ease;
  }

  .csrd-table tbody tr:hover {
    background: linear-gradient(135deg, #FAFBF9 0%, #F5F9F0 100%);
  }

  .csrd-table tbody tr:nth-child(even) {
    background: rgba(107, 174, 14, 0.01);
  }
}

@media (max-width: 480px) {
  .chart-container {
    padding: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .chart-area {
    height: 340px;
    min-height: 280px;
    margin-bottom: 1rem;
  }

  #double-materiality-section .chart-area.chart-area--materiality-list {
    height: auto;
    min-height: 0;
  }

  #double-materiality-section .chart-area.chart-area--process-infographic {
    height: auto;
    min-height: 0;
    margin-bottom: 0.75rem;
  }

  #double-materiality-section .materiality-topic-list li {
    font-size: 0.9rem;
  }

  .chart-interpretation {
    padding: 0.875rem;
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .chart-interpretation h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .chart-interpretation p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .table-container {
    margin: 0.75rem 0;
    border-radius: 5px;
    padding: 0 0.5rem;
  }

  .table-container::before {
    width: 15px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
  }

  .table-container::after {
    font-size: 0.7rem;
    padding: 2px 6px;
    bottom: -22px;
  }

  .csrd-table {
    min-width: 500px;
    font-size: 0.8rem;
  }

  .csrd-table th,
  .csrd-table td {
    padding: 0.625rem 0.375rem;
    min-width: 70px;
  }

  .csrd-table th {
    font-size: 0.75rem;
    padding: 0.75rem 0.375rem;
    position: sticky;
    top: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  }

  .csrd-table tbody tr:hover {
    background: rgba(107, 174, 14, 0.05);
  }

  /* Add visual indicator for scrollable tables */
  .table-container {
    position: relative;
  }

  .table-container:not(:hover)::after {
    content: '↔';
    opacity: 0.6;
  }
}

/* Table Styles */
.table-container {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E6F4D8;
  background: transparent;
}

.toggle-table-btn {
  padding: 0.75rem 1.5rem;
  background: none;
  border: 1px solid #6BAE0E;
  border-radius: 6px;
  color: #6BAE0E;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  z-index: 5;
}

.toggle-table-btn:hover {
  background: #6BAE0E;
  color: #fff;
}

table.csrd-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 0;
  font-size: 0.9rem;
}

.csrd-table th,
.csrd-table td {
  padding: 0.875rem;
  text-align: left;
  border-bottom: 1px solid #E6F4D8;
  white-space: nowrap;
}

.csrd-table th {
  background: #F5F9F0;
  font-weight: 600;
  color: #4B800A;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.csrd-table tbody tr:hover {
  background: var(--bg-lighter);
}

.csrd-table tbody tr:last-child td {
  border-bottom: none;
}

.csrd-card ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.csrd-card li {
  margin-bottom: 0.5rem;
}

.data-visualization-card {
  padding: 1.5rem;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .chart-container-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  :root {
    --csrd-tab-font-size: 0.9rem;
  }

  .chart-container {
    grid-template-columns: 1fr;
  }
  .tabs-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
  }

  .inner-tabs-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .tab-link {
    padding: 0.75rem 0.65rem 0.5rem;
    flex: 1 1 auto;
    min-width: max-content;
  }

  .inner-tab-link {
    flex: 1 1 auto;
    min-width: max-content;
    padding: 0.55rem 0.65rem 0.42rem;
    border-bottom-width: 2px;
  }

  .tabs-nav {
    padding: 0.25rem;
    gap: 0.25rem;
  }
  .chart-container-grid {
    grid-template-columns: 1fr;
  }

  .chart-grid-item {
    min-height: 450px;
    padding: 1.5rem;
  }

  .chart-grid-item canvas {
    height: 300px !important;
  }
}

@media (max-width: 768px) {
  :root {
    --csrd-tab-font-size: 0.85rem;
  }

  .tabs-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0.35rem;
    padding: 0 0.5rem;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
  }

  .inner-tabs-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 0.35rem;
    padding: 0 0.45rem;
    width: 100%;
    box-sizing: border-box;
  }

  .tab-link {
    padding: 0.6rem 0.5rem 0.45rem;
    flex: 1 1 auto;
    min-width: max-content;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
  }

  .tab-link.active {
    background: transparent;
    color: var(--primary);
    border-bottom-color: var(--primary);
    box-shadow: none;
  }

  .inner-tab-link {
    padding: 0.5rem 0.55rem 0.38rem;
    flex: 1 1 auto;
    min-width: max-content;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
  }

  .inner-tab-link.active {
    background: transparent;
    color: var(--primary);
    border-bottom-color: var(--primary);
    box-shadow: none;
  }

  .tab-content {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --csrd-tab-font-size: 0.78rem;
  }

  .tabs-nav {
    padding: 0 0.4rem;
    gap: 0.2rem;
  }

  .inner-tabs-nav {
    gap: 0.25rem;
    padding: 0 0.4rem;
  }

  .tab-link {
    padding: 0.55rem 0.45rem 0.4rem;
    flex: 1 1 auto;
    min-width: max-content;
  }

  .inner-tab-link {
    padding: 0.45rem 0.5rem 0.34rem;
    flex: 1 1 auto;
    min-width: max-content;
    border-bottom-width: 2px;
  }

  .tab-content {
    padding: 0.75rem 0.25rem;
  }
}

/* KPI Metrics */
.kpi-metrics {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.kpi-metrics div {
  background: #FAFAFA;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #E6F4D8;
  text-align: center;
  color: #4B800A;
  font-size: 0.9rem;
}

.kpi-metrics span {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  color: #4B800A;
}

.kpi-metric-link {
  background: #FAFAFA;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #E6F4D8;
  text-align: left;
  color: #4B800A;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.kpi-metric-link span {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 600;
  color: #4B800A;
  line-height: 1;
  flex-shrink: 0;
}

.kpi-metric-link:hover {
  background: #F3F9EB;
  border-color: #CFE8B5;
  transform: translateY(-1px);
}

.kpi-metric-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Inner Tabs Styles - Updated */
.inner-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.inner-tabs-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: static;
  z-index: 90;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.inner-tabs-nav::-webkit-scrollbar {
  display: none;
}

.inner-tab-link {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0.45rem 0.65rem 0.38rem;
  color: var(--text-body);
  font-size: calc(var(--csrd-tab-font-size, 0.95rem) * var(--csrd-subtab-font-scale, 0.86));
  font-weight: 500;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: max-content;
  text-align: center;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.inner-tab-link:hover:not(.active) {
  background: transparent;
  color: var(--primary);
}

.inner-tab-link.active {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  border-bottom-color: var(--primary);
  box-shadow: none;
}

.inner-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.inner-tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Chart Container Styles */
.chart-container {
  background: transparent;
  border-radius: var(--border-radius);
  padding: 1.5rem 0;
  margin-bottom: 1rem;
  overflow: visible;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  box-shadow: none;
}

.chart-area {
  position: relative;
  height: 400px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  box-shadow: none;
}

.chart-area.chart-area--tall {
  height: 520px;
  min-height: 440px;
}

.table-footnote {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

#ghg .inner-tabs-container {
  gap: 0.65rem;
}

#ghg .inner-tabs-nav {
  width: 100%;
}

#ghg .inner-tab-link {
  flex: 1 1 0;
  min-width: 0;
}

#ghg-emissions.inner-tab-content.active {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: visible;
}

#ghg-emissions .ghg-chart-container {
  overflow: visible;
  flex: 1 1 auto;
  min-width: 0;
}

.ghg-scope-panel {
  width: 100%;
}

.ghg-charts-host {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.ghg-scope-dropdown-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 1rem;
  position: relative;
  z-index: 130;
}

.ghg-scope-dropdown {
  position: relative;
  display: inline-block;
  max-width: min(8.5rem, calc(100% - 2rem));
}

.ghg-scope-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 5rem;
  padding: 0.28rem 0.6rem 0.38rem;
  font-size: 0.75rem;
  line-height: 1.3;
  font-family: inherit;
  font-weight: 600;
  color: var(--primary, #6BAE0E);
  background-color: #fff;
  border: 1px solid var(--primary, #6BAE0E);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ghg-scope-trigger:hover,
.ghg-scope-trigger.is-open {
  background-color: var(--accent, #E6F4D8);
  border-color: var(--tertiary, #4B800A);
  color: var(--tertiary, #4B800A);
}

.ghg-scope-trigger:focus-visible {
  outline: 2px solid var(--primary, #6BAE0E);
  outline-offset: 2px;
}

.ghg-scope-trigger__icon {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
}

.ghg-scope-trigger.is-open .ghg-scope-trigger__icon {
  transform: rotate(180deg);
}

.csrd-card .ghg-scope-menu {
  list-style: none;
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

.ghg-scope-menu {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 250;
  min-width: 100%;
  width: max-content;
  max-width: min(100vw - 2rem, 9.5rem);
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  list-style-type: none;
  background-color: #fff;
  border: 1px solid var(--primary, #6BAE0E);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.ghg-scope-menu[hidden] {
  display: none !important;
}

.csrd-card .ghg-scope-menu li {
  list-style: none;
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

.ghg-scope-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.ghg-scope-menu__option {
  display: block;
  width: 100%;
  padding: 0.4rem 0.75rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  color: var(--primary, #6BAE0E);
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.ghg-scope-menu__option:hover,
.ghg-scope-menu__option:focus-visible {
  background-color: var(--accent, #E6F4D8);
  color: var(--tertiary, #4B800A);
  outline: none;
}

.ghg-scope-menu__option.is-selected {
  background-color: var(--primary, #6BAE0E);
  color: #fff;
}

.ghg-scope-menu__option.is-selected:hover,
.ghg-scope-menu__option.is-selected:focus-visible {
  background-color: var(--tertiary, #4B800A);
  color: #fff;
}

.ghg-scope-panel[hidden] {
  display: none !important;
}

.ghg-scope-panel .chart-area {
  margin-bottom: 0.5rem;
}

.ghg-scope-panel .chart-interpretation {
  margin-bottom: 0;
}

.ghg-scope-table {
  margin-top: 0;
}

.chart-interpretation {
  color: var(--text-body);
}

.chart-interpretation h4 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.chart-interpretation p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* KPI Metrics */
.kpi-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.kpi-metrics div {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.kpi-metrics span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

/* Table Styles */
.table-container {
  background: transparent;
  border-radius: var(--border-radius);
  padding: 1rem 0;
  margin-top: 1rem;
  overflow-x: auto;
}

.toggle-table-btn {
  background: transparent;
  border: 1px solid var(--primary);
  padding: 0.5rem 1rem;
  margin: 0 2rem;
  border-radius: var(--border-radius-sm);
  color: var(--primary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-table-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .kpi-metrics {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Highlight Cards */
.highlight-section {
  width: 80%;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.highlight-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}

.highlight-card-header {
  background: #F8FBF4;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E6F4D8;
}

.highlight-card-header h3 {
  color: #4B800A;
  font-size: 1.2rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-card-header h3::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}

.highlight-card.key-highlights .highlight-card-header h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236BAE0E'%3E%3Cpath d='M12 2L1 21h22L12 2zm0 3.45l6.04 10.38-1.19 2.04h-9.7l-1.19-2.04L12 5.45zm0 4.55a1 1 0 00-1 1v2a1 1 0 002 0v-2a1 1 0 00-1-1zm0 6a1 1 0 100 2 1 1 0 000-2z'/%3E%3C/svg%3E");
}

.highlight-card.important-info .highlight-card-header h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236BAE0E'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15a1 1 0 01-1-1v-4a1 1 0 112 0v4a1 1 0 01-1 1zm0-8a1 1 0 110-2 1 1 0 010 2z'/%3E%3C/svg%3E");
}

.highlight-list {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.highlight-list li {
  position: relative;
  padding: 1rem 1.25rem;
  margin: 0;
  background: #F8FBF4;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  transition: all 0.2s ease;
}

.highlight-list li:hover {
  background: #E6F4D8;
  transform: translateX(4px);
}

.highlight-list li::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #6BAE0E;
  border-radius: 2px;
}

/* Enhanced Narratives */
.narratives-section {
  width: 80%;
  margin: 2rem auto;
}

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

.narrative-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: none;
}

.narrative-card h4 {
  color: #4B800A;
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #E6F4D8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.narrative-card h4::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.narrative-card.policies h4::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236BAE0E'%3E%3Cpath d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z'/%3E%3C/svg%3E");
}

.narrative-card.strategies h4::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236BAE0E'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2V9h-2V7h4v10z'/%3E%3C/svg%3E");
}

.narrative-card.risks h4::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236BAE0E'%3E%3Cpath d='M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z'/%3E%3C/svg%3E");
}

.narrative-card.engagement h4::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236BAE0E'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.narrative-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.narrative-card .metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E6F4D8;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6BAE0E;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 1024px) {
  .highlight-section,
  .narratives-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .highlight-section,
  .narratives-section {
    width: 100%;
    margin: 1.5rem 0;
  }

  .highlight-section {
    margin-bottom: 2rem;
  }

  .narratives-section {
    margin-top: 2rem;
  }

  .highlight-card {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
  }

  .highlight-card-header {
    padding: 1.25rem;
    background: linear-gradient(135deg, #F8FBF4 0%, #F0F5E8 100%);
  }

  .highlight-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .highlight-list {
    padding: 1.25rem;
    background: #fff;
  }

  .highlight-list li {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: rgba(107, 174, 14, 0.02);
    border-left: 3px solid var(--primary);
    box-shadow: none;
  }

  .highlight-list li:last-child {
    margin-bottom: 0;
  }

  .narrative-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: none;
    background: #fff;
  }

  .narrative-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .narrative-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
  }

  .metric-value {
    font-size: 1.25rem;
    font-weight: 700;
  }

  .narratives-grid {
    gap: 1rem;
    margin-top: 1rem;
  }

  /* Improve accordion behavior on mobile */
  .accordion-item {
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
  }

  .accordion-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .accordion-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  }

  .accordion-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
  }

  .accordion-content {
    padding: 1rem 1.25rem;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Presentation Cards Layout */
.presentation-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--bg-lighter);
}

.presentation-card {
  background: #fff;
  transition: var(--transition);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  overflow: visible;
  border-radius: 0;
  border: 1px solid rgba(107, 174, 14, 0.08);
  box-shadow: none;
  cursor: pointer;
}

.card-preview {
  padding: 1.25rem;
  background: #fff;
  position: relative;
  width: var(--preview-width);
  min-width: var(--preview-width);
  transition: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  border-radius: 8px 8px 0 0;
}

.presentation-card.active .card-preview {
  background: var(--bg-light);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.card-preview h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  transition: var(--transition);
}

.presentation-card.active .card-preview h3 {
  color: var(--primary-dark);
}

/* Preview Stats */
.preview-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(-10px);
}

.presentation-card.active .preview-content {
  height: auto;
  opacity: 1;
  margin-top: 1rem;
  transform: translateY(0);
}

.preview-stat {
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.preview-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0.3;
  transition: var(--transition);
}

.preview-stat:hover {
  background: var(--bg-lighter);
}

.preview-stat:hover::before {
  opacity: 1;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.stat-value::after {
  content: attr(data-unit);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.4;
  position: relative;
}

/* Special styling for different stat types */
.preview-stat[data-type="percentage"] .stat-value {
  color: var(--primary);
}

.preview-stat[data-type="percentage"] .stat-value::after {
  content: "%";
}

.preview-stat[data-type="temperature"] .stat-value {
  color: #E67E22;
}

.preview-stat[data-type="temperature"] .stat-value::after {
  content: "°C";
}

.preview-stat[data-type="weight"] .stat-value {
  color: #3498DB;
}

.preview-stat[data-type="score"] .stat-value {
  color: #9B59B6;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .preview-stat {
    padding: 0.75rem;
  }

  .stat-value {
    font-size: 1.1rem;
  }
}

/* Toggle Button - Updated 2024-12-19 */
.presentation-card .toggle-details,
.toggle-details {
  position: absolute !important;
  top: 1rem !important;
  right: 0.5rem !important;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000 !important;
  padding: 0;
  width: 16px;
  height: 16px;
  display: block;
}

/* Force toggle button positioning for all sections */
.presentation-section .presentation-card .toggle-details,
.presentation-card .toggle-details,
.toggle-details {
  position: absolute !important;
  top: 1rem !important;
  right: 0.5rem !important;
}

/* Ensure toggle button positions relative to presentation-card, not card-preview */
.presentation-card > .toggle-details {
  position: absolute !important;
  top: 1rem !important;
  right: 0.5rem !important;
  z-index: 10000 !important;
}

/* Additional specificity for all sections - Updated 2024-12-19 15:30 */
#governance .presentation-card .toggle-details,
#financial .presentation-card .toggle-details,
#double-materiality-section .presentation-card .toggle-details,
#taxonomy-section .presentation-card .toggle-details,
#environmental .presentation-card .toggle-details,
#social .presentation-card .toggle-details {
  position: absolute !important;
  top: 1rem !important;
  right: 0.5rem !important;
  z-index: 10000 !important;
}

/* Ultra-specific override for problematic sections */
body #governance .presentation-section .presentation-card .toggle-details,
body #financial .presentation-section .presentation-card .toggle-details,
body #double-materiality-section .presentation-section .presentation-card .toggle-details,
body #environmental .presentation-section .presentation-card .toggle-details,
body #social .presentation-section .presentation-card .toggle-details {
  position: absolute !important;
  top: 1rem !important;
  right: 0.5rem !important;
  z-index: 10000 !important;
}

.toggle-details::before {
  content: '▶';
  color: var(--primary);
  font-size: 14px;
  line-height: 1;
  transition: var(--transition);
}

.toggle-details:hover {
  background: transparent;
}

.toggle-details.active {
  width: 20px;
  height: 20px;
}

.toggle-details.active::before {
  content: '×';
  font-size: 25px;
}

/* Card Details Section */
.card-details {
  background: #fff;
  padding: 0;
  width: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-left: 1px solid var(--bg-lighter);
}

.card-details.active {
  padding: 3rem;
  width: calc(100% - var(--preview-width));
  max-height: 2000px;
  opacity: 1;
}

.details-section {
  margin-bottom: 1.5rem;
}

.details-section:last-child {
  margin-bottom: 0;
}

.details-section h4 {
  color: var(--text-dark);
  font-size: 1rem;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bg-lighter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.details-section h4 .section-tag {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: normal;
  padding: 0.25rem 0.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius-sm);
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.details-list li {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  background: var(--bg-light);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-body);
  transition: var(--transition);
}

.details-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--primary);
  border-radius: 2px;
}

.details-list.highlights li::before {
  background: var(--primary);
}

.details-list.important li::before {
  background: var(--primary-dark);
}

/* Narrative Grid */
.narrative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.narrative-item {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.narrative-item:hover {
  background: var(--bg-lighter);
}

.narrative-item h5 {
  color: var(--primary-dark);
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.narrative-item p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-body);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --preview-width: 100%;
  }

  .presentation-card {
    flex-direction: column;
    border-radius: 8px;
    margin-bottom: 1rem;
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .card-preview {
    width: 100%;
    min-width: 0;
    padding: 1rem;
    padding-right: 2.75rem;
    border-radius: 8px 8px 0 0;
    box-sizing: border-box;
  }

  .card-preview h3 {
    white-space: normal;
    line-height: 1.25;
    align-items: flex-start;
  }

  .presentation-card.active .card-preview {
    width: 100%;
    min-width: 0;
    border-radius: 8px 8px 0 0;
  }

  .preview-content {
    flex-direction: column;
    gap: 0.600rem;
  }

  .preview-stat {
    flex: none;
    padding: 0.600rem;
    border-radius: 6px;
  }

  .presentation-card .toggle-details,
  .toggle-details {
    top: 0.75rem !important;
    right: 0.5rem !important;
    width: 36px;
    height: 36px;
    min-width: 44px;
    min-height: 44px;
  }

  /* Force toggle button positioning for all sections - Mobile */
  .presentation-section .presentation-card .toggle-details,
  .presentation-card .toggle-details,
  .toggle-details {
    top: 0.75rem !important;
    right: 0.5rem !important;
  }

  /* Ensure toggle button positions relative to presentation-card, not card-preview - Mobile */
  .presentation-card > .toggle-details {
    top: 0.75rem !important;
    right: 0.5rem !important;
    z-index: 10000 !important;
  }

  /* Additional specificity for all sections - Mobile */
  #governance .presentation-card .toggle-details,
  #financial .presentation-card .toggle-details,
  #double-materiality-section .presentation-card .toggle-details,
  #taxonomy-section .presentation-card .toggle-details,
  #environmental .presentation-card .toggle-details,
  #social .presentation-card .toggle-details {
    top: 0.75rem !important;
    right: 0.5rem !important;
    z-index: 10000 !important;
  }

  /* Ultra-specific override for problematic sections - Mobile */
  body #governance .presentation-section .presentation-card .toggle-details,
  body #financial .presentation-section .presentation-card .toggle-details,
  body #double-materiality-section .presentation-section .presentation-card .toggle-details,
  body #environmental .presentation-section .presentation-card .toggle-details,
  body #social .presentation-section .presentation-card .toggle-details {
    top: 0.75rem !important;
    right: 0.5rem !important;
    z-index: 10000 !important;
  }

  .card-details {
    width: 100%;
    min-width: 0;
    border-left: none;
    border-top: 2px solid var(--primary);
    background: rgba(248, 249, 250, 0.5);
    box-sizing: border-box;
  }

  .card-details.active {
    width: 100%;
    padding: 1.125rem;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
  }

  .details-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .details-section h4 .section-tag {
    flex-shrink: 0;
  }

  .narrative-item {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .narrative-item p {
    overflow-wrap: break-word;
  }

  .details-list li {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
  }

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

@media (max-width: 480px) {
  .presentation-card {
    margin-bottom: 0.75rem;
  }

  .card-preview {
    padding: 0.875rem;
  }

  .preview-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .preview-stat {
    flex: 1 1 100%;
    padding: 0.625rem;
    border-radius: 5px;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .presentation-card .toggle-details,
  .toggle-details {
    top: 0.5rem !important;
    right: 0.25rem !important;
    width: 32px;
    height: 32px;
  }

  /* Force toggle button positioning for all sections - Small Mobile */
  .presentation-section .presentation-card .toggle-details,
  .presentation-card .toggle-details,
  .toggle-details {
    top: 0.5rem !important;
    right: 0.25rem !important;
  }

  /* Ensure toggle button positions relative to presentation-card, not card-preview - Small Mobile */
  .presentation-card > .toggle-details {
    top: 0.5rem !important;
    right: 0.25rem !important;
    z-index: 10000 !important;
  }

  /* Additional specificity for all sections - Small Mobile */
  #governance .presentation-card .toggle-details,
  #financial .presentation-card .toggle-details,
  #double-materiality-section .presentation-card .toggle-details,
  #taxonomy-section .presentation-card .toggle-details,
  #environmental .presentation-card .toggle-details,
  #social .presentation-card .toggle-details {
    top: 0.5rem !important;
    right: 0.25rem !important;
    z-index: 10000 !important;
  }

  /* Ultra-specific override for problematic sections - Small Mobile */
  body #governance .presentation-section .presentation-card .toggle-details,
  body #financial .presentation-section .presentation-card .toggle-details,
  body #double-materiality-section .presentation-section .presentation-card .toggle-details,
  body #environmental .presentation-section .presentation-card .toggle-details,
  body #social .presentation-section .presentation-card .toggle-details {
    top: 0.5rem !important;
    right: 0.25rem !important;
    z-index: 10000 !important;
  }

  .toggle-details::before {
    font-size: 12px;
  }

  .toggle-details.active {
    width: 18px;
    height: 18px;
  }

  .toggle-details.active::before {
    font-size: 18px;
  }

  .card-details.active {
    padding: 1rem;
  }

  .details-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .details-list li {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

/* Simple Overview Section Styles */
.simple-overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border: none;
  box-shadow: none;
}

.company-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.company-logo-simple {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-details h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.company-details p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.4;
}

.key-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2rem;
  flex-shrink: 0;
}

.fact {
  text-align: center;
  min-width: 80px;
}

.fact-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.fact-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.fact-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.fact--net-sales .fact-currency {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-body);
  opacity: 0.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
}

/* Performance Grid */
.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .perf-card {
    padding: 1.25rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .perf-card:hover {
    transform: translateY(-1px);
    box-shadow: none;
  }

  .perf-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .perf-metric {
    margin-bottom: 0.75rem;
  }

  .perf-metric .value {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .perf-metric .label {
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 500;
  }

  .trend {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .performance-grid {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .perf-card {
    padding: 1rem;
    border-radius: 6px;
  }

  .perf-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .perf-metric .value {
    font-size: 1.2rem;
  }

  .perf-metric .label {
    font-size: 0.75rem;
  }

  .trend {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
  }
}

.perf-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.perf-card:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.perf-card h4 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.perf-metric {
  margin-bottom: 0.75rem;
}

.perf-metric .value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.perf-metric .label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-body);
}

.trend {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trend.positive {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.trend.warning {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

/* Highlights Section */
.highlights-section {
  margin-bottom: 2rem;
}

.highlights-section h4 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.highlights-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.highlights-section .highlight-item.highlight-news-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E6F4D8;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.highlights-section .highlight-item.highlight-news-card:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.highlights-section .highlight-headline {
  margin: 0;
  padding: 1rem 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #038001;
}

.highlights-section .highlight-item.highlight-news-card .highlight-text {
  margin: 0;
  padding: 0.65rem 1.25rem 1.1rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-body);
}

@media (max-width: 1024px) {
  .highlights-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-overview-header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  .company-profile {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .company-logo-simple {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .company-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .company-details p {
    font-size: 0.9rem;
  }

  .key-facts {
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
  }

  .fact {
    min-width: 70px;
  }

  .fact-number {
    font-size: 1.85rem;
  }

  .fact-text {
    font-size: 0.75rem;
  }

  .performance-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .perf-card {
    padding: 1.25rem;
  }

  .perf-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .perf-metric .value {
    font-size: 1.25rem;
  }

  .perf-metric .label {
    font-size: 0.8rem;
  }

  .trend {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }

  .highlights-section h4 {
    font-size: 1rem;
  }

  .highlights-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.875rem;
  }

  .highlights-section .highlight-headline {
    font-size: 0.98rem;
    padding: 0.875rem 1rem 0;
  }

  .highlights-section .highlight-item.highlight-news-card .highlight-text {
    font-size: 0.85rem;
    padding: 0.5rem 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .simple-overview-header {
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-radius: 0;
  }

  .company-profile {
    gap: 0.75rem;
  }

  .company-logo-simple {
    width: 45px;
    height: 45px;
  }

  .company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .company-details h3 {
    font-size: 1.1rem;
  }

  .company-details p {
    font-size: 0.85rem;
  }

  .key-facts {
    gap: 1rem;
  }

  .fact {
    min-width: 60px;
  }

  .fact-number {
    font-size: 1.6rem;
  }

  .fact-text {
    font-size: 0.7rem;
  }

  .performance-grid {
    gap: 0.75rem;
  }

  .perf-card {
    padding: 1rem;
    border-radius: 6px;
  }

  .perf-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .perf-metric .value {
    font-size: 1.1rem;
  }

  .perf-metric .label {
    font-size: 0.75rem;
  }

  .trend {
    font-size: 0.65rem;
    padding: 0.15rem 0.3rem;
  }

  .highlights-section h4 {
    font-size: 0.95rem;
  }

  .highlights-list {
    grid-template-columns: 1fr;
  }

  .highlights-section .highlight-headline {
    font-size: 0.92rem;
    padding: 0.75rem 0.875rem 0;
  }

  .highlights-section .highlight-item.highlight-news-card .highlight-text {
    font-size: 0.8rem;
    line-height: 1.45;
    padding: 0.45rem 0.875rem 0.9rem;
  }
}

.source-link {
  position: relative;
  display: inline-block;
  color: #4a7c2a;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
  margin-left: 0;
  z-index: 5;
  cursor: pointer;
  padding-right: 20px; /* Space for the icon */
}

/* Desktop layout: position PDF link on right side */
@media (min-width: 769px) {
  .chart-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .chart-container .toggle-table-btn {
    margin-top: 1.5rem;
    margin-right: 1rem;
  }

  .chart-container .source-link {
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: 0;
  }
}

/* Mobile layout: keep PDF link below button */
@media (max-width: 768px) {
  .chart-container {
    display: block;
  }

  .chart-container .source-link {
    margin-top: 1.5rem;
    margin-left: 0;
  }
}

.source-link:hover {
  text-decoration: underline;
  color: #2e5a1a;
}

.source-link:hover::after {
  color: #2e5a1a;
}

.source-link::after {
  content: "\f1c1"; /* Font Awesome PDF file icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  color: #4a7c2a;
  font-size: 0.8rem;
}

/* Process Diagram Styles */
.assessment-process-infographic {
  width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  box-sizing: border-box;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 200px;
  flex-shrink: 0;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.process-diagram {
  padding: 1rem;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
}

/* Process Diagram Image - Responsive */
.process-diagram-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.process-diagram-image:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.process-diagram::-webkit-scrollbar {
  display: none;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 200px;
  flex-shrink: 0;
  padding: 0 1rem;
  min-width: fit-content;
  max-width: 100%;
}

.process-step {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: none;
  border: 1px solid rgba(107, 174, 14, 0.15);
  min-width: 160px;
  max-width: 180px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: var(--primary);
}

.step-number {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 auto 0.5rem auto;
}

.step-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content h5 {
  margin: 0 0 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

.step-content p {
  margin: 0;
  font-size: 0.7rem;
  color: var(--text-body);
  line-height: 1.3;
  text-align: center;
}

.step-actors {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 500;
  background: rgba(0, 128, 0, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-align: center;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
  opacity: 0.7;
  position: relative;
}

.process-arrow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.3;
}



/* Responsive Design for Process Diagram */
@media (max-width: 1200px) {
  .process-diagram {
    padding: 0.5rem;
    overflow-x: auto;
    overflow-y: visible;
  }

  .assessment-process-infographic {
    padding: 0;
  }

  .process-steps {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .process-diagram-image {
    padding: 0.5rem;
  }

  .process-flow {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    min-width: fit-content;
  }

  .process-step {
    min-width: 300px;
    max-width: 350px;
    width: 100%;
    padding: 1.25rem;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .step-content h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .step-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: var(--primary);
    font-weight: bold;
  }
}

@media (max-width: 1024px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: var(--primary);
    font-weight: bold;
  }

  .process-step {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 1.25rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .step-content h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .step-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .process-diagram {
    padding: 0.5rem;
    overflow-x: auto;
    overflow-y: visible;
    margin: 1rem 0;
  }

  .assessment-process-infographic {
    padding: 0;
  }

  .process-steps {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 0.25rem;
    max-width: 100%;
    min-height: 300px;
    box-sizing: border-box;
  }

  .process-diagram-image {
    padding: 0.25rem;
    border-radius: 6px;
  }

  .process-flow {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
    min-width: fit-content;
    min-height: 300px;
    max-width: 100%;
  }

  .process-step {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    flex-shrink: 0;
    border-radius: 6px;
    box-shadow: none;
    border: 1px solid rgba(107, 174, 14, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .process-step:hover {
    transform: translateY(-1px);
    box-shadow: none;
    border-color: var(--primary);
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    margin: 0 auto 0.75rem auto;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

  .step-content h5 {
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-dark);
  }

  .step-content p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    color: var(--text-body);
    text-align: center;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--primary);
    opacity: 0.8;
    font-weight: bold;
  }

  .process-arrow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .process-diagram {
    padding: 0.5rem;
    overflow-x: auto;
    overflow-y: visible;
  }

  .process-diagram-image {
    padding: 0.125rem;
    border-radius: 4px;
  }

  .process-flow {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 0.25rem;
    min-width: fit-content;
  }

  .process-step {
    min-width: 260px;
    max-width: 300px;
    width: 100%;
    padding: 0.8rem;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    margin: 0 auto 0.5rem auto;
  }

  .step-content h5 {
    font-size: 0.8rem;
    margin: 0 0 0.3rem 0;
    line-height: 1.2;
  }

  .step-content p {
    font-size: 0.7rem;
    line-height: 1.3;
    margin: 0;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1rem;
    margin: 0.25rem 0;
    color: var(--primary);
    opacity: 0.7;
  }
}

@media (max-width: 360px) {
  .process-diagram {
    padding: 0.4rem;
    overflow-x: auto;
    overflow-y: visible;
  }

  .process-flow {
    gap: 0.6rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 0.2rem;
    min-width: fit-content;
  }

  .process-step {
    min-width: 240px;
    max-width: 280px;
    width: 100%;
    padding: 0.7rem;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    margin: 0 auto 0.4rem auto;
  }

  .step-content h5 {
    font-size: 0.75rem;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
  }

  .step-content p {
    font-size: 0.65rem;
    line-height: 1.3;
    margin: 0;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 0.9rem;
    margin: 0.2rem 0;
    color: var(--primary);
    opacity: 0.6;
  }
}

/* Additional mobile enhancements for very small screens */
@media (max-width: 360px) {
  .csrd-topnav-logo {
    height: 28px;
    max-width: 38vw;
  }

  .csrd-topnav-links a {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  .csrd-main {
    padding: 0.25rem;
  }

  .simple-overview-header {
    padding: 0.875rem 0;
    margin-bottom: 0.875rem;
  }

  .company-profile {
    gap: 0.5rem;
  }

  .company-logo-simple {
    width: 40px;
    height: 40px;
  }

  .company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .company-details h3 {
    font-size: 1rem;
  }

  .company-details p {
    font-size: 0.8rem;
  }

  .key-facts {
    gap: 0.75rem;
  }

  .fact {
    min-width: 55px;
  }

  .fact-number {
    font-size: 1.4rem;
  }

  .fact-text {
    font-size: 0.65rem;
  }

  .performance-grid {
    gap: 0.5rem;
  }

  .perf-card {
    padding: 0.875rem;
  }

  .perf-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .perf-metric .value {
    font-size: 1rem;
  }

  .perf-metric .label {
    font-size: 0.7rem;
  }

  .trend {
    font-size: 0.6rem;
    padding: 0.15rem 0.3rem;
  }

  /* Ultra-small screen table optimizations */
  .table-container {
    margin: 0.5rem 0;
    border-radius: 4px;
    padding: 0 0.25rem;
  }

  .table-container::before {
    width: 10px;
  }

  .table-container::after {
    font-size: 0.65rem;
    padding: 1px 4px;
    bottom: -18px;
  }

  .csrd-table {
    min-width: 450px;
    font-size: 0.75rem;
  }

  .csrd-table th,
  .csrd-table td {
    padding: 0.5rem 0.25rem;
    min-width: 60px;
  }

  .csrd-table th {
    font-size: 0.7rem;
    padding: 0.625rem 0.25rem;
  }
}

/* Climate Mitigation Cards Styles */
.climate-mitigation-section {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
}


.climate-activity-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.activity-card {
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none;
  overflow: hidden;
  transition: all 0.2s ease;
  position: relative;
}

.activity-card:hover {
  transform: translateY(-1px);
  box-shadow: none;
  border-color: rgba(107, 174, 14, 0.3);
}

.activity-card.aligned {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #fafafa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.activity-icon {
  width: 32px;
  height: 32px;
  background: rgba(107, 174, 14, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.activity-icon svg {
  width: 16px;
  height: 16px;
}

.activity-title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.alignment-badge {
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.alignment-badge.aligned {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.activity-details {
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(107, 174, 14, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
}

.detail-value {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
}

.climate-impact {
  padding: 0.75rem;
  background: transparent;
  border-radius: 4px;
  border-left: 2px solid rgba(107, 174, 14, 0.2);
}

.impact-text {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.4;
  margin: 0;
}

.show-data-btn {
  background: none;
  border: none;
  color: var(--primary);
  padding: 0;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.75rem;
  text-decoration: underline;
  text-transform: none;
  letter-spacing: 0;
  align-self: flex-end;
}

.show-data-btn:hover {
  color: var(--text-dark);
  text-decoration: none;
  opacity: 0.8;
}

.show-data-btn:active {
  transform: translateY(0);
}

.show-data-btn.showing {
  background: var(--primary);
  color: white;
}

.show-data-btn.showing::after {
  content: " (Hide)";
  font-size: 0.7rem;
  opacity: 0.8;
}


.climate-impact-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(107, 174, 14, 0.1);
  box-shadow: none;
}

.climate-impact-summary h5 {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.climate-impact-summary p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.impact-metric {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(107, 174, 14, 0.1);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-metric:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.impact-metric .metric-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.impact-metric .metric-unit {
  display: block;
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.impact-metric .metric-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Climate Cards */
@media (max-width: 1024px) and (min-width: 769px) {
  .climate-activity-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {

  .climate-activity-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 1.5rem;
  }

  .card-header {
    padding: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .activity-icon {
    width: 28px;
    height: 28px;
  }

  .activity-icon svg {
    width: 14px;
    height: 14px;
  }

  .activity-title {
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
  }

  .alignment-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
  }

  .card-content {
    padding: 1rem;
  }

  .detail-item {
    padding: 0.5rem 0;
  }

  .detail-label,
  .detail-value {
    font-size: 0.8rem;
  }

  .climate-impact {
    padding: 0.75rem;
  }

  .impact-text {
    font-size: 0.8rem;
  }

  .show-data-btn {
    padding: 0;
    font-size: 0.7rem;
    margin-top: 0.625rem;
  }


  .climate-impact-summary {
    padding: 1.5rem;
  }

  .climate-impact-summary h5 {
    font-size: 1.1rem;
  }

  .climate-impact-summary p {
    font-size: 0.95rem;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .impact-metric {
    padding: 1.25rem;
  }

  .impact-metric .metric-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {

  .climate-activity-cards {
    gap: 1.5rem;
  }

  .card-header {
    padding: 0.875rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .activity-icon {
    width: 24px;
    height: 24px;
  }

  .activity-icon svg {
    width: 12px;
    height: 12px;
  }

  .activity-title {
    font-size: 0.9rem;
    width: 100%;
  }

  .alignment-badge {
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
    align-self: flex-end;
  }

  .card-content {
    padding: 0.875rem;
  }

  .detail-item {
    padding: 0.4rem 0;
  }

  .detail-label,
  .detail-value {
    font-size: 0.75rem;
  }

  .climate-impact {
    padding: 0.625rem;
  }

  .impact-text {
    font-size: 0.75rem;
  }

  .show-data-btn {
    padding: 0;
    font-size: 0.65rem;
    margin-top: 0.5rem;
  }


  .climate-impact-summary {
    padding: 1rem;
  }

  .climate-impact-summary h5 {
    font-size: 1rem;
  }

  .climate-impact-summary p {
    font-size: 0.85rem;
  }

  .impact-metrics {
    gap: 0.75rem;
  }

  .impact-metric {
    padding: 1rem;
  }

  .impact-metric .metric-number {
    font-size: 1.3rem;
  }

  .impact-metric .metric-unit {
    font-size: 0.8rem;
  }

  .impact-metric .metric-desc {
    font-size: 0.75rem;
  }
}

/* Final mobile optimizations and accessibility improvements */
@media (max-width: 480px) {
  /* Ensure consistent spacing and touch targets */
  .csrd-main {
    padding: 0.5rem;
  }

  .csrd-section {
    padding: 1rem 0;
  }

  /* Improve button touch targets */
  button, .toggle-details {
    min-height: 44px;
    min-width: 44px;
  }

  .tab-link {
    min-height: 44px;
    min-width: max(44px, max-content);
  }

  .inner-tab-link {
    min-height: 40px;
    min-width: max(40px, max-content);
  }

  /* Better focus states for accessibility */
  button:focus, .tab-link:focus, .inner-tab-link:focus, .toggle-details:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }

  /* Improve readability */
  .highlight-section {
    width: 100%;
    padding: 0 0.5rem;
  }

  .narratives-section {
    width: 100%;
    padding: 0 0.5rem;
  }
}

/* Ensure smooth scrolling and performance */
* {
  -webkit-tap-highlight-color: rgba(0, 128, 0, 0.1);
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Chart Controls Container - Consistent alignment for buttons and links */
.chart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.chart-controls .toggle-table-btn {
  margin: 0;
  flex-shrink: 0;
}

.chart-controls .source-link {
  margin: 0;
  margin-left: auto;
  flex-shrink: 0;
}

/* Mobile responsiveness for chart controls */
@media (max-width: 768px) {
  .chart-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
  }

  .chart-controls .toggle-table-btn {
    margin-right: 0;
  }

  .chart-controls .source-link {
    margin-left: 0;
  }
}

/* Infographic Container for Supplier Assessment */
.infographic-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}


/* Performance Overview */
.performance-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.overview-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.overview-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.performance-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 174, 14, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.overview-card .card-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.overview-card .card-content {
  padding: 1.5rem;
}

.metric-display {
  text-align: center;
  margin-bottom: 1.5rem;
}

.metric-display .metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-display .metric-value.success {
  color: #16a34a;
}

.metric-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
}

/* Progress Bar */
.progress-bar-container {
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(107, 174, 14, 0.8) 100%);
  border-radius: 4px;
  transition: width 1s ease;
}

.progress-label {
  font-size: 0.8rem;
  color: var(--text-body);
  text-align: center;
}

/* Achievement Indicator */
.achievement-indicator {
  margin-top: 1rem;
}

.achievement-bar {
  position: relative;
  width: 100%;
  height: 12px;
  background: #e5e7eb;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.target-line {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: #f59e0b;
  border-radius: 1px;
}

.achievement-fill {
  height: 100%;
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
  border-radius: 6px;
  transition: width 1s ease;
}

.achievement-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.target-label {
  color: #f59e0b;
  font-weight: 500;
}

.achieved-label {
  color: #16a34a;
  font-weight: 600;
}

/* Progress Summary */
.progress-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.summary-item:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.summary-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-icon.improvement {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.summary-icon.growth {
  background: rgba(107, 174, 14, 0.1);
  color: var(--primary);
}

.summary-icon.compliance {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.summary-icon.consent {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.summary-icon.standard {
  background: rgba(107, 174, 14, 0.1);
  color: var(--primary);
}

.summary-icon.timeline {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

/* Coming Soon Indicator for North America Food Safety */
.coming-soon-indicator {
  margin-top: 1rem;
}

.coming-soon-bar {
  position: relative;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.coming-soon-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: coming-soon-shimmer 2s ease-in-out infinite;
}

.coming-soon-pulse {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  border-radius: 6px;
  animation: coming-soon-pulse 2s ease-in-out infinite;
}

@keyframes coming-soon-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes coming-soon-pulse {
  0% { transform: translateX(-20px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(calc(100vw - 20px)); opacity: 0; }
}

.coming-soon-labels {
  display: flex;
  justify-content: center;
  font-size: 0.75rem;
}

.coming-soon-label {
  color: #3b82f6;
  font-weight: 600;
  text-align: center;
}

.metric-display .metric-value.target {
  color: #3b82f6;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Impactful Code of Conduct Design */
.impact-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  box-shadow: none;
}

.impact-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.achievement-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.achievement-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

.achievement-circle {
  position: relative;
  flex-shrink: 0;
}

.circle-progress {
  position: relative;
  width: 120px;
  height: 120px;
}

.circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  stroke: #e5e7eb;
}

.circle-fill {
  stroke: #16a34a;
  stroke-dasharray: 314;
  stroke-dashoffset: 12.56;
  transition: stroke-dashoffset 1s ease-in-out;
  animation: circle-fill 2s ease-out;
}

@keyframes circle-fill {
  from { stroke-dashoffset: 314; }
  to { stroke-dashoffset: 12.56; }
}

.circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.circle-value {
  font-size: 2rem;
  font-weight: 700;
  color: #16a34a;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.circle-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.achievement-details h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.achievement-details p {
  margin: 0 0 1rem 0;
  color: var(--text-body);
  line-height: 1.5;
}

.target-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.target-label {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
}

.achievement-arrow {
  font-size: 1.2rem;
  color: #16a34a;
  font-weight: 700;
}

.achievement-label {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 700;
}

.achievement-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zero-violations {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  border-radius: 16px;
  color: white;
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
  position: relative;
  overflow: hidden;
}

.zero-violations::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.zero-icon {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.zero-content {
  position: relative;
  z-index: 1;
}

.zero-value {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.zero-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zero-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

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

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.metric-item:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: rgba(22, 163, 74, 0.2);
}

.metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.metric-desc {
  font-size: 0.75rem;
  color: var(--text-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Responsive Design for Impactful Code of Conduct */
@media (max-width: 768px) {
  .achievement-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .achievement-main {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .impact-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .circle-progress {
    width: 100px;
    height: 100px;
  }
  
  .circle-value {
    font-size: 1.5rem;
  }
  
  .zero-value {
    font-size: 2.5rem;
  }
}

.summary-content {
  flex: 1;
}

.summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.summary-label {
  font-size: 0.8rem;
  color: var(--text-body);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .performance-overview {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .progress-summary {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .summary-item {
    padding: 0.75rem;
  }
  
  .metric-display .metric-value {
    font-size: 2rem;
  }
}

/* Euroland attribution — bottom right */
.csrd-euroland-footer {
  position: static;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 1.25rem;
  box-sizing: border-box;
  text-align: right;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-light);
}

.csrd-euroland-footer .EurolandTools-CSRDReport-SuppliedBy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.csrd-euroland-footer .csrd-euroland-suppliedby-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  white-space: nowrap;
}

.csrd-euroland-footer .EurolandTools-CSRDReport-Link {
  color: var(--primary);
  text-decoration: none;
}

.csrd-euroland-footer .EurolandTools-CSRDReport-Link:hover,
.csrd-euroland-footer .EurolandTools-CSRDReport-Link:focus-visible {
  text-decoration: underline;
}

.csrd-euroland-footer .EurolandTools-CSRDReport-Link img {
  vertical-align: middle;
  display: inline-block;
}

.csrd-euroland-footer .EurolandTools-CSRDReport-Disclaimer {
  font-size: 0.72rem;
  display: block;
}

.csrd-euroland-footer .EurolandTools-CSRDReport-Disclaimer a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.csrd-euroland-footer .EurolandTools-CSRDReport-Disclaimer-CookiePolicyContainer::before {
  content: " | ";
  color: currentColor;
}

