:root {
  --se-black: #000000;
  --se-white: #ffffff;
  --se-green: #8B8F5D;
  --se-orange: #E56C27;
  --se-grey: #454343;
}

.author-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--se-green);
  padding-top: 24px;
  margin: auto;
  width: 100%;
  color: black;

  .author-profile-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .flex-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  p {
    margin: 0;
  }

  .profile-avatar {
    border-radius: 9999px;
    max-width: 100px;
  }

  .profile-bio {
    font-weight: 400;
  }

  .profile-name {
    font-size: 20px;
    font-weight: 700;
  }

  .social-links {
    display: flex;
    gap: 10px;
  }

  svg {
    fill: var(--se-green);
  }
}

.se-summary,
.se-summary-category {
  max-width: 420px;
  width: 300px;

  .se-summary__link {
    color: var(--se-dark-grey);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
  }

  .se-summary__item {
    &.active {
      .se-summary__link {
        display: flex;
        font-weight: 700;
        gap: 10px;

        &::before {
          content: "";
          display: block;
          width: 6px;
          background-color: var(--se-green);
        }
      }
    }
  }

  .se-summary__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .se-summary__title {
    font-weight: 700;
    color: var(--se-black);
    font-size: 24px;
    margin: 0;
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .author-profile-card {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {}

@media (min-width: 1280px) {}

@media (min-width: 1536px) {}