.profile-header-card {
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .profile-header-card {
    height: auto;
  }

  .profile-avatar-col {
    order: -1;
    margin-bottom: 15px;
    text-align: center;
  }

  .profile-blur-container {
    flex-direction: column !important;
  }
}

.profile-blur-container {
  position: relative;
  background: rgba(34, 31, 44, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 15px;
  margin: 0;
  box-shadow: 1px 0 40px #0000004f;

  display: flex;
}

.profile-blur-container::before,
.profile-blur-container::after {
  content: "";
  position: absolute;
  height: 60%;
  width: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  transition: all 0.3s ease;
  animation: neon-flicker 1.8s infinite ease-in-out;
}

.profile-blur-container::before {
  left: -8px;
}

.profile-blur-container::after {
  right: -8px;
}

.profile-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.5;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.profile-info-col > div:not(:last-child) {
  margin-bottom: 10px;
}

.mycode_quote {
  white-space: normal;
  overflow-x: visible;
}

@media (max-width: 900px) {
  .mycode_quote {
    white-space: nowrap;
    overflow-x: auto;
  }
}

		