:root {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #f4f7fd;
}

body {
  margin: 0;
  background: #f4f7fd;
}

.site-shell {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.entry-header {
  margin-bottom: 1.1rem;
  color: #fff;
}

.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #a284d4;
  border-radius: 12px;
  padding: 0.72rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.brand-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-link:hover,
.brand-link:focus-visible {
  color: #355c7d;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.header-links a:hover,
.header-links a:focus-visible {
  color: #355c7d;
  text-decoration: underline;
}

.entry-tagline {
  margin: 0.58rem 0 0;
  color: #5c4e73;
  font-size: 0.92rem;
}

.entry-main {
  flex: 1;
}

.page {
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.page h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.page p,
.page li {
  color: #333;
}

.page ul {
  padding-left: 1.2rem;
}

.page a {
  color: #0f6bb0;
}

.page a:hover,
.page a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  background: #a284d4;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-nav-link:hover,
.footer-nav-link:focus-visible {
  color: #355c7d;
  text-decoration: underline;
}

.footer-copy {
  margin: 0.625rem 0 0;
  color: #f1ecfa;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer-copyright {
  margin: 0.375rem 0 0;
  color: #ece5f9;
  font-size: 0.8125rem;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .site-shell {
    padding: 1.25rem 1rem;
  }

  .site-header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav-list {
    justify-content: flex-start;
    gap: 0.4rem 0.8rem;
  }

  .site-footer {
    text-align: left;
    padding: 0.9rem 1rem;
  }
}
