.home {
  display: flex;
  flex-direction: column;
  padding: 60px 0;
  gap: 60px;
  overflow: hidden;
}

.home .logo {
  width: 96px;
  height: 96px;
  margin-bottom: 12px;
}

.home__section {
  width: 100%;
  max-width: calc(672px + 20px);
  margin: 0 auto;
  padding: 0 20px;
}

.home__section--grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.home__section--list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.home__chip-group {
  display: flex;
  gap: 10px;
}
.chip {
  background: var(--card-background);
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  color: var(--text-color);
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  position: relative;
  height: 48px;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 250ms ease-out;
  text-align: center;
}

.chip--text-only {
  padding: 0 18px;
}

.chip--icon-only {
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
}

.chip--linkedin {
  background: white;
  color: black;
  transform: rotate(-3deg) !important;
}

.chip--x {
  background: black;
  color: white;
  transform: rotate(3deg) !important;
}

.chip--bluesky {
  background: rgb(11, 122, 255);
  color: white;
  transform: rotate(-2deg) !important;
}

.chip--mastodon {
  background: #6364FF;
}

.chip:hover {
  background: #FFC2C2;
  transition: none;
}

.chip--linkedin:hover {
  background: #F0F0F0;
}

.chip--x:hover {
  background: #707070;
}

.chip--bluesky:hover {
  background: #4E9DFF;
}

.chip--mastodon:hover {
  background: #9C9CFF;
}

.chip:focus {
  outline: none;
}

.card + .chip:hover {
  background: #BBFFAD;
}

.chip:nth-child(5n + 1) {
  transform: rotate(1deg);
}

.chip:nth-child(5n + 2) {
  transform: rotate(-0.5deg);
}

.chip:nth-child(5n + 3) {
  transform: rotate(1deg);
}

.chip:nth-child(5n + 4) {
  transform: rotate(-0.5deg);
}

.chip:nth-child(5n) {
  transform: rotate(1.5deg);
}

.chip__icon {
  height: 24px;
}

.chip--has-image {
  transform: none !important; /* Hacky hack because transform break child mx-blend-modes! wtf! */
}

.chip__image {
  position: absolute;
  mix-blend-mode: multiply;
  width: 110px;
  left: 0;
  transform: translate(-65%, -10%) rotate(5deg);
  user-select: none;
  pointer-events: none;
}

.chip:nth-child(3n + 1) .chip__image {
  left: unset;
  right: 0;
  transform: translate(65%, -5%) rotate(-5deg);
}

@media (max-width: 760px) {
  .chip--text-only {
    font-size: 13px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .chip__image {
    width: 70px;
  }
}
.card {
  background: var(--card-background);
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  position: relative;
  width: 45%;
  max-width: 565px;
  padding: 15px;
  padding-bottom: 0;
  cursor: pointer;
  transition: background 250ms ease-out;
}

.card:hover {
  background: #FFEEAD;
  transition: none;
}

.card:nth-child(3n + 1) {
  transform: rotate(1.5deg);
}

.card:nth-child(3n + 2) {
  transform: rotate(-1.5deg);
}

.card:nth-child(3n + 3) {
  transform: rotate(0.5deg);
}

.card--big, .card--big:nth-child(3n + 1) {
  width: 100%;
  max-width: 600px;
  transform: rotate(-1deg);
}

.card--big:hover {
  background: #BBFFAD;
}

.card__image {
  background: lightgray;
  border-radius: 9px;
  display: block;
  width: 100%;
}

.card__title {
  text-align: center;
  font-size: 16px;
  margin-top: 11px;
  margin-bottom: 13px;
}

.card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.card__link:focus {
  outline: none;
}

@media (max-width: 760px) {
  .card {
    width: 100%;
    max-width: 300px;
  }

  .card--big {
    max-width: 600px;
  }
}
.handy {
  color: var(--the-brand-color);
  display: inline-block;
  font-size: 2em;
  line-height: 0.6em;
  height: 1ch;
  font-weight: 900;
  animation: pointy-hand 800ms steps(1) infinite;
}

@keyframes pointy-hand {
  0% {
    transform: rotate(-2deg) translate(-1px, 0px);
  }

  25% {
    transform: rotate(-1deg) translate(2px, -0.5px);
  }

  50% {
    transform: rotate(1deg) translate(0px, 0.5px);
  }

  75% {
    transform: rotate(-2deg) translate(-3px, 0.5px);
  }

  100% {
    transform: rotate(-1deg) translate(2px, -0.5px);
  }
}
