/**
 * @file
 * Layout styles for Ptasie Wyprawy theme.
 */

/* Layout regions */
.layout-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.region-header {
  background-color: var(--bg-primary);
  border-bottom: 3px solid var(--bg-accent);
}

.region-content {
  flex: 1;
  padding: 4em 0;
  background: var(--bg-primary);
}

.region-footer {
  background-color: var(--bg-accent);
  color: var(--text-inverse);
  border-top: 3px solid var(--accent-color);
  padding: 2em 0;
  margin-top: auto;
}

/* ============================================================================
 * HOMEPAGE - Two Column Layout
 * ============================================================================ */

/* Two-column layout for homepage view */
.view-content-two-columns {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.view-content-categories {
  flex: 1;
  min-width: 0;
  padding: 1em 0;
}

.view-content-node-124 {
  text-align: justify;
  width: 100%;
  background: var(--bg-accent);
  color: var(--text-inverse);
  padding: 2em;
  border-left: 4px solid var(--accent-color);
}

@media (min-width: 768px) {
  .view-content-two-columns {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .view-content-categories {
    flex: 1;
    min-width: 0;
  }

  .view-content-node-124 {
    flex: 0 0 350px;
    width: auto;
    margin-left: 10px;
  }
}

@media (min-width: 1024px) {
  .view-content-node-124 {
    flex: 0 0 400px;
    margin-left: 15px;
  }
}
