*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #f8f9fa;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #4361ee;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4361ee;
}
.nav__logo:hover {
  text-decoration: none;
}
.nav__links {
  display: flex;
  gap: 1.5rem;
}
.nav__links a {
  color: #1a1a2e;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav__links a:hover {
  color: #4361ee;
  text-decoration: none;
  border-color: #4361ee;
}
.nav__links a.active {
  color: #4361ee;
  border-color: #4361ee;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #6c757d;
  font-size: 0.875rem;
  border-top: 1px solid #e9ecef;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.blog-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.blog-card__title a {
  color: #1a1a2e;
}
.blog-card__title a:hover {
  color: #4361ee;
  text-decoration: none;
}
.blog-card__date {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
.blog-card__desc {
  font-size: 0.9rem;
  color: #6c757d;
}

.blog-post__header {
  margin-bottom: 2rem;
}
.blog-post__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-post__date {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}
.blog-post__desc {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.5;
}
.blog-post__body {
  font-size: 1.05rem;
  line-height: 1.8;
}
.blog-post__body p {
  margin-bottom: 1rem;
}
.blog-post__back {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.not-found {
  text-align: center;
  padding: 4rem 1rem;
}
.not-found h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.not-found p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
}
.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  margin-bottom: 2rem;
}
.hero__cta {
  display: inline-block;
  background: #4361ee;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}
.hero__cta:hover {
  background: rgb(21.0634146341, 58.2341463415, 232.9365853659);
  text-decoration: none;
}

/*# sourceMappingURL=main.css.map */
