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

.news-detail-card {
  background: rgba(246, 246, 248, 1);
  border-radius: 24px;
  padding: 40px 40px;
  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;
}

.news-detail-header {
  display: flex;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(178, 153, 110, 0.22);
  margin-bottom: 30px;
}

.news-detail-figure {
  width: 338px;
  flex-shrink: 0;
  margin: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(22, 36, 68, 0.06);
  display: flex;
  flex-direction: column;
}

.news-detail-figure img {
  width: 100%;
  height: 253.5px;
  object-fit: cover;
}

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

.news-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.news-detail-title {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
}

.news-detail-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

.news-detail-meta span.date {
  color: #1F5FBF;
  font-size: 12px;
  font-weight: 700;
}

.news-detail-meta span.loc {
  color: #8c93a1;
  margin-left: 20px;
  font-size: 12px;
  font-weight: 700;
}

.news-detail-content {
  font-family: 'PT Serif', serif;
  font-size: 15px;
  line-height: 1.6;
  color: #3b424d;
  text-align: justify;
}

.news-detail-content p {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
}

.news-detail-content p.lead {
  font-weight: 700;
  color: #2F343B;
  font-size: 17.5px;
}

.news-detail-quote {
  position: relative;
  background: #EAF2FF;
  border-radius: 0 14px 14px 0;
  border-left: 4px solid #1F5FBF;
  padding: 24px 70px 24px 30px;
  margin: 24px 0;
}

.news-detail-quote::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'PT Serif', serif;
  font-size: 70px;
  font-weight: 700;
  color: rgba(31, 95, 191, 0.15);
  line-height: 1;
}

.news-detail-quote p {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.news-detail-quote cite {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #1F5FBF;
  font-style: normal;
  display: block;
}
