/* ============================================
   EXTRACT TO: components/layout/full-width-layout.css
   Lines: 534-586 (53 lines)
   Target User Story: US-011-002
   Component: FullWidthLayout
   Description: Layout wrapper with sticky header and flexible content area
   Dependencies: CSS variables from main.css
   ============================================ */

/* ==============================================
   LAYOUT COMPONENTS - Full Width Layout
   ============================================== */

.layout-full-width {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout-full-width__main {
  flex: 1;
  width: 100%;
}

.layout-full-width__content {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.layout-full-width__top-row {
  background-color: var(--color-neutral-50);
  border-bottom: var(--border-width-default) solid var(--color-neutral-200);
  justify-content: space-between;
  height: var(--spacing-14);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: var(--z-index-sticky);
  padding-inline: var(--spacing-5);
}

.layout-full-width__top-row a,
.layout-full-width__top-row .btn-link {
  white-space: nowrap;
  margin-left: 0;
  text-decoration: none;
}

.layout-full-width__top-row a:hover,
.layout-full-width__top-row .btn-link:hover {
  text-decoration: underline;
}

.layout-full-width__top-row a:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==============================================
   RESPONSIVE OVERRIDES - Mobile First
   ============================================== */

/* Small tablets and large phones: 640px+ */
@media (min-width: 640px) {
  /* Layout adjustments for larger phones */
  .layout-full-width__top-row {
    justify-content: flex-end;
  }

  .layout-full-width__top-row a,
  .layout-full-width__top-row .btn-link {
    margin-left: var(--spacing-6);
  }
}
