/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&display=swap");

/* ABC Favorit Regular */
@font-face {
  font-family: "ABC Favorit";
  src:
    url("/assets/fonts/ABCFavorit-Regular-Trial.woff2") format("woff2"),
    url("/assets/fonts/ABCFavorit-Regular-Trial.woff") format("woff"),
    url("/assets/fonts/ABCFavorit-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* ABC Favorit Bold */
@font-face {
  font-family: "ABC Favorit";
  src: url("/assets/fonts/ABCFavorit-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* FilmProcessor Design System */
:root {
  --background-black: #000000;
  --heading-cyan: #00b9c7;
  --film-purple: #b40096;
  --title-white: #fffedc;
  --film-card-blue: #2563eb;
  --dcp-success: #22c55e;
  --film-gray-900: #111111;
  --film-gray-800: #1a1a1a;
  --film-gray-700: #2a2a2a;
  --field-gray: #333333;
  --film-gray-500: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--background-black);
  color: var(--title-white);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.15;
  overflow-x: hidden;
}

/* Header and dropdown menu styles moved to /styles/universal-menu.css */

/* Main Container */
.fp-container {
  padding: 0 150px 2rem 150px;
}

.page-title {
  font-family: "ABC Favorit", "Inter", sans-serif;
  font-size: 3.7rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--title-white);
  margin-bottom: 1rem;
  text-align: center;
}

.page-subtitle {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--heading-cyan);
  text-align: center;
  margin-bottom: 3rem;
}

/* Grid Layout */
.audio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Panels */
.panel {
  background: transparent;
  border: 1px solid var(--field-gray);
  border-radius: 0;
  padding: 2rem;
  transition: all 0.3s ease;
  min-width: 0;
  overflow: hidden;
}

.panel:hover {
  border-color: var(--heading-cyan);
}

.panel-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--heading-cyan);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Upload Zone */
.upload-zone {
  border: 1px dashed var(--field-gray);
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-zone:hover {
  border-color: var(--heading-cyan);
  background: rgba(0, 185, 199, 0.05);
}

.upload-zone.dragover {
  border-color: var(--dcp-success);
  background: rgba(34, 197, 94, 0.05);
}

.upload-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--film-gray-500);
}

.upload-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: var(--title-white);
  margin-bottom: 0.5rem;
}

.upload-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--film-gray-500);
}

.file-input {
  display: none;
}

/* Info Box */
.info-box {
  background: transparent;
  border: 1px solid var(--film-purple);
  border-radius: 0;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
}

.info-title {
  color: var(--film-purple);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.info-text {
  color: var(--title-white);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.info-secure {
  color: var(--dcp-success);
  margin-top: 0.5rem;
}

/* Channel Monitoring (Vertical Faders) */
.channel-monitoring {
  background: transparent;
  border: 1px solid var(--field-gray);
  border-radius: 0;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.spatial-tools-section {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.section-heading {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--heading-cyan);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.monitoring-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--heading-cyan);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.faders-container {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
}

.fader-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
}

.fader-track {
  width: 4px;
  height: 80px;
  background: var(--field-gray);
  position: relative;
  border-radius: 0;
}

.fader-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--heading-cyan);
  transition: height 0.05s ease-out;
  border-radius: 0;
}

.fader-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--film-gray-500);
  text-transform: uppercase;
  text-align: center;
}

.fader-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: var(--film-gray-700);
  text-align: center;
  min-width: 30px;
}

.fader-separator {
  width: 1px;
  height: 80px;
  background: var(--field-gray);
  margin: 0 0.25rem;
}

.fader-stereo .fader-fill {
  background: var(--film-purple);
}

.fader-stereo .fader-label {
  color: var(--film-purple);
}

/* Solo/Mute Buttons */
.channel-controls {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
}

.channel-btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 500;
  width: 100%;
  min-width: 20px;
  padding: 2px 4px;
  border: 1px solid var(--field-gray);
  background: transparent;
  color: var(--film-gray-500);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.channel-btn:hover {
  border-color: var(--heading-cyan);
  color: var(--heading-cyan);
}

.channel-btn.solo-active {
  background: var(--heading-cyan);
  border-color: var(--heading-cyan);
  color: var(--background-black);
}

.channel-btn.mute-active {
  background: var(--film-purple);
  border-color: var(--film-purple);
  color: var(--title-white);
}

/* Buttons */
.btn {
  background: var(--film-purple);
  color: var(--title-white);
  border: 1px solid var(--film-purple);
  padding: 0.75rem 2rem;
  border-radius: 0;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: var(--heading-cyan);
  border-color: var(--heading-cyan);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: var(--background-black);
  color: var(--heading-cyan);
  border: 1px solid var(--heading-cyan);
}

.btn-secondary:hover {
  background: var(--heading-cyan);
  color: var(--background-black);
}

.btn-success {
  background: var(--background-black);
  color: var(--dcp-success);
  border: 1px solid var(--dcp-success);
}

.btn-success:hover {
  background: rgba(34, 197, 94, 0.1);
}

/* Stem Items */
.stem-item {
  background: transparent;
  border: 1px solid var(--field-gray);
  border-radius: 0;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stem-item:hover {
  border-color: var(--film-purple);
}

.stem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.stem-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--title-white);
  text-transform: uppercase;
}

.btn-remove {
  background: transparent;
  color: var(--film-purple);
  border: 1px solid var(--film-purple);
  padding: 0.3rem 0.8rem;
  border-radius: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-remove:hover {
  background: var(--film-purple);
  color: var(--title-white);
}

/* Controls */
.control-group {
  margin-bottom: 1.5rem;
}

.control-label {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--film-gray-500);
  text-transform: uppercase;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.value-display {
  color: var(--heading-cyan);
  font-weight: 500;
}

input[type="range"] {
  width: 100%;
  height: 2px;
  border-radius: 0;
  background: var(--field-gray);
  outline: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: var(--heading-cyan);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: var(--heading-cyan);
  cursor: pointer;
  border: none;
}

/* Patch Bay Section */
.channel-patch-section {
  margin-top: 1.5rem;
}

.patch-bay-container {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid var(--film-gray-700);
  box-sizing: border-box;
}

.patch-matrix {
  display: grid;
  gap: 8px;
}

.patch-matrix-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
}

.patch-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: var(--heading-cyan);
  text-transform: uppercase;
}

.patch-cells-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  gap: 2px;
}

.patch-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.patch-header-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.patch-header-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--film-gray-500);
  text-align: center;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.patch-header-label.active {
  color: var(--film-purple);
}

.patch-header-label.activated {
  color: var(--film-purple);
}

.patch-header-label.disabled {
  opacity: 0.3;
}

.patch-cell {
  width: 24px;
  height: 24px;
  border: 1px solid var(--field-gray);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patch-cell:hover {
  border-color: var(--heading-cyan);
}

.patch-cell.active {
  background: var(--heading-cyan);
  border-color: var(--heading-cyan);
}

.patch-cell.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Stems Grid Layout */
.stems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stem-column {
  min-width: 0;
}

.stem-column-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--title-white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stem-item {
  background: transparent;
  border: 1px solid var(--field-gray);
  padding: 1rem;
  margin-bottom: 1rem;
}

.stem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--field-gray);
}

.stem-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--title-white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  margin-right: 0.5rem;
}

.btn-remove,
.btn-reset {
  background: transparent;
  border: 1px solid var(--film-purple);
  color: var(--film-purple);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-remove:hover,
.btn-reset:hover {
  background: var(--film-purple);
  color: var(--background-black);
}

.stem-controls {
  /* Controls inherit from .control-group */
}

/* Empty/Disabled state */
.stem-empty {
  opacity: 0.5;
}

.stem-empty-text {
  color: var(--film-gray-500);
  font-style: italic;
}

.stem-controls-disabled {
  pointer-events: none;
}

.stem-controls-disabled input[type="range"] {
  opacity: 0.3;
}

.stem-controls-disabled .value-display {
  color: var(--film-gray-500);
}

/* Speaker Map */
.speaker-map {
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--film-gray-900);
  border: 1px solid var(--field-gray);
  border-radius: 0;
  margin-bottom: 1.5rem;
}

.speaker {
  position: absolute;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid var(--heading-cyan);
  border-radius: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--heading-cyan);
}

.speaker.listener {
  border-color: var(--film-purple);
  color: var(--film-purple);
}

/* Format Selector */
.format-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.format-btn {
  flex: 1;
  padding: 0.5rem;
  background: var(--background-black);
  border: 1px solid var(--field-gray);
  border-radius: 0;
  color: var(--film-gray-500);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
}

.format-btn.active {
  background: transparent;
  border-color: var(--heading-cyan);
  color: var(--heading-cyan);
}

.format-btn:hover {
  border-color: var(--heading-cyan);
}

/* Status Indicator */
.status-indicator {
  padding: 1rem;
  background: transparent;
  border: 1px solid var(--dcp-success);
  border-radius: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--dcp-success);
}

.status-indicator.error {
  border-color: var(--film-purple);
  color: var(--film-purple);
}

/* Transport Controls */
.transport-controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.transport-controls .btn-secondary {
  flex: 1;
  padding: 0.5rem;
  margin-bottom: 0;
}

/* Compact Upload Rows */
.upload-rows {
  margin-bottom: 1.5rem;
}

.upload-row {
  margin-bottom: 0.5rem;
}

.upload-row:last-child {
  margin-bottom: 0;
}

.upload-field-compact {
  width: 100%;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--film-gray-700);
  cursor: pointer;
  transition: border-color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  box-sizing: border-box;
  min-height: calc(0.85rem * 1.5 + 1rem + 2px);
}

.upload-field-compact:hover {
  border-color: var(--heading-cyan);
}

.upload-field-compact.has-file {
  border-color: var(--dcp-success) !important;
}

.upload-field-compact.has-file:hover {
  border-color: var(--dcp-success) !important;
}

.upload-field-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--title-white);
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 80px;
  line-height: 1.15;
}

/* Old dedicated upload (for AI isolation field) */
.dedicated-upload {
  margin-bottom: 1.5rem;
  min-width: 0;
}

.upload-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--heading-cyan);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.info-icon {
  font-size: 0.9rem;
  color: var(--film-gray-500);
  cursor: help;
  transition: color 0.3s ease;
}

.info-icon:hover {
  color: var(--heading-cyan);
}

.upload-field {
  position: relative;
  border: 1px solid var(--film-gray-700);
  padding: 0.75rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.15;
  min-height: 40px;
}

.upload-field:hover {
  border-color: var(--heading-cyan);
}

.upload-field.has-file {
  border-color: var(--dcp-success);
}

.upload-field-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.upload-icon {
  width: 14px;
  height: 14px;
  color: var(--film-gray-500);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.upload-field:hover .upload-icon {
  color: var(--heading-cyan);
}

.upload-field.has-file .upload-icon {
  visibility: hidden;
  width: 0;
  margin: 0;
}

.upload-field-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--film-gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  line-height: 1.15;
}

.upload-field-text.upload-field-multiline {
  white-space: normal;
  line-height: 1.3;
  overflow: visible;
}

.upload-field.has-file .upload-field-text {
  color: var(--title-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-clear-btn {
  background: transparent;
  border: 1px solid var(--film-purple);
  color: var(--film-purple);
  padding: 0;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  line-height: 1;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}

.upload-clear-btn:hover {
  background: var(--film-purple);
  color: var(--background-black);
}

/* Custom Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--film-gray-300);
  position: relative;
  user-select: none;
}

.custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  position: relative;
  height: 18px;
  width: 18px;
  background: var(--background-black);
  border: 1px solid var(--field-gray);
  border-radius: 0;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label:hover .checkbox-custom {
  border-color: var(--heading-cyan);
}

.custom-checkbox:checked ~ .checkbox-custom {
  background: var(--heading-cyan);
  border-color: var(--heading-cyan);
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--background-black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox:checked ~ .checkbox-custom:after {
  display: block;
}

.checkbox-text {
  font-family: "JetBrains Mono", monospace;
  color: var(--film-gray-500);
}

/* Standards Dropdown */
.standard-select-group {
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
}

.standard-select {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid var(--film-gray-700);
  color: var(--title-white);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease;
}

.standard-select:hover,
.standard-select:focus {
  border-color: var(--heading-cyan);
}

.standard-select option {
  background: var(--film-gray-900);
  color: var(--title-white);
  padding: 0.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .audio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fp-container {
    padding: 0 2rem 2rem 2rem;
  }

  .panel {
    padding: 1rem;
  }

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

  .patch-matrix-row,
  .patch-header {
    grid-template-columns: 60px 1fr;
    gap: 8px;
  }

  .patch-label {
    font-size: 0.6rem;
  }

  .fader-value {
    min-width: 0;
  }
}

/* Footer */
.fp-footer {
  margin-top: 1.5rem;
  background: #000;
  padding: 2rem 0;
}
.fp-footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.fp-footer-links-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 600px;
  justify-items: center;
  align-items: center;
}
.fp-footer-link {
  color: #fffedc;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.6rem;
  transition: color 0.2s ease;
  cursor: pointer;
}
.fp-footer-link:hover {
  color: var(--heading-cyan);
}
.fp-footer-link:active {
  color: var(--border-pink);
}
.fp-footer-copyright {
  font-family: inherit;
  font-size: 0.7rem;
  color: #888;
  text-align: center;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .fp-footer-links-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .fp-footer-links-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 200px;
  }
}
