
.sights-detail-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.sights-detail-card {
  background: rgba(246, 246, 248, 1); 
  border-radius: 24px;
  padding: 40px 60px;
  width: 788px;
  box-shadow: 0 12px 32px rgba(22, 36, 68, 0.08);
  border: 1px solid rgba(178, 153, 110, 0.22);
  display: flex;
  flex-direction: column;
}

.sights-detail-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #1F5FBF;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  background: #EAF2FF;
  padding: 7px 16px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto 15px;
}

.sights-detail-title {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 12px;
}

.sights-detail-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E58C17 0%, #1F5FBF 100%);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.sights-detail-content {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3b424d;
  margin-bottom: 30px;
}

.sights-detail-content p {
  margin-bottom: 16px;
  text-align: justify;
}

.sights-detail-figure {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(178, 153, 110, 0.22);
  overflow: hidden;
  margin: 0;
  width: 258px;
  flex-shrink: 0;
}

.sights-detail-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.sights-detail-text {
  flex: 1;
}

.sights-detail-figure img {
  width: 100%;
  height: 193.5px;
  object-fit: cover;
  display: block;
}

.sights-detail-figcaption {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  text-align: center;
  padding: 10px;
}

.sights-detail-footer {
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(178, 153, 110, 0.3);
  padding-top: 30px;
}

.sights-detail-info {
  flex: 1;
  background: rgba(234, 242, 255, 1);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(31, 95, 191, 0.12);
}

.sights-detail-info__label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1F5FBF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sights-detail-info__value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

