/* ========== 摄影主题 / 列表页专用样式 ========== */
.place-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.place-card {
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  max-width: 100%;
}

.place-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 2;
  letter-spacing: 0.3px;
}

.place-img.photo-img {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  overflow: hidden;
}

.place-img.video-img {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.place-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.place-card:hover .place-img img {
  transform: scale(1.08);
}

.place-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.place-info {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.intro {
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.expand-btn:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

.go-btn {
  flex: 1;
  padding: 9px 0;
  background: var(--primary-color);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  transition: var(--transition-base);
}

.go-btn:hover {
  background: #444;
  transform: translateY(-1px);
}

.photo-video-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.photo-video-nav a {
  padding: 9px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  transition: var(--transition-base);
  letter-spacing: 0.3px;
}

.photo-video-nav a:hover {
  background: #f8f8f8;
  border-color: #ccc;
  transform: translateY(-1px);
}

.media-type-title {
  font-size: 24px;
  font-weight: 600;
  margin: 60px 0 30px;
  color: var(--primary-color);
  text-align: center;
  letter-spacing: 0.8px;
}

.media-type-title:first-of-type {
  margin-top: 0;
}