/* Design tokens (variables) */
/* Aptos stack (falls back if not installed) */
/* Base / reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111;
  font-family: "Aptos", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

/* links */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Layout primitive */
.container {
  width: min(100% - 2.5rem, 1100px);
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section__title {
  margin: 0 0 1.25rem 0;
}

/* Hero section */
.hero {
  background: #3c414a;
  color: #ffffff;
  padding: 2.5rem 0;
}

.hero__inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero__photo {
  width: 250px;
  height: 300px;
  border-radius: 40px;
  object-fit: cover;
  flex: 0 0 auto;
}

.hero__title {
  margin: 0;
  font-size: 2.25rem;
}

.hero__subtitle {
  margin: 0.5rem 0 1rem;
  max-width: 100ch;
}

.hero__links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.icon-link-1 {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.icon-link-1:hover {
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.75);
}

.home__row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem; /* adjust */
}

.home__top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
}
.home__top:hover {
  border-color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.interest-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

.interest {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.interest__icon {
  width: 200px;
  height: 200px;
  margin-bottom: 0.75rem;
  display: block;
}

.interest__title {
  margin: 0;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.project__card {
  background: #b5aeb0;
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
}
.project__card:hover {
  filter: brightness(0.97);
  text-decoration: none;
}

.project__image {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.project__title {
  margin: 0 0 0.25rem 0;
}

.project__text {
  margin: 0;
}

@media (max-width: 700px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .project__card {
    grid-template-columns: 1fr;
  }
  .project__image {
    width: 100%;
    height: 180px;
  }
  .interest-grid {
    grid-template-columns: 1fr;
  }
}
.pdf-embed {
  width: 900px;
  max-width: 100%;
  height: 85vh;
  min-height: 600px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.pdf-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pdf-title,
.pdf-embed,
.pdf-meta {
  width: 900px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.pdf-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.pdf-meta {
  margin-top: 0.5rem;
}

.pdf-meta figcaption {
  margin: 0 0 0.5rem 0;
}

.pdf-links {
  margin: 0;
}

/* styles/_footer.scss */
.footer {
  background: #3c414a;
  color: #ffffff;
  padding: 2rem 0 1.25rem;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer__top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
}
.footer__top:hover {
  border-color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer__icons {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.icon-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
.icon-link:hover {
  border-color: rgba(255, 255, 255, 0.75);
}

.icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer__meta {
  margin: 1.25rem 0 0 0;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.9;
}

/*# sourceMappingURL=main.css.map */
