/* Import Work Sans font */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap');

body {
  font-family: Georgia, serif;
  max-width: 750px;
  margin: 3rem auto;
  padding: 0 1rem;
  line-height: 1.6;
  background-color: #ffffff;
  color: #111111;
}

header, footer {
  text-align: center;
  margin-bottom: 2rem;
}

nav {
  text-align: center;
  margin-bottom: 2rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #0066cc;
}

nav a:hover {
  text-decoration: underline;
}

/* Apply Work Sans to headings only */
h1, h2, h3 {
  margin-top: 2rem;
  color: #222;
  font-family: 'Work Sans', sans-serif;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #888;
}

.profile-image {
  float: right;
  width: 250px;
  height: auto;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  shape-outside: margin-box;
  max-width: 100%;
}

@media (max-width: 700px) {
  .profile-image {
    float: none;
    display: block;
    margin: 0 auto 1.5rem auto;
  }
}

.bio-text {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden; /* ensures the section contains the floated image */
  flex: 1;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.grid-features .work-image {
  height: 160px;
}