.about-div {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 2rem;
  padding: 24px;
  box-sizing: border-box;
  position: relative;

  background: radial-gradient(
    circle at center,

    rgba(21, 112, 147, 0.08) 0%,
    rgba(34, 165, 176, 0.12) 45%,
    rgba(12, 65, 73, 0.85) 100%
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(89, 253, 252, 0.15);
  border-radius: 32px;
}

.about-div::before {
  content: "";
  position: absolute;
  top: 88px;
  bottom: 32px;
  left: 60px;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--accent),
    rgba(89, 253, 252, 0.24)
  );
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(89, 253, 252, 0.35);
}

.about-h2 {
  color: white;
  font-size: 4rem;
  text-align: center;
  margin-top: -4rem;
  padding: 1rem 0;
  font-family: var(--font-mono);
  text-shadow: 0px 2px 4px #59fdfc;
}

.about-h3 {
  color: var(--text);
  text-align: left;
  font-size: 2rem;
  color: #59fdfc;
  padding: 8px 0 24px 64px;
}

.about-p {
  color: var(--text);
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 16px;
  align-items: start;
  margin: 0 0 16px 0;
  position: relative;
  padding: 16px 16px 16px 0;
  background: linear-gradient(
    to right,
    transparent 0 72px,
    rgba(2, 9, 13, 0.48) 72px 100%
  );
  border-radius: 8px;
}

.about-p i {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  text-align: center;
  margin-top: 0;
  padding: 0;
  background-color: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(89, 253, 252, 0.35);
}

@media (max-width: 768px) {
  .about-div {
    margin: 0;
    padding: 16px;
  }

  .about-div::before {
    left: 32px;
    top: 80px;
    bottom: 24px;
  }

  .about-h3 {
    padding-left: 40px;
  }

  .about-p {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 8px;
    overflow-wrap: anywhere;
    word-break: break-word;
    background: linear-gradient(
      to right,
      transparent 0 40px,
      rgba(2, 9, 13, 0.48) 40px 100%
    );
  }

  .about-p i {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
