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

body {
  font-family: 'Manrope', serif;
  background-color: #f2f2f2;
}

.hero {
  max-width: 23.4375rem;
  margin: 8rem auto 2rem;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.img-hero {
  width: 100%;
}

.content {
  padding: 2rem 3rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content h1 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.4;
  color: #48556a;
}

.content p {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12px;
  line-height: 1.8;
  color: #6e8098;
}

.author {
  padding: 2rem 3rem 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bio {
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-author {
  height: 2.5rem;
  border-radius: 50%;
}

.author-name {
  display: flex;
  flex-direction: column;
  font-size: 0.8125rem;
  color: #48556a;
  letter-spacing: 0.12px;
  font-weight: 700;
}

.author-date-publish {
  color: #9daec2;
  font-weight: 300;
}

.btn-share {
  width: 2.625rem;
  height: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-share button {
  padding: 8px 10px;
  border-radius: 50%;
  border: none;
}

.img-share {
  width: 15px;
  height: 13px;
}

.btn-social-menu {
  background-color: #48556a;
  padding: 1rem 3rem 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  color: white;
}

.social-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-menu p {
  color: #9daec2;
  letter-spacing: 5px;
  font-weight: 300;
}

.social-menu > a img {
  width: 20px;
  height: 20px;
}

.img-back {
  width: 20px;
  height: 18px;
}

@media screen and (min-width: 1440px) {
  .hero {
    max-width: 45.625rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .img-hero {
    grid-row-start: 1;
    grid-row-end: -3;
    object-fit: cover;
  }

  .content {
    padding: 1rem 2rem 0 2rem;
    margin-top: 1rem;
  }

  .author {
    padding: 1rem 2rem 0 2rem;
    margin-bottom: 1rem;
  }

  .btn-social-menu {
    margin-top: 0;
    padding: 1rem 3rem 1rem 3rem;
  }
}
