/* #region = GLOBAL */
html {
  text-rendering: optimizeSpeed;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: hsl(217, 19%, 35%);
  height: 100svh;
}

.c-font_preset-1 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.016rem;
}

.c-font_preset-2 {
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.001rem;
}

.c-font_preset-3 {
  font-size: 0.813rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.001rem;
}

.c-font_preset-4 {
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.203rem;
  text-transform: uppercase;
}

/* #endregion = GLOBAL */
/* #region = COMPONENTS */
.c-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: hsl(210, 46%, 95%);
  padding-inline: 1.5rem;
}

.c-card {
  box-shadow: 0 2.5rem 2.5rem -0.625rem hsla(210, 29%, 84%, 0.5);
  max-inline-size: 30rem;
}
@media (min-width: 48rem) {
  .c-card {
    display: flex;
    max-inline-size: none;
    width: clamp(38rem, 30rem + 17vw, 45.625rem);
  }
}
@media (min-width: 75rem) {
  .c-card {
    width: 45.625rem;
  }
}

.c-card_content {
  background-color: hsl(0, 0%, 100%);
  padding: 2rem;
  padding-bottom: 1.25rem;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .c-card_content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.625rem;
  }
}
@media (min-width: 75rem) {
  .c-card_content {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-inline: 2.5rem;
  }
}

.c-button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: hsl(210, 46%, 95%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms ease-in-out;
}
.c-button::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border-radius: 50%;
}
.c-button.is-active {
  background-color: hsl(214, 17%, 51%);
}
.c-button.is-active .c-icon_button {
  fill: hsl(0, 0%, 100%);
  rotate: -30deg;
}
.c-button:focus-visible {
  outline: 2px solid hsl(214, 17%, 51%);
  outline-offset: 0.25rem;
}
.c-button.is-active:focus-visible {
  outline-color: hsl(0, 0%, 100%);
}
@media (min-width: 64rem) {
  .c-button:hover, .c-button:focus-visible {
    background-color: hsl(214, 17%, 51%);
  }
  .c-button:hover .c-icon_button, .c-button:focus-visible .c-icon_button {
    fill: hsl(0, 0%, 100%);
  }
  .c-button.is-active:focus-visible {
    outline-color: hsl(214, 17%, 51%);
  }
}

.c-icon_button {
  transform: translate(0.05rem, -0.05rem);
  fill: hsl(214, 17%, 51%);
  transition: fill 150ms ease-in-out, rotate 150ms ease-out;
}

.c-sharing_tooltip {
  background-color: hsl(217, 19%, 35%);
  color: hsl(212, 23%, 69%);
  width: 100%;
  height: 2.5rem;
  padding-inline: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: absolute;
  bottom: -1.25rem;
  left: -2rem;
  gap: 1.5rem;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}
@media (min-width: 48rem) {
  .c-sharing_tooltip {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: -moz-fit-content;
    width: fit-content;
    padding-inline: 2.5rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 0.625rem 0 hsla(210, 29%, 84%, 0.5);
  }
}

#tooltip {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease-in-out;
}

#tooltip[data-show] {
  opacity: 1;
  pointer-events: auto;
}

#tooltip.hiding {
  opacity: 0;
  transition: opacity 150ms ease-in;
}

@media (min-width: 48rem) {
  #arrow,
  #arrow::before {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    background: inherit;
  }
  #arrow {
    visibility: hidden;
  }
  #arrow::before {
    visibility: visible;
    content: "";
    transform: rotate(45deg);
  }
  #tooltip[data-popper-placement^=top] > #arrow {
    bottom: -0.6rem;
  }
  #tooltip[data-popper-placement^=bottom] > #arrow {
    top: -0.6rem;
  }
  #tooltip[data-popper-placement^=left] > #arrow {
    right: -0.6rem;
  }
  #tooltip[data-popper-placement^=right] > #arrow {
    left: -0.6rem;
  }
}
.c-icon_button\:tooltip {
  fill: hsl(0, 0%, 100%);
  transition: fill 150ms ease-in-out;
}

.c-button_small {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button_small::before {
  content: "";
  position: absolute;
  inset: -0.5rem;
}
.c-button_small:focus-visible {
  outline: 2px solid hsl(210, 46%, 95%);
  outline-offset: 0.25rem;
}
@media (min-width: 64rem) {
  .c-button_small:hover .c-icon_button\:tooltip, .c-button_small:focus-visible .c-icon_button\:tooltip {
    fill: hsl(212, 23%, 69%);
  }
}

/* #endregion = COMPONENTS */
/* #region = OBJECTS / LAYOUT */
.o-flex_col {
  display: flex;
  flex-direction: column;
}

.o-flex_row {
  display: flex;
  flex-direction: row;
}

.o-main_image {
  width: 100%;
  aspect-ratio: 327/200;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 0.625rem;
  border-top-left-radius: 0.625rem;
}
@media (min-width: 48rem) {
  .o-main_image {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.625rem;
    inline-size: clamp(14.3rem, 10rem + 10vw, 18rem);
  }
}

.o-user_image {
  width: 2.5rem;
  border-radius: 50%;
}

.o-tooltip_animation {
  transform: translateY(2rem);
}

/* #endregion = OBJECTS / LAYOUT */
/* #region = UTILITIES */
.u-font_color\:grey-500 {
  color: hsl(214, 17%, 51%);
}

.u-font_color\:grey-400 {
  color: hsl(212, 23%, 69%);
}

.u-flex_gap\:1rem {
  gap: 1rem;
}

.u-flex_gap\:1\.5rem {
  gap: 1.5rem;
}

.u-flex_align-i\:center {
  align-items: center;
}

.u-flex_justify-c\:sp-btw {
  justify-content: space-between;
}

.u-mb\:1rem {
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .u-mb\:1rem {
    margin-bottom: 0;
  }
}

.u-pos\:relative {
  position: relative;
}

/* #endregion = UTILITIES *//*# sourceMappingURL=style.css.map */