:root {
  --color-bg: #202020;
  --color-bg-secondary: #333333;
  --color-text: #ffffff;
  --color-accent-yellow: #fbee23;
  --color-accent-red: #ed2127;
  --color-black: #11210c;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
}

.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

/* Header */

.site-header {
  margin-bottom: 24px;
}

.site-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.site-title a {
  color: var(--color-text);
  text-decoration: none;
}

.site-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--color-accent-yellow);
}

/* Main content */

h2 {
  font-family: 'Epilogue', sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--color-accent-yellow);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-red);
}

/* About section */

.about-section {
  margin-bottom: 32px;
}

.about-section h2:first-child {
  margin-top: 0;
}

.about-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 10px 0;
}

.about-content p {
  line-height: 1.25rem;
}

.profile-photo {
  border-radius: 8px;
  display: block;
}

/* Appearances */

.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  margin-top: 32px;
  margin-bottom: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.content-section h2:first-child {
  margin-top: 0;
}

.item-list {
  list-style: none;
  padding: 0;
}

.item-list li {
  padding: 10px 0;
}

.item-list li:last-child {
  padding-bottom: 0;
}

.item-list a {
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.item-subtitle {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 4px;
  font-weight: 400;
}

.item-meta {
  font-size: 0.8rem;
  color: #999;
  display: block;
}

/* Footer */

.site-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--color-bg-secondary);
  font-size: 0.8rem;
  color: #999;
}

