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


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

:root {
  --ge-blue: #0067b1;
  --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(0, 103, 177, 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: 155px;
  max-height: 46px;
  object-fit: contain;
}

.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 {
  max-width: var(--max-width);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 330px;
  overflow: hidden;
  background: var(--ge-dark-blue);
}

.hero-content {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-light);
}

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

.hero .eyebrow {
  color: #8fd2ff;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  font-weight: 700;
}

.hero-description {
  max-width: 530px;
  margin: 0;
  font-size: 18px;
  opacity: 0.92;
}

.hero-image {
  min-height: 330px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* ==========================================
   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;
}


/* ==========================================
   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);
}


/* ==========================================
   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: 142px;
  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-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  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(--ge-blue);
  border: 2px solid var(--ge-blue);
  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(--ge-dark-blue);
  border-color: var(--ge-dark-blue);
  transform: translateY(-2px);
}

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

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


/* ==========================================
   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 {
  position: relative;
  min-height: 245px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--ge-blue);
  background: #ffffff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.resource-type-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--ge-dark-blue);
  background: var(--ge-light-blue);
  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: var(--background-light);
  border-top: 1px solid var(--border);
  padding: 42px 32px;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.footer-content strong {
  color: var(--ge-dark-blue);
  font-size: 18px;
}

.footer-content p {
  max-width: 650px;
  margin: 6px 0 0;
  color: var(--text-medium);
}

.footer-meta {
  color: var(--text-medium);
  font-size: 14px;
  white-space: nowrap;
}

.legal {
  padding-top: 25px;
  color: #707982;
  font-size: 12px;
}

.legal p {
  margin: 6px 0;
}


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

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

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

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

  .hero-image {
    height: 260px;
  }

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

@media (max-width: 760px) {
  .bodewell-manual-note {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .topics-list {
    columns: 1;
  }
}

@media (max-width: 650px) {
  .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;
  }

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

  .hero-content {
    padding: 38px 28px;
  }

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

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

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

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

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

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

  .hero h1 {
    font-size: 39px;
  }
}
