:root {
  --very-dark-blue: hsl(217, 19%, 35%);
  --dark-blue: hsl(214, 17%, 51%);
  --blue: hsl(212, 23%, 69%);
  --light-blue: hsl(210, 46%, 95%);
}

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

html {
  font-size: 62.5%;
  font-family: "Manrope", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--light-blue);
  height: 100vh;
}

.article {
  background-color: #fff;
  margin: 2em;
  border-radius: 15px;
  overflow: hidden;
}
.article__img {
  min-width: 300px;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.article__content {
  padding: 2.2em;
}
.article__title {
  font-size: 1.6rem;
  color: var(--very-dark-blue);
  font-weight: 700;
}
.article__text {
  margin-top: 1em;
  font-size: 1.3rem;
  color: var(--dark-blue);
}
.article__btn {
  position: absolute;
  right: 20px;
  bottom: 17px;
  padding: 0.5em;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.article__btn--dark {
  background: var(--dark-blue);
}
.article__btn--dark path {
  fill: #fff;
}
.article__footer {
  position: relative;
  width: 100%;
}
.article__profile {
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 1.2em 2em;
}
.article__profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1em;
}
.article__profile-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}
.article__profile-name {
  color: var(--very-dark-blue);
  font-weight: 700;
}
.article__profile-date {
  color: var(--dark-blue);
}
.article__profile-btn {
  background-color: var(--light-blue);
}
.article__socials {
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-color: var(--very-dark-blue);
  padding: 1.2em 2em;
  margin-top: 2px;
}
.article__socials-links {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.article__socials-link {
  margin: 0.75em;
}
.article__socials-share {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  margin-right: 0.75em;
  color: var(--blue);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 5px;
}

.active {
  display: flex;
}

@media (min-width: 625px) {
  .article {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 300px;
    max-width: 950px;
    max-height: 100%;
    overflow: visible;
  }
  .article__img {
    height: 100%;
    width: 40%;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
  }
  .article__box {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    width: 70%;
    height: 100%;
    margin: 2em 2.5em;
  }
  .article__content {
    padding: 2.2em;
  }
  .article__title {
    font-size: 1.6rem;
  }
  .article__text {
    font-size: 1.2rem;
  }
  .article__footer {
    position: relative;
  }
  .article__profile {
    display: flex;
  }
  .article__socials {
    position: absolute;
    justify-content: center;
    align-items: center;
    bottom: 60px;
    right: -85px;
    width: 248px;
    padding: 1em 2.5em;
    border-radius: 10px;
    box-shadow: 6px 16px 25px rgba(0, 0, 0, 0.08);
  }
}
@media (min-width: 720px) {
  .article__title {
    font-size: 2rem;
  }
  .article__text {
    font-size: 1.4rem;
  }
}
@media (min-width: 880px) {
  .article__title {
    font-size: 2.4rem;
  }
  .article__text {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=main.css.map */