@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&display=swap");

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  background: #f7f7f4;
  color: #222222;
  line-height: 1.55;
}

.site-header {
  width: 100%;
  border-bottom: 1px solid #d9d9d2;
  background: #fbfbf7;
}

.site-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-mark-wrap {
  margin: 0;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-mark {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-mark-wrap figcaption {
  margin: 0.08rem 0 0 0;
  font-size: 0.46rem;
  line-height: 1;
  font-weight: 400;
  color: #c0c0ba;
}

.site-owner {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #222222;
}

.page {
  width: 100%;
  padding: 3.5rem 1.5rem 2rem 1.5rem;
}

.project-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: #f7fbfd;
  border: 1px solid #d7e5ec;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.project-summary {
  margin: 0 0 1.4rem 0;
  max-width: 42rem;
  font-size: 1.05rem;
  color: #333333;
}

h2 {
  margin: 0 0 1.35rem 0;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 700;
}

h2 a,
h2 a:link,
h2 a:visited {
  color: #075f8f;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  word-break: break-word;
}

p {
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
}

a,
a:link,
a:visited {
  color: #075f8f;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: #004f7a;
}

.site-footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 2rem 1.5rem;
  font-size: 0.85rem;
  color: #666666;
  text-align: center;
}

@media (max-width: 700px) {
  .site-header-inner {
    padding: 0.7rem 1rem;
  }

  .page {
    padding: 1.5rem 1rem;
  }

  .project-card {
    padding: 1.4rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  p,
  .project-summary {
    font-size: 1rem;
  }
}