/* Tips Section Styles */
.tips-posts {
  margin: 2rem 0;
}

/* Centering styles for the Tips section */
.tips-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  padding-left: 0;
  padding-right: 0;
}

.tips-inner {
  max-width: 1200px;
  width: 100%;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  width: 100%;
}

.tip-item {
  padding: 0.5rem 0 1.5rem 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  max-width: 100%;
  text-align: left;
}

.tip-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 0.2em 0;
}

.tip-title a {
  text-decoration: none;
  color: #111;
}

.tip-title a:hover {
  color: #000;
}

.tip-excerpt {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
}

@media (max-width: 800px) {
  .tips-inner {
    padding: 0 1rem;
  }

  .tips-list {
    gap: 1rem;
  }

  .tip-item {
    padding: 1rem;
  }
}