

/* 兴趣爱好标题区域 */
.hobbies-section {
  padding: 5rem 0 6rem;
  text-align: center;
}

.hobbies-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.hobbies-subtitle {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #4b5563;
}

/* 兴趣爱好卡片区域 */
.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.hobby-card {
  background-color: #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s;
}

.hobby-card:hover {
  transform: translateY(-0.5rem);
}

.hobby-image {
  width: 100%;
  height: 12rem;
  background-size: cover;
  background-position: center;
}

.hobby-content {
  padding: 1.5rem;
}

.hobby-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.hobby-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.hobby-link {
  font-weight: 600;
  color: #137fec;
  text-decoration: none;
  transition: underline 0.2s;
}

.hobby-link:hover {
  text-decoration: underline;
}

/* 联系按钮区域 */
.contact-section {
  margin-top: 4rem;
  text-align: center;
}

.contact-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #137fec;
  color: white;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.contact-button:hover {
  opacity: 0.9;
}

