*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Manrope";
  src: url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
}
.mobile-btn {
  display: none;
}
@media (max-width: 767px) {
  .mobile-btn {
    display: block;
  }
}

.active-share {
  display: none;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(210, 46%, 95%);
}
.card {
  display: flex;
  background-color: white;
  border-radius: 10px;
  width: 900px;
  height: 400px;
}
@media (max-width: 767px) {
  .card {
    flex-direction: column;
    align-items: center;
    width: 500px;
    height: auto;
  }
}
.card-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  width: 40%;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 767px) {
  .card-image {
    width: 100%;
    height: 350px;
    border-radius: 10px 10px 0 0;
  }
}
.card-body {
  display: flex;
  flex-direction: column;
  margin: 65px;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .card-body {
    margin: 40px;
  }
}
.card-body-title {
  font-family: Manrope;
  font-weight: 700;
  font-size: 24px;
  color: hsl(217, 19%, 35%);
}
.card-body-description {
  font-family: Manrope;
  font-weight: 500;
  font-size: 13px;
  color: hsl(214, 17%, 51%);
}
@media (max-width: 767px) {
  .card-body-description {
    font-size: 18px;
  }
}

.social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-avatar {
  width: 40px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .social-avatar {
    width: 60px;
  }
}
.social-name-date {
  font-family: Manrope;
  font-weight: 500;
  font-size: 13px;
  color: hsl(214, 17%, 51%);
  margin-left: 20px;
  margin-right: auto;
}
.social-title {
  font-family: Manrope;
  font-weight: 700;
  font-size: 13px;
  color: hsl(217, 19%, 35%);
}
@media (max-width: 767px) {
  .social-title {
    font-size: 18px;
  }
}
.social-date {
  font-family: Manrope;
  font-weight: 500;
  font-size: 13px;
  color: hsl(212, 23%, 69%);
}
@media (max-width: 767px) {
  .social-date {
    font-size: 16px;
  }
}
.social-button {
  background-color: hsl(210, 46%, 95%);
  border: 0;
  border-radius: 50%;
  color: hsl(214, 17%, 51%);
  width: 35px;
  height: 35px;
}
@media (max-width: 767px) {
  .social-button {
    width: 60px;
    height: 60px;
  }
}
.social-button:hover {
  color: white;
  background-color: hsl(217, 19%, 35%);
  animation-duration: 0.7ms;
}

.modal {
  display: block;
  position: relative;
  color: white;
  font-family: Manrope;
  font-weight: 100;
  font-size: 13px;
  letter-spacing: 5px;
}
@media (max-width: 767px) {
  .modal {
    font-size: 20px;
    margin-left: 20px;
  }
}
.modal-list {
  position: absolute;
  top: -180%;
  left: -250%;
  background-color: hsl(217, 19%, 35%);
  border-radius: 10px;
  display: none;
  justify-content: space-around;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 0 20px;
  z-index: 1;
}
@media (max-width: 767px) {
  .modal-list {
    justify-content: space-around;
    top: -5%;
    left: -667%;
    width: 500px;
    height: 100px;
    border-radius: 0 0 10px 10px;
  }
}
.modal-list::after {
  width: 18px;
  aspect-ratio: 1;
  content: "";
  position: absolute;
  top: 100%;
  left: 45%;
  background-color: hsl(217, 19%, 35%);
  border: inherit;
  rotate: 45deg;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .modal-list::after {
    content: none;
  }
}
.modal-item-link {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 25px;
  height: 40px;
  flex-wrap: wrap;
  color: white;
}
@media (max-width: 767px) {
  .modal-item-link {
    width: 60px;
  }
}

.close-button {
  background-color: hsl(214, 17%, 51%);
  border: 0;
  border-radius: 50%;
  color: hsl(210, 46%, 95%);
  width: 35px;
  height: 35px;
}
@media (max-width: 767px) {
  .close-button {
    width: 60px;
    height: 60px;
  }
}
.close-button:hover {
  color: white;
  background-color: hsl(217, 19%, 35%);
  animation-duration: 0.7ms;
}/*# sourceMappingURL=styles.css.map */