.tips-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
  overflow-x: hidden;
}

.tips-header-band {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  padding: 56px 0 40px;
  border-bottom: 3px double var(--brass);
  margin-bottom: 40px;
}

.tips-header-band h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--secondary);
}

.tips-header-band .tips-visual {
  background-image: url("/images/decorative/decor_7.webp");
  background-size: cover;
  background-position: center;
  min-height: 220px;
  max-height: 280px;
  max-width: 100%;
  overflow: hidden;
  border: var(--victorian-ornate);
  box-shadow: inset 0 0 40px rgba(61, 43, 31, 0.3);
}

.tips-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tips-columns h2 {
  font-size: 1.2rem;
  color: var(--copper);
  margin-bottom: 12px;
}

.tips-columns p {
  color: var(--muted);
  margin-bottom: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.tips-full {
  grid-column: 1 / -1;
  background: var(--paper);
  padding: 28px 32px;
  border: 1px solid var(--border);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .tips-header-band {
    grid-template-columns: 1fr;
  }

  .tips-header-band .tips-visual {
    max-width: 100%;
    width: 100%;
  }

  .tips-columns {
    grid-template-columns: 1fr;
  }
}
