.full-width-banner {
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: calc(100svh - var(--top-ui-height));
}

.banner-content {
  width: 100%;
  min-height: calc(100svh - var(--top-ui-height));
  margin: 0;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
}

.banner-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
}

.banner-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.banner-image .image-credit {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(20, 16, 12, 0.12);
}

.banner-text {
  background: #2c3d2e;
  color: #e8e0d4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.banner-text p {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  color: #e8e0d4;
}

.banner-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .full-width-banner {
    height: auto;
    min-height: calc(100svh - var(--top-ui-height));
  }

  .banner-content {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: calc(100svh - var(--top-ui-height));
  }

  .banner-image {
    min-height: 42vh;
  }

  .banner-text {
    min-height: 58vh;
  }
}
