:root {
  --bg: #fafafa;
  --text: #111;
  --muted: #666;
  --card: #fff;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  --radius: 16px;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.blog-header h1 {
  font-size: 32px;
  margin: 0 0 8px;
}
.blog-header p {
  margin: 0;
  color: var(--muted);
}
.blog-header .breadcrumbs {
  font-size: 14px;
  margin: 14px 0 24px;
  color: var(--muted);
}
.blog-header .breadcrumbs a {
  color: #0070f3;
  text-decoration: none;
}
.blog-header .breadcrumbs a:hover {
  text-decoration: underline;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
  padding: 0px !important;
}

.fjsjs {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.fjsjs h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.fjsjs p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.special-d {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.12s ease;
}
.card :hover {
  transform: translateY(-2px);
}

.thumb {
  display: block;
}
.thumb img {
  width: 100%;
}

.content {
  padding: 18px 18px 20px;
}

.title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.35;
}
.title a {
  color: inherit;
  text-decoration: none;
}
.title a :hover {
  text-decoration: underline;
}

.sub {
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 14px;
}

.meta {
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 860px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}/*# sourceMappingURL=main.css.map */