/* Contact Section Styles */

.section__contact {
  padding: calc(7rem - var(--header-height)) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background: var(--brand);
  min-height: calc(100vh - var(--header-height));
}

.section__contact .content {
  max-width: calc(100vw - 2 * var(--header-height));
  /* width: 100%; */
  color: var(--bg);
}

.section__contact .section__title {
  color: var(--bg);
}

.gif__box {
  width: 20vw;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Blurred edge effect - smooth circular fade
  mask: radial-gradient(circle at center, black 50%, transparent 80%);
  -webkit-mask: radial-gradient(circle at center, black 50%, transparent 80%); */
}

.gif__box video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: default;
  pointer-events: none;
}

.linkedin-link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.linkedin-bg {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: calc(1.5em - 0.4em);
  height: calc(1.5em - 0.4em);
  background-color: var(--brand);
  transition: background-color 0.2s ease;
  z-index: 1;
}

.linkedin-link:hover .linkedin-bg {
  background-color: var(--primary);
}

.linkedin-link img {
  height: 1.5em;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
}
