body, h1, p {
  color: #fff;
}
body h1 a, h1 h1 a, p h1 a {
  text-decoration: none;
  color: #fff;
}

body {
  background-color: #294d58 !important;
  padding: 0;
  margin: 0;
  font-family: "Century Gothic", sans-serif;
}

.floorplan-title {
  width: 100%;
  padding: 10px;
  text-align: center;
}

.floorplan_container h1 {
  color: #2E2F30;
}
.floorplan_container {
  width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #2E2F30;
  min-height: calc(100vh - 160px);
}

.contribution-chip {
  display: none;
  position: absolute;
  top: 56px;
  left: 12px;
  z-index: 10002;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #2e2f30;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.contribution-chip--preview {
  font-style: italic;
}

.floorplan-image-container {
  width: auto;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding-top: var(--ruler-height, 0px);
  box-sizing: border-box;
}
.floorplan-image-container .floorplan-figure {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 160px);
  display: grid;
  justify-items: start;
  align-items: center;
}
.floorplan-image-container img {
  z-index: 9900;
  width: 100%;
  height: auto;
  display: block;
}

.floorplan-figure img {
  grid-area: 1/1;
  justify-self: start;
  align-self: center;
}

.floorplan-preview-layer {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  background: #ffffff;
  align-items: center;
  justify-content: flex-start;
  z-index: 5000;
}

.floorplan-preview {
  z-index: 5001;
  display: block;
}

.floorplan-layer {
  grid-area: 1/1;
  justify-self: start;
  align-self: center;
  display: none;
  overflow: hidden;
  background: #ffffff;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.floorplan-layer-image {
  display: block;
  z-index: 1;
}

.layer-length-marker-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1b1c1d;
  transform: translateX(-1px);
  z-index: 3;
  pointer-events: none;
}

.layer-length-marker-label {
  position: absolute;
  top: 80px;
  transform: translateX(8px);
  font-size: 18px;
  font-weight: 600;
  color: #1b1c1d;
  white-space: nowrap;
  z-index: 4;
  pointer-events: none;
}

.ruler-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10000;
  --ruler-height: 48px;
  --left-buffer-px: 0px;
}

.ruler-vertical-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10001;
  --ruler-height: 48px;
  display: none;
}

.crosshair-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9999;
  visibility: hidden;
  --crosshair-x: 0px;
  --crosshair-y: 0px;
}
.crosshair-overlay.is-visible {
  visibility: visible;
}
.crosshair-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--crosshair-y);
  height: 1px;
  background: rgba(27, 28, 29, 0.12);
  transform: translateY(-50%);
}
.crosshair-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--crosshair-x);
  width: 1px;
  background: rgba(27, 28, 29, 0.12);
  transform: translateX(-50%);
}

.floorplan-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10002;
}

.floorplan-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  margin-left: -10px;
  pointer-events: auto;
  cursor: ew-resize;
}
.floorplan-marker__line {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 4px;
  margin-left: -2px;
  background: #001f3f;
  z-index: 1;
  pointer-events: none;
}
.floorplan-marker__remove {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #145e7d;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #145e7d;
  border-radius: 4px;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}
.floorplan-marker__remove:hover {
  background: #145e7d;
  color: #fff;
}

.floorplan-idle-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  padding: 8px 12px;
  font-size: 13px;
  color: #2e2f30;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(27, 28, 29, 0.15);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  z-index: 10003;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.floorplan-idle-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}

.ruler-band {
  position: absolute;
  top: 0;
  height: var(--ruler-height);
  background: rgba(28, 32, 36, 0.08);
  z-index: 0;
}

.ruler-band--alt {
  background: rgba(28, 32, 36, 0.16);
}

.ruler-sub-band {
  position: absolute;
  top: 0;
  height: calc(var(--ruler-height) / 2);
  background: rgba(28, 32, 36, 0.12);
  z-index: 1;
}

.ruler-sub-band--alt {
  background: rgba(28, 32, 36, 0.2);
}

.ruler-tick {
  position: absolute;
  top: 0;
  width: 1px;
  height: calc(var(--ruler-height) * 0.55);
  background: #2e2f30;
  z-index: 2;
}

.ruler-tick--major {
  height: calc(var(--ruler-height) * 0.55);
  background: #1b1c1d;
  z-index: 3;
}

.ruler-label {
  position: absolute;
  top: calc(var(--ruler-height) * 0.65);
  left: -10px;
  font-size: 11px;
  color: #2e2f30;
  white-space: nowrap;
}

.length-marker-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1b1c1d;
  transform: translateX(-1px);
  z-index: 4;
  display: none;
}

.length-marker-label {
  position: absolute;
  top: 80px;
  transform: translateX(8px);
  font-size: 18px;
  font-weight: 600;
  color: #1b1c1d;
  white-space: nowrap;
  z-index: 5;
  display: none;
}

.ruler-v-band {
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(28, 32, 36, 0.08);
  z-index: 0;
}

.ruler-v-band--alt {
  background: rgba(28, 32, 36, 0.16);
}

.ruler-v-sub-band {
  position: absolute;
  left: 0;
  width: 50%;
  background: rgba(28, 32, 36, 0.12);
  z-index: 1;
}

.ruler-v-sub-band--alt {
  background: rgba(28, 32, 36, 0.2);
}

.ruler-v-tick {
  position: absolute;
  left: 0;
  height: 1px;
  width: 60%;
  background: #2e2f30;
  z-index: 2;
}

.ruler-v-tick--major {
  width: 60%;
  background: #1b1c1d;
  z-index: 3;
}

.ruler-v-label {
  position: absolute;
  font-size: 11px;
  color: #2e2f30;
  white-space: nowrap;
  text-align: right;
  transform: translateY(-50%);
  display: none;
}

.preview {
  font-style: italic;
  font-size: 14px;
  color: #a0a0a0;
}

.welcome-text {
  z-index: 10;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  vertical-align: bottom;
}

.floorplan-controls {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.zoom-controls,
.units-toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 28, 29, 0.2);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  color: #1b1c1d;
  width: fit-content;
}

.zoom-controls__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  color: #3a3b3c;
  text-align: center;
  width: 100%;
}

.zoom-controls__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zoom-controls__button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(27, 28, 29, 0.2);
  border-radius: 6px;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: #1b1c1d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-controls__button:hover:not(:disabled) {
  background: rgba(20, 94, 125, 0.1);
  border-color: #145e7d;
  color: #145e7d;
}
.zoom-controls__button:disabled {
  opacity: 0.4;
  cursor: default;
}

.zoom-controls__value {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
}

.units-toggle__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  color: #3a3b3c;
  text-align: center;
  width: 100%;
}

.units-toggle__segmented {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(27, 28, 29, 0.2);
  overflow: hidden;
}

.units-toggle__button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 12px;
  color: #1b1c1d;
  cursor: pointer;
}

.units-toggle__button.is-active {
  background: #145e7d;
  color: #f9fafb;
}

.compare-container {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 10px;
  border-bottom: solid 1px #65BDC0;
}

.cookie-consent-link-wrap {
  margin-top: 12px;
  display: block;
}

.cookie-consent-link {
  font-size: 12px;
  color: #6b7280;
  text-decoration: none;
}
.cookie-consent-link:hover {
  color: #145e7d;
  text-decoration: underline;
}

.action-container {
  display: none;
  padding-left: 0px;
  margin-top: -1px;
  margin-bottom: 1px;
}
.action-container .action {
  font-size: 12px;
  padding: 0 3px;
  cursor: pointer;
}
.action-container .action-selected {
  font-weight: bold;
  color: #00474f;
}

.action.move-floorplan-up,
.action.move-floorplan-down,
.action.remove-floorplan {
  font-size: 12px;
  color: #145e7d;
}

.action.is-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

ul.compare-list {
  margin: 0;
  padding: 0;
  padding-top: 2px;
  padding-bottom: 4px;
}
ul.compare-list li {
  padding: 5px 3px;
  padding-left: 0;
  font-size: 15px;
  list-style: none;
  display: inline-block;
  width: 100%;
}
ul.compare-list li .cabin-layout {
  font-size: 12px;
  color: #434546;
}

.compare-list li:not(:last-child) {
  border-bottom: 1px solid rgba(101, 189, 192, 0.35);
  padding-bottom: 3px;
  margin-bottom: 3px;
}

.opacity-control {
  margin-top: 1px;
  margin-bottom: 1px;
  font-size: 11px;
  color: #434546;
}

.opacity-label {
  margin-bottom: 4px;
}

.opacity-slider,
.opacity-value {
  vertical-align: middle;
}

.opacity-slider {
  width: 160px;
  accent-color: #145e7d;
}

.compare-list li.is-visible .compare-model-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  margin-bottom: 1px;
  vertical-align: middle;
  border-radius: 50%;
  background: #2a7a55;
}

.compare-list li.is-hidden {
  opacity: 0.5;
}
.compare-list li.is-hidden .compare-model-label {
  color: #7a9ea5;
}
.compare-list li.is-hidden .compare-model-status--hidden {
  font-size: 11px;
  color: #7a9ea5;
  font-style: italic;
}

.compare-model-status {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

.floorplan-list-container .list .floorplan-listitem.is-active {
  background-color: rgba(237, 122, 39, 0.15);
  border-radius: 6px;
}

.disabled {
  opacity: 0.4;
  filter: alpha(opacity=40); /* For IE8 and earlier */
  font-style: italic;
}

.model-listitem.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.model-listitem.is-disabled .floorplan-listitem {
  cursor: not-allowed;
}
.model-listitem {
  border-top: solid 1px rgba(141, 207, 210, 0.4901960784);
}

.model-name {
  font-weight: 600;
}

.floorplan-sublist {
  margin: 0;
  padding: 0;
  padding-left: 12px;
  list-style: none;
}

.floorplan-sublist .floorplan-listitem {
  font-size: 13px;
  color: #434546;
  border-bottom: 1px solid rgba(101, 189, 192, 0.2);
  box-sizing: border-box;
}
.floorplan-sublist .floorplan-listitem:last-child {
  border-bottom: none;
}
.floorplan-sublist .floorplan-listitem:hover {
  background-color: rgba(155, 228, 255, 0.55);
}

.compare-model-item .compare-model-label {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.compare-fp-list {
  margin: 4px 0 4px 4px;
  padding: 0;
  list-style: none;
}

.compare-fp-item {
  padding: 2px 0 2px 8px;
  margin-bottom: 0px;
}
.compare-fp-item:last-child {
  margin-bottom: 0;
}
.compare-fp-item.is-hidden {
  opacity: 0.5;
}
.compare-fp-item.is-hidden .compare-fp-title {
  color: #7a9ea5;
}
.compare-fp-item.is-hidden .opacity-control {
  color: #7a9ea5;
}

.compare-fp-title {
  font-size: 13px;
  font-weight: 500;
  color: #2e2f30;
  display: block;
  margin-bottom: 1px;
}

.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}

#clear-filter {
  font-size: 12px;
  cursor: pointer;
}

.boat-request-trigger {
  font-size: 13px;
  color: #145e7d;
  text-decoration: none;
}
.boat-request-trigger:hover {
  text-decoration: underline;
}

.floorplan-list-container h1 {
  font-size: 25px;
  margin: 0;
  margin-bottom: 18px;
}
.floorplan-list-container ul.list {
  height: 600px;
  overflow: scroll;
  margin: 0;
  padding: 0;
  padding-top: 10px;
  border-bottom: solid 1px #ccc;
}
.floorplan-list-container ul.list li {
  padding: 5px 3px;
  padding-left: 0;
  font-size: 15px;
  list-style: none;
  display: inline-block;
  width: 100%;
  cursor: pointer;
}
.floorplan-list-container ul.list li .cabin-layout {
  font-size: 12px;
  color: #434546;
}
.floorplan-list-container ul.list li:hover {
  background-color: rgba(179, 227, 245, 0.4078431373);
}
.floorplan-list-container {
  float: left;
  width: 220px;
  padding: 15px;
  padding-top: 0;
  height: 100%;
  border-right: solid 1px #1e5558;
}

.content-tabs {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 0 12px;
  border-bottom: 2px solid #1e5558;
  background-color: #fff;
  margin-left: 220px;
}

.content-tab {
  padding: 8px 20px;
  font-family: "Century Gothic", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #5a7a80;
  background: #eef6f8;
  border: 1px solid #c3d8dc;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.02em;
}
.content-tab:hover {
  background: #d8eef3;
  color: #1e5558;
}
.content-tab.is-active {
  background: #fff;
  color: #1e5558;
  border-color: #1e5558;
  border-bottom-color: #fff;
  position: relative;
  bottom: -2px;
  z-index: 1;
}

.tab-panel {
  display: none;
  margin-left: 220px;
}
.tab-panel.is-active {
  display: block;
}

.tab-panel--specs {
  padding: 24px;
  min-height: calc(100vh - 200px);
  background: #fff;
  color: #2e2f30;
  overflow-x: auto;
}

.spec-comparison__empty {
  color: #7a9ea5;
  font-size: 14px;
  margin-top: 32px;
  text-align: center;
}

.spec-table {
  border-collapse: collapse;
  table-layout: fixed;
  font-family: "Century Gothic", sans-serif;
  font-size: 14px;
}
.spec-table th, .spec-table td {
  padding: 10px 16px;
  text-align: left;
  vertical-align: top;
}
.spec-table thead tr {
  border-bottom: 2px solid #1e5558;
}
.spec-table__label-col {
  width: 120px;
  min-width: 100px;
}
.spec-table__col {
  width: 150px;
  color: #2e2f30;
  font-weight: 600;
}
.spec-table__row {
  border-bottom: 1px solid #e4ecee;
}
.spec-table__row--alt {
  background-color: #f4fafb;
}
.spec-table__label {
  font-weight: 600;
  color: #1e5558;
  white-space: nowrap;
}
.spec-table__value {
  display: block;
  color: #2e2f30;
}
.spec-table__delta {
  display: block;
  font-size: 12px;
  margin-top: 3px;
}
.spec-table__delta--positive {
  color: #2a7a55;
}
.spec-table__delta--negative {
  color: #b03a2e;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(27, 28, 29, 0.96);
  color: #f9fafb;
  font-size: 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent-banner__text {
  margin: 10px 0;
}

.cookie-consent-banner__btn {
  padding: 8px 16px;
  background: #145e7d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-consent-banner__btn:hover {
  background: #1a7a9e;
}

.cookie-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 31000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}
.cookie-consent-modal--open {
  visibility: visible;
  opacity: 1;
}

.cookie-consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cookie-consent-modal__content {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.cookie-consent-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.cookie-consent-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1b1c1d;
}

.cookie-consent-modal__close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  border-radius: 6px;
}
.cookie-consent-modal__close:hover {
  background: #f3f4f6;
  color: #1b1c1d;
}

.cookie-consent-modal__body {
  padding: 16px 20px 20px;
}

.cookie-consent-modal__intro {
  margin: 0 0 20px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

.cookie-consent-option {
  margin-bottom: 12px;
}
.cookie-consent-option:last-child {
  margin-bottom: 0;
}

.cookie-consent-option__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #2e2f30;
  line-height: 1.5;
}

.cookie-consent-option__checkbox {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #145e7d;
}

.cookie-consent-option__text strong {
  color: #1b1c1d;
}

.cookie-consent-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 20px 20px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.cookie-consent-modal__btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}
.cookie-consent-modal__btn--primary {
  background: #145e7d;
  color: #fff;
  border-color: #145e7d;
}
.cookie-consent-modal__btn--primary:hover {
  background: #1a7a9e;
  border-color: #1a7a9e;
}
.cookie-consent-modal__btn--secondary {
  background: #fff;
  color: #2e2f30;
  border-color: #d1d5db;
}
.cookie-consent-modal__btn--secondary:hover {
  background: #f3f4f6;
}

.boat-request-modal__content {
  max-width: 480px;
}

.boat-request-form .cookie-consent-modal__body {
  padding-top: 8px;
}

.boat-request-field {
  margin-bottom: 16px;
}
.boat-request-field:last-of-type {
  margin-bottom: 0;
}

.boat-request-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1b1c1d;
  margin-bottom: 6px;
}

.boat-request-textarea,
.boat-request-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-sizing: border-box;
}
.boat-request-textarea:focus,
.boat-request-input:focus {
  outline: none;
  border-color: #145e7d;
}

.boat-request-textarea {
  resize: vertical;
  min-height: 80px;
}

.boat-request-error {
  margin: 12px 0 0;
  font-size: 14px;
  color: #b91c1c;
}

.boat-request-success p {
  margin: 0;
  font-size: 15px;
  color: #166534;
}

a {
  text-decoration: none;
  color: #005456;
}
a :visited {
  color: #607581;
}

.nav-container {
  width: 100%;
}
.nav-container a {
  cursor: pointer;
}
.nav-container {
  position: relative;
  /*width: 200px;*/
  min-height: 160px;
  margin: 0 auto;
  padding-top: 10px;
  vertical-align: middle;
  z-index: 1;
  background: no-repeat center;
  background-size: cover;
}

.nav-container-banner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f6f4ef;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.nav-container-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 32, 0.7), rgba(10, 24, 32, 0.35));
  z-index: 0;
}

.banner-inner {
  position: relative;
  z-index: 1;
  padding: 4px 22px;
  max-width: 880px;
  width: 100%;
}

.banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.banner-eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a9c0cf;
}

.banner-title {
  margin: 4px 0 0;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f9fafb;
  text-align: left;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-cta {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #145e7d;
  color: #f9fafb;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.banner-cta:hover {
  background: #145e64;
}

.banner-cta.banner-cta--ghost {
  background: transparent;
  border: 1px solid rgba(169, 192, 207, 0.7);
  color: #a9c0cf;
  padding: 8px 16px;
}

.banner-cta.banner-cta--ghost:hover {
  background: rgba(20, 94, 125, 0.15);
}

.banner-divider {
  width: 7rem;
  height: 4px;
  margin: 6px 0 6px 0;
  background-color: #ed7a27;
  border-radius: 15px;
  border: none;
}

.banner-container {
  z-index: 1000;
  text-align: center;
  background-color: rgba(0, 15, 30, 0.29);
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: -5px;
  width: 100%;
}
