@charset "UTF-8";

/* ========================================
  News
======================================== */
#news .news-inr {
  background-color: rgba(242, 242, 242, 0.5);
}
#news .news-box-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#news .news-box {
  padding: 24px;
  background-color: var(--color-white);
}
#news .news-box ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
#news .news-cat {
  color: var(--color-cyan);
  border: 0.75px solid var(--color-cyan);
  display: inline-block;
  padding: 4px 8px;
  font-size: var(--fs-14);
}
#news .news-time {
  color: var(--color-gray-6);
  font-weight: 600;
  font-size: var(--fs-18);
}
#news .news-box h3 {
  font-size: var(--fs-18);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 16px;
}
#news .news-box .news-img-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#news .news-box .news-img-grid img {
  width: calc(50% - 8px);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
