@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Manrope:wght@200..800&family=Young+Serif&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #edf2f8;
  font-family: "Manrope";
  font-size: 13px;
}
.article__container {
  display: flex;
  padding: 0 24px 0 0;
  gap: 30px;
  width: 100%;
  max-width: 900px;
  background-color: white;
  border-radius: 20px;
  position: relative;
  text-wrap: wrap;
  -webkit-box-shadow: 0px 12px 24px -21px rgba(66, 68, 90, 1);
  -moz-box-shadow: 0px 12px 24px -21px rgba(66, 68, 90, 1);
  box-shadow: 0px 12px 24px -21px rgba(66, 68, 90, 1);
}
.article__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  color: #46505e;
}
.article__image {
  width: 400px;
  height: 100%;
  border-radius: 20px 0 0 20px;
}
.article__profile {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.article__profile-picture {
  display: flex;
  width: 45px;
  border-radius: 50%;
}
.article__profile-content {
  display: flex;
  flex-direction: column;
  align-content: center;
  gap: 8px;
}

.article__main h1 {
  font-weight: 700;
  max-width: 800px;
}
.article__main span {
  color: #d2d8e2;
  font-weight: 500;
  font-size: 13px;
}
.article__main p {
  font-size: 13px;
  max-width: 400px;
}
.article__main h2 {
  font-size: 16px;
}
.article__button {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 14px;
  background-color: hsl(214, 17%, 51%);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  border: 0;
  transition: 0.3s all;
}
.article__profile-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article__button:hover {
  border: 1px solid rgb(65, 65, 65);
}
.article__share-wrapper {
  position: relative;
}
.article__share-tooltip {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  align-items: center;
  gap: 14px;
  background-color: hsl(217, 19%, 35%);
  padding: 24px 48px;
  border-radius: 10px;
  display: none;
}
.article__share-tooltip span {
  letter-spacing: 8px;
  color: hsl(212, 23%, 69%);
}
.triangle {
  position: absolute;
  top: 65px;
  transform: translateX(-50%);
  left: 50%;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 20px solid hsl(217, 19%, 35%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
