/* 회사뉴스 섹션 */
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.news-section {
  width: 100%;
  background: #050505;
  padding: 150px 20px;
  color: #fff;
  overflow: hidden;
}

.news-line {
  width: 34px;
  height: 2px;
  margin-bottom: 22px;
  background: #22f1dd;
  box-shadow: 0 0 14px rgba(34, 241, 221, 0.65);
}

.news-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.news-header {
  margin-bottom: 34px;
}

.news-header span {
  display: block;
  margin-bottom: 14px;
  color: #22f1dd;
  font-size: 13px;
  font-weight: 350;
  letter-spacing: 6px;
}

.news-header h2 {
  margin: 0 0 20px;
  text-align: left;
  color: #ffffff;
  font-size: 56px;
  letter-spacing: -3px;
  font-weight: 350;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  word-break: keep-all;
}

.news-header p,
.news-desc {
  margin: 0;
  text-align: left;
  color: #8b8b8b;
  font-size: 15px;
  font-weight: 350;
  line-height: 1.8;
  word-break: keep-all;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.news-card {
  position: relative;
  width: 100%;
  min-width: 0;

  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;

  min-height: 230px;
  padding: 26px 26px 26px 20px;

  background: #0d0d10;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.24);
  transition: 0.28s ease;

  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 241, 221, 0.35);
}

.news-content {
  min-width: 0;
}

.news-category {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 11px;
  color: #22f1dd;
  font-size: 12px;
  font-weight: 350;
  border: 1px solid rgba(34, 241, 221, 0.75);
  border-radius: 4px;
}

.news-content h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 25px;
  font-weight: 350;
  line-height: 1.45;
  letter-spacing: -1px;
  word-break: keep-all;
}

.news-date {
  margin: 0 0 8px;
  color: #8b8b8b;
  font-size: 13px;
  font-weight: 350;
}

.news-desc {
  margin-bottom: 18px;
}

.news-arrow {
  color: #22f1dd;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.news-thumb {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border-radius: 4px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.28s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.04);
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.news-pagination button {
  border: none;
  background: transparent;
  color: #8b8b8b;
  cursor: pointer;
  font-size: 15px;
  font-weight: 350;
  padding: 6px 2px;
}

.news-pagination button.active {
  color: #22f1dd;
  border-bottom: 2px solid #22f1dd;
}

.news-pagination button:hover {
  color: #22f1dd;
}

/* 태블릿 */
@media (max-width: 900px) {
  .news-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .news-thumb {
    order: -1;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .news-section {
    padding: 150px 20px 80px;
  }

  .news-header {
    margin-bottom: 30px;
  }

  .news-header span {
    font-size: 12px;
    letter-spacing: 5px;
  }

  .news-header h2 {
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -2px;
  }

  .news-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .news-card {
    padding: 22px 18px 26px;
    gap: 20px;
  }

  .news-content h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  .news-thumb {
    aspect-ratio: 1.45 / 1;
  }

  .news-pagination {
    gap: 22px;
  }
}