.tips-page {
  background: linear-gradient(120deg, rgba(47, 111, 58, 0.9), rgba(19, 52, 30, 0.95));
}

.tips-top h1 {
  margin: 0 0 8px;
  color: #f4fff2;
  font-size: 44px;
}

.tips-top p {
  margin: 0 0 18px;
  color: #e2efdf;
  font-size: 19px;
}

.tips-list-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tips-list-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: grid;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.tips-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}

.tips-list-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tips-list-card-body {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.tips-list-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.tips-list-card p {
  margin: 0;
  color: #455545;
  line-height: 1.4;
}

.tip-article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: grid;
}

.tip-article-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.tip-article h1 {
  margin: 16px 18px 12px;
  font-size: 42px;
  line-height: 1.1;
}

.tip-article-text {
  margin: 0 18px 20px;
  color: #243424;
  line-height: 1.55;
  white-space: pre-wrap;
  font-size: 20px;
}

.back-btn {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .tips-top h1 { font-size: 34px; }
  .tips-list-card h3 { font-size: 24px; }
  .tip-article h1 { font-size: 32px; }
  .tip-article-text { font-size: 18px; }
}
