/* 개발뉴스 섹션 */
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.game-news-section {
  width: 100%;
  background: #050505;
  padding: 150px 20px;
  color: #fff;
  overflow: hidden;
}

.game-news-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.game-news-header {
  margin-bottom: 28px;
}

.game-news-header span {
  display: block;
  margin-bottom: 14px;
  color: #22f1dd;
  font-size: 13px;
  font-weight: 350;
  letter-spacing: 6px;
}

.game-news-header h2 {
  margin: 0 0 20px;
  color: #fff;
  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;
}

.game-news-line {
  width: 34px;
  height: 2px;
  margin-bottom: 22px;
  background: #22f1dd;
  box-shadow: 0 0 14px rgba(34, 241, 221, 0.65);
}

.game-news-header p,
.game-news-card p {
  margin: 0;
  text-align: left;
  color: #8b8b8b;
  font-size: 15px;
  font-weight: 350;
  line-height: 1.8;
  word-break: keep-all;
}

.game-news-list {
  width: 100%;
  min-width: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.game-news-card {
  width: 100%;
  min-width: 0;
  display: block;

  padding: 18px 18px 28px;
  margin-bottom: 26px;

  text-decoration: none;
  color: #fff;

  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;

  overflow: hidden;
}

.game-news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 241, 221, 0.35);
}

.game-news-thumb {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border-radius: 4px;
  margin-bottom: 18px;
}

.game-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.game-news-meta span {
  color: #22f1dd;
  font-size: 14px;
  font-weight: 350;
}

.game-news-meta time {
  color: #8b8b8b;
  font-size: 14px;
  font-weight: 350;
}

.game-news-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 26px;
  font-weight: 350;
  line-height: 1.35;
  letter-spacing: -1px;
  word-break: keep-all;
}

.game-news-card strong {
  display: inline-block;
  margin-top: 22px;
  color: #22f1dd;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.game-news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.game-news-pagination button {
  border: none;
  background: transparent;
  color: #8b8b8b;
  cursor: pointer;
  font-size: 15px;
  font-weight: 350;
  padding: 6px 2px;
}

.game-news-pagination button.active {
  color: #22f1dd;
  border-bottom: 2px solid #22f1dd;
}

.game-news-pagination button:hover {
  color: #22f1dd;
}

/* 태블릿 */
@media (max-width: 900px) {
  .game-news-list {
    grid-template-columns: 1fr;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .game-news-section {
    padding: 150px 20px 80px;
  }

  .game-news-header {
    margin-bottom: 30px;
  }

  .game-news-header span {
    font-size: 12px;
    letter-spacing: 5px;
  }

  .game-news-header h2 {
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -2px;
  }

  .game-news-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .game-news-list {
    grid-template-columns: 1fr;
  }

  .game-news-card {
    padding: 18px 18px 26px;
    margin-bottom: 18px;
  }

  .game-news-thumb {
    aspect-ratio: 1.45 / 1;
  }

  .game-news-card h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  .game-news-card p {
    font-size: 14px;
  }

  .game-news-pagination {
    gap: 22px;
  }
}