@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&family=Barlow+Semi+Condensed:wght@500;600&family=Barlow:wght@300;400;700&family=Manrope:wght@200..800&family=Outfit:wght@100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

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

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

body {
  font-family: 'manrope', sans-serif;
  background-color: #f0f0f0;
  font-size: clamp(
    0.875rem,
    1.5vw,
    1rem
  );
  background-color: var(
    --light-grayish-blue
  );
  line-height: 1.5;
}

.drawer-img {
  width: 100%;
  height: 200px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 375px;
  margin: 3rem auto 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px
    rgba(0, 0, 0, 0.1);
}

.article-content {
  padding: 2rem;
}

.article-content h1 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.25px;
  color: var(--dark-grayish-blue);
  margin-bottom: 1rem;
  width: 100%;
  max-width: 80%;
}

.article-content p {
  font-size: 0.875rem;
  color: var(--desaturated-dark-blue);
  /* margin-bottom: 1.3rem; */
  width: 100%;
  max-width: 90%;
}

.avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}
.author-info {
  display: flex;
  justify-content: left;
  justify-items: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  width: 100%;
}

.author-details h3 {
  font-size: 0.875rem;
  color: var(--dark-grayish-blue);
}

.author-details p {
  font-size: 0.875rem;
  color: var(--desaturated-dark-blue);
}

.share-icon,
.remove-class {
  margin: 1.3rem 0 0 4rem;
  width: 100%;
  max-width: 35px;
  height: 35px;
  background-color: var(
    --light-grayish-blue
  );
  border-radius: 50%;
  padding: 0.6rem;
  position: relative;
  z-index: 1000;
}

#share-popup {
  background: var(--dark-grayish-blue);
  color: white;
  padding: 33px 24px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  width: 100%;
}

#share-popup p {
  letter-spacing: 0.3rem;
  color: var(--grayish-blue);
}

#share-popup.hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .container {
    margin-top: 5rem;
    width: 100%;
    max-width: 640px;
  }

  .container-sm {
    display: flex;
  }

  .drawer-img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
  }

  .article-content h1 {
    max-width: 80%;
  }

  .article-content p {
    max-width: 90%;
    margin-bottom: 0;
  }

  .share-icon {
    margin-left: 5.2rem;
  }

  #share-popup {
    position: absolute;
    top: -50px;
    left: 79%;
    transform: translateX(-50%);
    background: #48556a;
    color: white;
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    z-index: 10;
    width: 50%;
  }

  .arrow-down {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #48556a;
  }

  .remove-class {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 768px;
  }

  .share-icon {
    margin-left: 9.5rem;
  }
}
