/* Header */
.header {
  background-color: var(--background-subtlest);
  border-bottom: 1px solid var(--border-default);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-400);
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo img {
  height: 180px;
  width: auto;
  aspect-ratio: 212 / 48;
  object-fit: contain;
}

/* Page Container */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--spacing-600);
  padding-bottom: 80px;
}

.page-inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-600);
  width: 100%;
  max-width: 1248px;
  margin-top: var(--spacing-600);
}

/* Video Section */
.video-section {
  width: 100%;
}

.video-section video {
  width: 100%;
  aspect-ratio: 240 / 135;
  object-fit: cover;
  display: block;
}

/* Top Section */
.top-section {
  display: flex;
  gap: var(--spacing-600);
  align-items: stretch;
}

.top-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-400);
  justify-content: center;
}

/* Top Images (right column) */
.top-images {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-600);
}

.top-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Wide Image */
.wide-image-wrapper img {
  width: 100%;
  aspect-ratio: 240 / 135;
  object-fit: cover;
}

/* Row 3 - Two Images */
.row-3 {
  display: flex;
  gap: var(--spacing-600);
  align-items: center;
}

.row-3-item {
  flex: 1;
  min-width: 0;
}

.row-3-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
