.profile {
  background: var(--cc-light-bg);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 2rem;
  transition: all .5s;
  display: flex;
  box-shadow: 0 4px 8px #0000001a;
}

.profile:hover {
  transform: translateY(-10px)rotateX(5deg);
  box-shadow: 0 0 35px #cf2e2eb0;
}

.profile-image {
  object-fit: cover;
  border: 2px solid #d1d1d1cc;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: .5rem;
  transition: all .5s;
  box-shadow: 0 8px 32px #0000004f;
}

.profile-content {
  text-align: center;
  flex: 1;
  width: 100%;
}

.profile-name {
  color: var(--cc-primary-accent);
  text-align: center;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.profile p {
  color: var(--cc-text-color);
  text-align: justify;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.profile-linkedin {
  width: 100%;
  color: inherit;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.profile-linkedin:hover {
  color: inherit;
  text-decoration: none;
}

.profile-linkedin:hover .profile-image {
  transform: translateZ(20px)scale(1.05);
  box-shadow: 0 12px 40px #0000006f;
}

@media (width <= 768px) {
  .profile {
    padding: 1.5rem;
  }

  .profile-image {
    width: 100px;
    height: 100px;
  }
}

.profile p {
  text-align: justify;
  color: var(--cc-text-color);
}
/*# sourceMappingURL=site-cdf.8689c119.css.map */
