/* 游记页面特定样式 */
.page-header {
  height: 50vh;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3em;
  position: relative;
  z-index: 1;
}

.page-header .shape {
  z-index: 0;
}

.travel-notes {
  padding: 80px 0;
}

.travel-card {
  display: flex;
  margin-bottom: 60px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.travel-image {
  flex: 0 0 40%;
  position: relative;
}

.travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-content {
  flex: 0 0 60%;
  padding: 30px;
}

.travel-content h2 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.travel-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-size: 0.9em;
}

.travel-meta span {
  display: flex;
  align-items: center;
}

.travel-meta i {
  margin-right: 5px;
}

.travel-excerpt {
  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--light-gray);
  border-radius: 20px;
  font-size: 0.8em;
  color: var(--dark-gray);
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

@media screen and (max-width: 768px) {
  .travel-card {
    flex-direction: column;
  }

  .travel-image {
    flex: 0 0 200px;
  }

  .page-header h1 {
    font-size: 2.5em;
  }
}
