/* ========================================
   News Page
   ======================================== */
.news-main {
  padding: 60px 0 100px;
}

.news-card {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.news-card:first-child {
  padding-top: 0;
}

.news-date {
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}

.news-body {
  flex: 1;
}

.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.tag-result {
  background: var(--blue-light);
  color: var(--blue-accent);
}

.tag-info {
  background: var(--green-light);
  color: var(--green-accent);
}

.news-title {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.news-content {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

.news-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-accent);
  letter-spacing: 0.06em;
  margin: 10px 0 4px;
}

.news-sub:first-child {
  margin-top: 0;
}

.news-result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.news-place {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--beige-light);
  padding: 2px 8px;
  border-radius: 10px;
  flex-shrink: 0;
}

.news-place.p1 {
  background: linear-gradient(135deg, #f7e7a0, #f0d060);
  color: #7a6000;
}

.news-place.p2 {
  background: linear-gradient(135deg, #e0e8f0, #c8d4e0);
  color: #4a5a6a;
}

.news-place.pf {
  background: var(--green-light);
  color: var(--green-accent);
  font-size: 0.72rem;
}

/* Event Details */
.news-event-detail {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.news-event-venue {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.news-event-note {
  font-size: 0.82rem;
  color: #c06030;
  font-weight: 500;
  margin-top: 6px;
}

/* ========================================
   HOME News Section
   ======================================== */
.news-sec {
  padding: 80px 0;
  background: var(--white);
}

.news-list-home .news-card {
  padding: 24px 0;
}

.news-more {
  text-align: center;
  margin-top: 32px;
}

.news-more a {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-accent);
  letter-spacing: 0.06em;
  padding: 10px 36px;
  border: 1px solid var(--blue);
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}

.news-more a:hover {
  background: var(--blue-accent);
  color: var(--white);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .news-main {
    padding: 40px 0 80px;
  }

  .news-card {
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
  }

  .news-date {
    font-size: 0.82rem;
  }

  .news-title {
    font-size: 0.95rem;
  }

  .news-sec {
    padding: 60px 0;
  }
}
