body {
  font-family: "Helvetica", "Arial", sans-serif;
  line-height: 1.5;
  color: #444;
  margin: 0;
  padding: 0;
}

h1 {
  margin: 0.2em 0 0.1em;
}

h2 {
  margin-top: 1em;
  padding-top: 1em;
}

h1, h2 {
  color: #333;
}

a {
  color: #e81c4f;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #263d36;
  background-image: url("header.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1.2;
  padding: 6vw 2em;
  text-align: center;
  max-width: none;
  margin-bottom: 2em;
}

header h1 {
  color: white;
  font-size: 2.5em;
  font-weight: 300;
}

header .lede {
  color: rgba(255, 255, 255, 0.9);
  margin: 0.75em auto 1.25em;
  max-width: 42rem;
}

header .cta-row {
  margin: 0;
  display: flex;
  gap: 0.75em;
  justify-content: center;
  flex-wrap: wrap;
}

header a {
  border: 1px solid #e81c4f;
  border-radius: 290486px;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  font-size: 0.6em;
  letter-spacing: 0.2em;
  padding: 1em 2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: none 200ms ease-out;
  transition-property: color, background;
}

header a .cta-icon {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
  flex: 0 0 auto;
}

header a:hover {
  background: #e81c4f;
  color: white;
  text-decoration: none;
}

main {
  margin: 0 auto;
  max-width: 50em;
  margin-bottom: 4em;
  padding: 0 1.25em;
}

.about-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1.25em;
  row-gap: 0.75em;
}

.about-content h2 {
  margin-top: 0;
  padding-top: 0;
}

.about-avatar-ring {
  width: fit-content;
  margin: 0;
  padding: 3px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.about-avatar {
  width: clamp(92px, 16vw, 132px);
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.92);
}

@media (max-width: 680px) {
  .about-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

img {
  margin: 0 auto;
  border: 1px solid #69c;
  display: block;
  max-width: 90%;
}

code {
  background: #eee;
  padding: 2px 4px;
  vertical-align: text-bottom;
  background: #f5f7f9;
  border-bottom: 1px solid #d8dee9;
  color: #a7adba;
  border-left: 2px solid #69c;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
  display: grid;
  gap: 0.9em;
}

.post-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 1em 1.1em;
  background: white;
}

.post-card--placeholder {
  opacity: 0.85;
}

.post-title {
  font-size: 1.05em;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.post-title:hover {
  text-decoration: underline;
}

.post-meta {
  margin-top: 0.4em;
  font-size: 0.9em;
  color: #666;
}
