* {
  box-sizing: border-box;
}

/********** Fonts **********/

* {
  font-family: "Manrope", sans-serif;
}

.share-text {
  letter-spacing: 4pt;
}

/********** Article Component **********/

body {
  background-color: #ecf2f8;
}

.root-container {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
  background-color: #ecf2f8;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 730px;
  /* border: 2px dashed cyan; */
  gap: 16px;
  background-color: white;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.img-container {
  flex-basis: 40%;
  flex-grow: 1;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-container {
  padding: 16px;
}

.text-footer-container {
  flex-basis: calc(60% - 16px);
  flex-grow: 1;
  /* border: 2px solid black; */
}

/********** Footer **********/

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  position: relative;
}

.name-date-img {
  display: flex;
  align-items: center;
  gap: 8px;
}

.name-date h3 {
  margin-top: 8px;
  margin-bottom: 0;
}

.name-date p {
  margin: 0;
}

.michelle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.share-btn-container {
  background-color: #ecf2f8;
  border-radius: 50%;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.share {
  width: 100%;
}

/********** Active Link **********/

.active {
  /* border: 2px solid red; */
  display: flex;
  visibility: hidden;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px 32px;
  background-color: #48556a;
  position: absolute;
  z-index: 1;
  border-radius: 12px;
  transition-property: opacity;
  transition-duration: 300ms;
  opacity: 0;
}

.visible {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.share-active {
  display: none;
}

.share-with-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #9daec2;
}

/******************** MEDIA QUERY ********************/

@media (max-width: 500px) {
  .flex-container {
    display: flex;
    flex-direction: column;
  }

  /********** Active Link **********/

  .footer {
    position: relative;
    padding: 16px;
  }

  .active {
    display: flex;
    visibility: hidden;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 16px;
    width: 100%;
    background-color: #48556a;
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition-property: opacity;
    transition-duration: 300ms;
    opacity: 0;
    /* border: 2px solid red; */
  }

  .visible {
    display: flex;
    visibility: visible;
    opacity: 1;
  }

  .share-active {
    display: inline;
    width: 100%;
  }

  .share-with-links {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #9daec2;
  }

  .share-btn-container-active {
    background-color: #6e8098;
    border-radius: 50%;
    padding: 8px;
    width: 40px;
    height: 40px;
  }

  .share-btn-container-active img {
    filter: brightness(0) saturate(100%) invert(95%) sepia(7%) saturate(200%)
      hue-rotate(180deg) brightness(103%) contrast(98%);
  }
}
