.tips-page {
  padding-bottom: 64px;
}

.tips-header {
  padding: 40px 20px;
  text-align: center;
  background: var(--surface);
  border-bottom: 2px solid var(--accent);
}

.tips-header h1 {
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tips-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.tips-main h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin: 28px 0 12px;
}

.tips-main h2:first-child {
  margin-top: 0;
}

.tips-main p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.tips-main ul {
  margin: 12px 0 16px 24px;
}

.tips-main li {
  margin-bottom: 8px;
  font-size: 15px;
}

.tips-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tips-quote {
  padding: 32px 24px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.1), rgba(34, 211, 238, 0.06));
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
}

.tips-quote p {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin: 0;
}

.tips-aside img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 12px;
  object-fit: cover;
}

.tips-checklist {
  padding: 24px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.tips-checklist h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.tips-checklist ul {
  list-style: none;
  margin: 0;
}

.tips-checklist li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
}

.tips-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .tips-split {
    grid-template-columns: 1fr;
  }
}
