@charset "utf-8";

/* =========================================================
  Game Blog Single
========================================================= */

.game-single {
  padding-top: var(--header-height);
}

.game-single .section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.game-single-header {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(40px, 5vw, 72px);
}

.game-single-header::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -18%;
  width: min(58vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 42%, rgba(107, 140, 154, 0.3), transparent 32%), radial-gradient(circle at 65% 60%, rgba(136, 98, 92, 0.2), transparent 35%);
  pointer-events: none;
}

.game-single-header .container {
  position: relative;
  z-index: 1;
}

.game-single-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 22px;
  color: rgba(196, 196, 196, 0.62);
}

.game-single-header__meta time,
.game-single-header__updated,
.game-single-header__category {
  font-size: 13px;
  line-height: 1.5;
}

.game-single-header__category {
  color: var(--color03);
}

.game-single-header__title {
  max-width: 980px;
  color: var(--txt_white);
  font-size: clamp(2rem, 1.46rem + 2.3vw, 4rem);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.game-single-header__lead {
  max-width: 800px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
}

.game-single-visual {
  padding-bottom: clamp(44px, 6vw, 80px);
}

.game-single-visual__image {
  overflow: hidden;
  border: 1px solid rgba(107, 140, 154, 0.28);
  border-radius: var(--radius);
  background: #171717;
}

.game-single-visual__image img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.game-single-layout {
  padding-top: 0 !important;
}

.game-single-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.game-single-main {
  min-width: 0;
}

.game-single-content {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(107, 140, 154, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.965);
  color: var(--color01);
}

.game-single-content > * + * {
  margin-top: 1.55em;
}

.game-single-content p {
  color: var(--color01);
  line-height: 2;
}

.game-single-content a {
  color: #2b718d;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.game-single-content h2,
.game-single-content h3,
.game-single-content h4 {
  color: var(--color01);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}

.game-single-content h2 {
  margin-top: 2.4em;
  padding: 0.25em 0 0.25em 0.75em;
  border-left: 5px solid var(--color03);
  background: rgba(107, 140, 154, 0.1);
}

.game-single-content h3 {
  margin-top: 2.2em;
  padding-bottom: 0.35em;
  border-bottom: 1px solid rgba(107, 140, 154, 0.35);
}

.game-single-content ul,
.game-single-content ol {
  padding-left: 1.5em;
}

.game-single-content ul {
  list-style: disc;
}

.game-single-content ol {
  list-style: decimal;
}

.game-single-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}

.game-single-tags {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(107, 140, 154, 0.22);
  border-radius: var(--radius);
}

.game-single-tags__title,
.game-side-box__title {
  margin-bottom: 14px;
  color: var(--color03);
  font-size: 12px;
  letter-spacing: 0.24em;
}

.game-single-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-single-tags__list a {
  padding: 8px 12px;
  border: 1px solid rgba(107, 140, 154, 0.28);
  border-radius: 999px;
  color: var(--color02);
  font-size: 13px;
}

.game-single-nav {
  margin-top: 34px;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.post-navigation a {
  display: block;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(107, 140, 154, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.post-navigation__label {
  display: block;
  margin-bottom: 8px;
  color: var(--color03);
  font-size: 12px;
}

.post-navigation__title {
  display: block;
  color: var(--txt_white);
  font-size: 14px;
  line-height: 1.7;
}

.game-single-sidebar,
.game-archive-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.game-side-box {
  padding: 22px;
  border: 1px solid rgba(107, 140, 154, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.game-side-box + .game-side-box {
  margin-top: 22px;
}

.game-side-category {
  display: grid;
  gap: 8px;
}

.game-side-category a {
  color: var(--color02);
  font-size: 14px;
}

.game-side-posts {
  display: grid;
  gap: 16px;
}

.game-side-post a {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
}

.game-side-post__thumb {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #171717;
}

.game-side-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-side-post__body time {
  color: rgba(196, 196, 196, 0.54);
  font-size: 11px;
}

.game-side-post__body h3 {
  margin-top: 4px;
  color: var(--txt_white);
  font-size: 13px;
  line-height: 1.6;
}

.game-no-image {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 80px;
  background: linear-gradient(135deg, rgba(107, 140, 154, 0.16), rgba(136, 98, 92, 0.12)), #171717;
}

.game-no-image span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .game-single-layout__grid {
    grid-template-columns: 1fr;
  }

  .game-single-sidebar,
  .game-archive-sidebar {
    position: static;
  }
}

@media screen and (max-width: 630px) {
  .game-single-content {
    padding: 24px 18px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
}
