@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap");


/* ==========================================
   DESIGN VARIABLES
========================================== */

:root {
  --ge-blue: #3B73B9;
  --ge-dark-blue: #003b66;
  --ge-light-blue: #e8f4fb;

  --text-dark: #20252b;
  --text-medium: #59636e;
  --text-light: #ffffff;

  --background: #ffffff;
  --background-light: #f5f7f9;

  --border: #dce1e5;
  --border-strong: #bdc7cf;

  --shadow:
    0 5px 18px rgba(0, 0, 0, 0.08);

  --shadow-hover:
    0 12px 28px rgba(0, 0, 0, 0.14);

  --max-width: 1320px;
}


/* ==========================================
   GLOBAL
========================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--background);
  line-height: 1.5;
}

button,
a {
  font-family: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(59, 115, 185, 0.35);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
}

.hidden {
  display: none !important;
}


/* ==========================================
   HEADER
========================================== */

.top-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
}

.brand-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 220px;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.brand-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

.brand-area {
  color: var(--ge-dark-blue);
  font-size: 18px;
  font-weight: 600;
}


/* ==========================================
   LIVE DATE AND TIME
========================================== */

.live-date-time {
  text-align: right;
  color: var(--text-medium);
  line-height: 1.25;
}

.live-date {
  font-size: 14px;
  font-weight: 500;
}

.live-time {
  margin-top: 3px;
  color: var(--ge-dark-blue);
  font-size: 18px;
  font-weight: 600;
}


/* ==========================================
   HERO
========================================== */

.hero {
  width: 100%;
  max-width: none;
  margin: 28px 0 0;
  overflow: hidden;
  background: #3B73B9;
  display: block;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ge-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
}







/* ==========================================
   BREADCRUMBS
========================================== */

.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-link {
  border: none;
  background: none;
  padding: 0;
  color: var(--ge-blue);
  font-weight: 600;
  cursor: pointer;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-chevron {
  color: #9099a2;
}

.breadcrumb-current {
  color: var(--text-medium);
  font-weight: 500;
}




/* ==========================================
   SITE SEARCH
========================================== */

.site-search {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 0 0;
}

.site-search-inner {
  padding: 24px 26px;
  background: var(--background-light);
  border: 1px solid var(--border);
  border-left: 5px solid var(--ge-blue);
}

.search-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ge-dark-blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.search-input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #aebbc6;
  border-radius: 3px;
  background: #ffffff;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 17px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-input::placeholder {
  color: #7c8790;
}

.search-input:focus {
  outline: none;
  border-color: var(--ge-blue);
  box-shadow: 0 0 0 3px rgba(59, 115, 185, 0.16);
}

.search-helper {
  margin: 10px 0 0;
  color: var(--text-medium);
  font-size: 13px;
  line-height: 1.45;
}

.search-helper em {
  color: #6d7780;
}


/* ==========================================
   SEARCH RESULTS
========================================== */

.search-results-view {
  animation: fadeIn 0.2s ease;
}

.search-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.search-results-header h2 {
  margin: 0;
  color: var(--ge-dark-blue);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.search-results-header h2 span {
  color: var(--text-dark);
}

.search-results-count {
  margin: 0;
  color: var(--text-medium);
  font-size: 14px;
  white-space: nowrap;
}

.search-results-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.search-result-card {
  --resource-accent: var(--ge-blue);
  --resource-accent-dark: var(--ge-dark-blue);
  --resource-tint: var(--ge-light-blue);

  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--resource-accent);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.search-result-card.type-video {
  --resource-accent: #3B73B9;
  --resource-accent-dark: #003b66;
  --resource-tint: #e8f4fb;
}

.search-result-card.type-pdf {
  --resource-accent: #b42318;
  --resource-accent-dark: #7a271a;
  --resource-tint: #fef3f2;
}

.search-result-card.type-presentation {
  --resource-accent: #6941c6;
  --resource-accent-dark: #42307d;
  --resource-tint: #f4f3ff;
}

.search-result-card.type-job-aid {
  --resource-accent: #027a48;
  --resource-accent-dark: #05603a;
  --resource-tint: #ecfdf3;
}

.search-result-card.type-quick-reference {
  --resource-accent: #b54708;
  --resource-accent-dark: #7a2e0e;
  --resource-tint: #fffaeb;
}

.search-result-card.type-other {
  --resource-accent: #667085;
  --resource-accent-dark: #344054;
  --resource-tint: #f2f4f7;
}

.search-result-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.search-result-category {
  color: var(--ge-dark-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.search-result-type {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--resource-accent-dark);
  background: var(--resource-tint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.search-result-card h3 {
  margin: 0 0 9px;
  color: var(--ge-dark-blue);
  font-size: 21px;
  line-height: 1.2;
}

.search-result-location {
  margin: 0 0 13px;
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 600;
}

.search-result-description {
  margin: 0 0 14px;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.45;
}

.search-match-context {
  margin: 0 0 20px;
  padding: 10px 12px;
  background: var(--resource-tint);
  border-left: 3px solid var(--resource-accent);
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.4;
}

.search-match-context strong {
  color: var(--resource-accent-dark);
}

.search-result-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 15px;
  border: 2px solid var(--resource-accent);
  border-radius: 2px;
  background: var(--resource-accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.search-result-action:hover {
  background: var(--resource-accent-dark);
  border-color: var(--resource-accent-dark);
  transform: translateY(-2px);
}

.search-result-action.is-disabled {
  cursor: default;
  border-color: #aeb7bf;
  background: #aeb7bf;
}

.search-result-action.is-disabled:hover {
  transform: none;
  border-color: #aeb7bf;
  background: #aeb7bf;
}

.search-empty-state {
  grid-column: 1 / -1;
  padding: 44px 30px;
  border: 1px dashed var(--border-strong);
  background: var(--background-light);
  text-align: center;
}

.search-empty-state h3 {
  margin: 0 0 8px;
  color: var(--ge-dark-blue);
  font-size: 22px;
}

.search-empty-state p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-medium);
}


/* ==========================================
   MAIN
========================================== */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 55px 0 80px;
}

.section-heading,
.category-view-header,
.month-view-header {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading h2,
.category-view-header h2,
.month-view-header h2 {
  margin: 0 0 12px;
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.1;
}

.section-heading p:not(.eyebrow),
.category-view-header p:not(.eyebrow),
.month-view-header p:not(.eyebrow) {
  color: var(--text-medium);
  font-size: 17px;
}

.category-view,
.month-view {
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.back-button {
  margin-bottom: 35px;
  border: none;
  background: none;
  padding: 0;
  color: var(--ge-blue);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.back-button:hover {
  text-decoration: underline;
}


/* ==========================================
   CATEGORY CARDS
========================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  min-height: 175px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--ge-blue);
  background: #ffffff;
  padding: 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 0;
  height: 5px;
  background: var(--ge-dark-blue);
  transition: width 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #b9c7d2;
  border-top-color: var(--ge-blue);
  box-shadow: var(--shadow-hover);
}

.category-card:hover::before {
  width: 100%;
}

.category-content {
  width: 100%;
}

.category-content h3 {
  margin: 0 0 26px;
  color: var(--ge-dark-blue);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ge-blue);
  font-size: 15px;
  font-weight: 600;
}

.card-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
  transition:
    transform 0.2s ease,
    font-size 0.2s ease;
}

.category-card:hover .card-link .arrow {
  transform: translateX(7px);
  font-size: 22px;
}


/* ==========================================
   SHARED LIBRARY SUMMARY
========================================== */

.library-summary {
  margin-bottom: 36px;
  padding: 22px 24px;
  background: var(--background-light);
  border-left: 5px solid var(--ge-blue);
}

.library-summary p {
  margin: 0;
  color: var(--text-medium);
}


/* ==========================================
   SDS MONTHLY CALL ACCESS
========================================== */

.sds-meeting-panel {
  margin-bottom: 24px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--ge-blue);
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.sds-meeting-info {
  min-width: 0;
}

.sds-meeting-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ge-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.sds-meeting-info h3 {
  margin: 0 0 6px;
  color: var(--ge-dark-blue);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 600;
}

.sds-meeting-info p {
  margin: 0;
  color: var(--text-medium);
  font-size: 15px;
  font-weight: 500;
}

.sds-meeting-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.sds-meeting-button {
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--ge-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.sds-meeting-button:hover {
  transform: translateY(-1px);
}

.sds-meeting-button.is-primary {
  background: var(--ge-blue);
  color: #ffffff;
}

.sds-meeting-button.is-primary:hover {
  background: var(--ge-dark-blue);
  border-color: var(--ge-dark-blue);
}

.sds-meeting-button.is-secondary {
  background: #ffffff;
  color: var(--ge-blue);
}

.sds-meeting-button.is-secondary:hover {
  background: var(--ge-light-blue);
  border-color: var(--ge-dark-blue);
  color: var(--ge-dark-blue);
}


/* ==========================================
   MONTH LIBRARY
========================================== */

.year-section + .year-section {
  margin-top: 48px;
}

.year-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
}

.year-heading h3 {
  margin: 0;
  color: var(--ge-dark-blue);
  font-size: 26px;
}

.year-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.month-card {
  min-height: 330px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--ge-blue);
  background: #ffffff;
  padding: 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

button.month-card {
  cursor: pointer;
}

button.month-card:hover {
  transform: translateY(-4px);
  border-color: #aebdca;
  border-left-color: var(--ge-dark-blue);
  box-shadow: var(--shadow-hover);
}

.month-name {
  display: block;
  color: var(--ge-dark-blue);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 600;
}

.month-meta {
  display: block;
  margin-top: 8px;
  color: var(--text-medium);
  font-size: 13px;
}

.month-card-main {
  width: 100%;
}

.month-topics {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.month-topics-label {
  display: block;
  margin-bottom: 9px;
  color: var(--ge-dark-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.month-topic-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-medium);
  font-size: 13px;
  line-height: 1.35;
}

.month-topic-list li {
  margin-bottom: 6px;
}

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

.month-topics-empty {
  margin: 0;
  color: var(--text-medium);
  font-size: 13px;
  font-style: italic;
}

.month-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: var(--ge-blue);
  font-size: 14px;
  font-weight: 600;
}

.month-card-link .arrow {
  transition: transform 0.2s ease;
}

button.month-card:hover .month-card-link .arrow {
  transform: translateX(5px);
}

.month-card.is-coming-soon {
  border-left-color: #aeb7bf;
  background: var(--background-light);
  box-shadow: none;
  cursor: not-allowed;
}

.month-card.is-coming-soon .month-name {
  color: #65717b;
}

.coming-soon-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  padding: 5px 9px;
  border: 1px solid #c7cfd5;
  border-radius: 999px;
  color: #65717b;
  background: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}


/* ==========================================
   OPERATIONS MANUAL CHAPTER LIBRARY
========================================== */

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.chapter-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--ge-blue);
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

a.chapter-card {
  cursor: pointer;
}

a.chapter-card:hover {
  transform: translateY(-5px);
  border-color: #b6c4cf;
  border-top-color: var(--ge-dark-blue);
  box-shadow: var(--shadow-hover);
}

.chapter-card.is-development {
  border-top-color: #aeb7bf;
  background: var(--background-light);
  box-shadow: none;
}

.chapter-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.chapter-number {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--ge-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.chapter-status {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ge-light-blue);
  color: var(--ge-dark-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.chapter-card.is-development .chapter-status {
  border: 1px solid #c7cfd5;
  background: #ffffff;
  color: #65717b;
}

.chapter-card h3 {
  margin: 0 0 14px;
  color: var(--ge-dark-blue);
  font-size: 24px;
  line-height: 1.2;
}

.chapter-description {
  margin: 0 0 24px;
  color: var(--text-medium);
  font-size: 15px;
}

.chapter-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--ge-blue);
  font-size: 15px;
  font-weight: 600;
}

.chapter-action .arrow {
  transition: transform 0.2s ease;
}

a.chapter-card:hover .chapter-action .arrow {
  transform: translateX(5px);
}

.chapter-development-note {
  margin-top: auto;
  color: #737d86;
  font-size: 13px;
  font-weight: 600;
}


/* ==========================================
   BODEWELL DELIVERY NOTE
========================================== */

.bodewell-manual-note {
  margin: 0 0 42px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ge-light-blue);
  border-left: 5px solid var(--ge-blue);
}

.bodewell-manual-note-content {
  max-width: 820px;
}

.bodewell-manual-note-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ge-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.bodewell-manual-note h3 {
  margin: 0 0 8px;
  color: var(--ge-dark-blue);
  font-size: 22px;
  line-height: 1.2;
}

.bodewell-manual-note p {
  margin: 0;
  color: var(--text-medium);
  font-size: 15px;
}

.bodewell-manual-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  color: #ffffff;
  background: var(--resource-accent);
  border: 2px solid var(--resource-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.bodewell-manual-link:hover {
  background: var(--resource-accent-dark);
  border-color: var(--resource-accent-dark);
  transform: translateY(-2px);
}

.bodewell-manual-link .arrow {
  transition: transform 0.2s ease;
}

.bodewell-manual-link:hover .arrow {
  transform: translateX(4px);
}


/* ==========================================
   DAMAGE & REVERSE LOGISTICS NOTE
========================================== */

.damage-manual-note {
  margin: 0 0 42px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ge-light-blue);
  border-left: 5px solid var(--ge-blue);
}

.damage-manual-note-content {
  max-width: 820px;
}

.damage-manual-note-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ge-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.damage-manual-note h3 {
  margin: 0 0 8px;
  color: var(--ge-dark-blue);
  font-size: 22px;
  line-height: 1.2;
}

.damage-manual-note p {
  margin: 0;
  color: var(--text-medium);
  font-size: 15px;
}

.damage-manual-status {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid #c7cfd5;
  border-radius: 999px;
  color: #65717b;
  background: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}


/* ==========================================
   MONTH DETAIL / TOPICS
========================================== */

.topics-panel {
  margin: 0 0 42px;
  padding: 28px 30px;
  background: var(--ge-light-blue);
  border-left: 5px solid var(--ge-blue);
}

.topics-panel h3 {
  margin: 0 0 16px;
  color: var(--ge-dark-blue);
  font-size: 21px;
}

.topics-list {
  margin: 0;
  padding-left: 21px;
  columns: 2;
  column-gap: 50px;
}

.topics-list li {
  margin: 0 0 9px;
  break-inside: avoid;
  color: var(--text-dark);
}

.resource-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.resource-section-heading h3 {
  margin: 0;
  color: var(--ge-dark-blue);
  font-size: 27px;
}

.resource-section-heading p {
  margin: 0;
  color: var(--text-medium);
  font-size: 14px;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.resource-card {
  --resource-accent: var(--ge-blue);
  --resource-accent-dark: var(--ge-dark-blue);
  --resource-tint: var(--ge-light-blue);

  position: relative;
  min-height: 245px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--resource-accent);
  background: #ffffff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

/* Resource type color system */
.resource-card.type-video {
  --resource-accent: #3B73B9;
  --resource-accent-dark: #003b66;
  --resource-tint: #e8f4fb;
}

.resource-card.type-pdf {
  --resource-accent: #b42318;
  --resource-accent-dark: #7a271a;
  --resource-tint: #fef3f2;
}

.resource-card.type-presentation {
  --resource-accent: #6941c6;
  --resource-accent-dark: #42307d;
  --resource-tint: #f4f3ff;
}

.resource-card.type-job-aid {
  --resource-accent: #027a48;
  --resource-accent-dark: #05603a;
  --resource-tint: #ecfdf3;
}

.resource-card.type-quick-reference {
  --resource-accent: #b54708;
  --resource-accent-dark: #7a2e0e;
  --resource-tint: #fffaeb;
}

.resource-card.type-other {
  --resource-accent: #667085;
  --resource-accent-dark: #344054;
  --resource-tint: #f2f4f7;
}

.resource-type-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--resource-accent-dark);
  background: var(--resource-tint);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
}

.resource-card h4 {
  margin: 20px 0 10px;
  color: var(--ge-dark-blue);
  font-size: 23px;
  line-height: 1.2;
}

.resource-card-description {
  margin: 0 0 26px;
  color: var(--text-medium);
  font-size: 15px;
}

.resource-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 17px;
  color: #ffffff;
  background: var(--ge-blue);
  border: 2px solid var(--ge-blue);
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.resource-action:hover {
  background: var(--ge-dark-blue);
  border-color: var(--ge-dark-blue);
  transform: translateY(-2px);
}

.resource-action .arrow {
  transition: transform 0.2s ease;
}

.resource-action:hover .arrow {
  transform: translateX(4px);
}

.resource-open-note {
  margin: 12px 0 0;
  color: #747e87;
  font-size: 12px;
}


/* ==========================================
   PLACEHOLDER FOR FUTURE CATEGORIES
========================================== */

.resource-placeholder {
  padding: 48px 34px;
  background: var(--background-light);
  border: 1px dashed var(--border-strong);
  border-top: 5px solid var(--ge-blue);
}

.resource-placeholder h3 {
  margin: 0 0 10px;
  color: var(--ge-dark-blue);
  font-size: 23px;
}

.resource-placeholder p {
  max-width: 690px;
  margin: 0;
  color: var(--text-medium);
}


/* ==========================================
   FOOTER
========================================== */

footer {
  background: #3B73B9;
  border-top: none;
  padding: 18px 32px;
}

.footer-content,
.legal {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-content strong {
  color: #ffffff;
  font-size: 18px;
}

.footer-content p {
  max-width: none;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.90);
  white-space: nowrap;
}

.footer-content > div:first-child {
  flex: 1;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.90);
  font-size: 14px;
  white-space: nowrap;
}

.contact-admin {
  max-width: var(--max-width);
  margin: 12px auto 0;
  text-align: center;
  color: #ffffff;
}

.contact-admin strong {
  font-size: 15px;
}

.contact-admin p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.90);
}

.contact-admin a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.contact-admin a:hover {
  text-decoration-thickness: 2px;
}

.legal {
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  text-align: center;
}

.legal p {
  margin: 6px 0;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {
  .month-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .site-search,
  .breadcrumbs,
  main {
    margin-left: 24px;
    margin-right: 24px;
  }


  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .search-results-list {
    grid-template-columns: 1fr;
  }

  .search-results-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .bodewell-manual-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .sds-meeting-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .sds-meeting-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .month-grid,
  .resource-list,
  .chapter-grid {
    grid-template-columns: 1fr;
  }

  .topics-list {
    columns: 1;
  }
}

@media (max-width: 650px) {
  .site-search,

  .site-search-inner {
    padding: 20px;
  }

  .search-input {
    height: 50px;
    font-size: 16px;
  }

  .top-header {
    padding: 12px 18px;
  }

  .brand-row {
    align-items: flex-start;
  }

  .brand-logo {
    width: 125px;
  }

  .brand-area {
    font-size: 16px;
  }

  .live-date {
    font-size: 12px;
  }

  .live-time {
    font-size: 16px;
  }

  .breadcrumbs,
  main {
    margin-left: 18px;
    margin-right: 18px;
  }


  .category-grid,
  .month-grid,
  .resource-list,
  .chapter-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 160px;
  }

  .resource-section-heading,
  .footer-content,
  .damage-manual-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .sds-meeting-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sds-meeting-button {
    width: 100%;
  }

  .footer-meta {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .brand-divider,
  .brand-area {
    display: none;
  }

  .live-date-time {
    max-width: 150px;
  }

}
