:root {
  color-scheme: dark;
  --bg: #111219;
  --panel: #1a1d27;
  --panel-soft: #222736;
  --border: #313747;
  --text: #f3f5f8;
  --muted: #98a1b3;
  --accent: #00bcd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--coz-bg, var(--bg));
  color: var(--coz-text, var(--text));
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
}

.info-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.info-main {
  padding: 18px 0 54px;
}

.info-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 24px;
}

.info-subnav a {
  padding: 8px 11px;
  border: 1px solid var(--coz-card-border, var(--border));
  border-radius: 8px;
  color: var(--coz-text-muted, var(--muted));
  background: var(--coz-section-bg, transparent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.info-subnav a.active,
.info-subnav a:hover {
  color: var(--accent);
  border-color: rgba(0, 188, 212, .45);
  background: rgba(0, 188, 212, .1);
}

.info-titlebar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.info-titlebar h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.info-titlebar p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: background .16s ease, transform .16s ease;
}

.info-card:hover {
  background: var(--coz-section-bg, var(--panel));
  transform: translateY(-2px);
}

.info-card-media {
  display: grid;
  min-height: 188px;
  place-items: center;
  padding: 24px;
  border-radius: 8px;
  background: radial-gradient(circle at 78% 24%, rgba(255, 205, 70, .32), transparent 30%), linear-gradient(135deg, #07080b, #151923);
  color: #f6d365;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
  text-align: left;
}

.info-card-media img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.info-card-body {
  padding: 14px 8px 6px;
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.45;
}

.info-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.info-date {
  color: #6f7b90;
  font-size: 12px;
}

.info-article {
  max-width: 820px;
}

.info-article img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 8px;
  margin: 22px 0;
}

.info-article-content {
  color: #d9dde6;
  font-size: 16px;
  line-height: 1.9;
}

.info-article-content h2,
.info-article-content h3 {
  color: var(--text);
  margin-top: 30px;
}

.info-empty {
  padding: 48px 20px;
  border: 1px dashed var(--coz-card-border, var(--border));
  border-radius: 8px;
  color: var(--coz-text-muted, var(--muted));
  text-align: center;
}

@media (max-width: 840px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .info-main {
    width: min(100% - 24px, 1120px);
  }

  .info-subnav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .info-subnav a {
    white-space: nowrap;
  }

  .info-titlebar {
    display: block;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-card-media {
    min-height: 180px;
  }
}
