/* Pretendard 웹폰트 및 미니멀 스타일 유지 */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

html, body {
  font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
  background: #fafbfc;
  color: #222;
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

a { color: #e91e63; text-decoration: none; transition: color 0.15s; }
a:hover { color: #d81b60; }

header {
  background: #fff;
  border-bottom: 1px solid #f1f3f5;
  padding: 0;
  box-shadow: 0 2px 8px rgba(60,80,120,0.04);
}
.header-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  width: 40px; height: 40px; border-radius: 8px; background: #fff; object-fit: contain; box-shadow: 0 1px 4px rgba(60,80,120,0.06); }
.site-title-text {
  font-size: 1.35em;
  font-weight: 800;
  color: #e91e63;
  letter-spacing: -0.5px;
}
nav {
  display: flex;
  gap: 24px;
}
.menu-link {
  font-size: 1.08em;
  font-weight: 600;
  color: #374151;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.menu-link.active, .menu-link:hover {
  background: #fdf2f8;
  color: #e91e63;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px 48px 16px;
}
.section-title {
  font-size: 1.5em;
  font-weight: 800;
  color: #e91e63;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-align: left;
}

.card-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stock-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(60,80,120,0.09);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stock-name-ko {
  font-size: 1.35em;
  font-weight: 800;
  color: #e91e63;
  margin-bottom: 2px;
}

.stock-name-en {
  font-size: 1em;
  color: #8a99a8;
  font-weight: 500;
}

.stock-ticker {
  color: #b0b7c3;
  font-size: 0.98em;
  margin-left: 6px;
}

.stock-date {
  font-size: 0.98em;
  color: #b0b7c3;
  font-weight: 500;
  margin-top: 2px;
}

.card-title {
  font-size: 1.13em;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.card-desc {
  color: #374151;
  font-size: 1.04em;
  margin-bottom: 0;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.more-btn {
  background: #e91e63;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.15s;
  box-shadow: 0 1px 6px rgba(233,30,99,0.08);
  display: inline-block;
}
.more-btn:hover {
  background: #d81b60;
  color: #fff !important;
}

footer {
  background: #1f2937;
  color: #d1d5db;
  text-align: center;
  font-size: 0.98em;
  padding: 28px 0 18px 0;
  margin-top: 48px;
}

.main-title {
  text-align: center;
  color: #e91e63;
  font-size: 2.1em;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(233,30,99,0.08);
}
.main-desc {
  text-align: center;
  color: #374151;
  font-size: 1.13em;
  margin: 0 auto 36px auto;
  max-width: 900px;
  line-height: 1.8;
  font-weight: 500;
}
.main-desc .highlight {
  color: #e91e63;
  font-weight: 800;
}
.main-desc .accent {
  color: #2563eb;
  font-weight: 700;
}

@media (max-width: 600px) {
  .header-bar { flex-direction: column; gap: 10px; padding: 14px 6px; }
  nav { gap: 12px; }
  main { padding: 18px 4px 32px 4px; }
  .section-title { font-size: 1.18em; }
  .card-list { gap: 18px; }
  .stock-card { padding: 16px 6px 14px 6px; }
  .card-header { flex-direction: column; gap: 2px; }
  .stock-name-ko { font-size: 1.08em; }
  .card { padding: 16px 10px 12px 10px; }
}

::-webkit-scrollbar { width: 8px; background: #f3f4f6; }
::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }