/* ==========================================================================
   Layouts - APEX
   ========================================================================== */

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-sm) clamp(1rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--clr-steel);
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}
.section--bg-alt {
  background-color: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-steel);
  border-bottom: 1px solid var(--clr-steel);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 15vh;
  position: relative;
  overflow: hidden;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Telemetry Grid (For Shop) */
.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background-color: var(--clr-steel);
  border: 2px solid var(--clr-steel);
}

/* Footer */
.site-footer {
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 5px solid var(--clr-red);
  background-color: #000;
}
