:root {
  --surface-page-default: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #818181;
  --border-brand-subtle: #a8efe3;
  --border-neutral-subtle: #b0b8b6;
  --focus-ring-default: #1a1a1a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--surface-page-default);
}

body {
  margin: 0;
  font-family: "PT Sans", sans-serif;
  color: var(--text-primary);
  background: var(--surface-page-default);
}

a {
  color: inherit;
}

.about-site {
  width: min(100%, 1728px);
  margin: 0 auto;
  padding: 0 clamp(24px, 9.26vw, 160px) 48px;
}

.about-header {
  padding-top: 0;
}

.about-main {
  padding-top: clamp(20px, 4vw, 40px);
}

.resume-panel {
  display: block;
}

.resume-mobile-link {
  display: none;
}

.resume-frame {
  display: block;
  width: 100%;
  min-height: calc(100vh - 148px);
  border: 0;
  background: #ffffff;
}

@media (min-width: 769px) {
  .resume-panel {
    width: min(980px, 100%);
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 900px) {
  .resume-frame {
    min-height: 72vh;
  }
}

@media (max-width: 768px) {
  .about-site {
    padding: 0 20px 32px;
  }

  .about-header {
    padding-top: 0;
  }

  .about-main {
    padding-top: 24px;
  }

  .portfolio-site.view-about .about-main {
    padding-top: min(24vh, 180px);
  }

  .resume-panel {
    display: flex;
    justify-content: center;
  }

  .resume-mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 280px);
    min-height: 52px;
    padding: 0 20px;
    border: 1.5px solid var(--border-brand-subtle);
    border-radius: 8px;
    text-decoration: none;
    font-family: "PT Serif", serif;
    font-size: 16px;
    line-height: 1.2;
    color: var(--text-primary);
    background: #ffffff;
  }

  .resume-frame {
    display: none;
  }
}
