.content {
  width: 100%;
  min-height: 80vh;
  padding: 0.5rem;
  display: flex;
  gap: 1rem;
}

.content-left {
  min-width: 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile {
  width: 100%;
}

.profile > .info-wrapper {
  display: flex;
  gap: 0.75rem;
}

.profile > .info-wrapper > .photo {
  width: 175px;
  height: 175px;
  background-color: var(--bg-color);
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 2px solid var(--blue);
}

.links .title {
  font-size: 1rem;
  color: white;
  background-color: var(--blue);
  padding: 0.25rem;
}

.links .link-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.links .link-wrapper div {
  width: 100%;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.links .link-wrapper div .type {
  padding: 0.15rem;
  width: 100px;
  background-color: var(--light-blue);
  border-radius: 2px;
}

.links .link-wrapper div a {
  padding: 0.15rem;
  width: 100%;
  background-color: var(--lighter-blue);
  border-radius: 2px;
}

.interests {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 2px solid var(--blue);
}

.interests .title {
  font-size: 1rem;
  color: white;
  background-color: var(--blue);
  padding: 0.25rem;
}

.interests .interests-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.interests .interests-wrapper div {
  width: 100%;
  height: fit-content;
  padding: 0.25rem;
  display: flex;
  align-items: start;
  gap: 0.25rem;
}

.interests .interests-wrapper div .type {
  padding: 0.15rem;
  width: 100px;
  background-color: var(--light-blue);
  align-self: stretch;
  border-radius: 2px;
}

.interests .interests-wrapper div .text {
  padding: 0.15rem;
  width: 100%;
  background-color: var(--lighter-blue);
  border-radius: 2px;
}

.content-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
}

.about-me {
  width: 100%;
}

.latest-posts .title,
.about-me .title {
  width: 100%;
  background-color: var(--highlight-color);
  color: var(--red);
  font-size: 14px;
  padding: 0.25rem;
}

.about-me .about {
  width: 100%;
  display: flex;
}

.about-me .about b {
  width: -webkit-fill-available;
  color: var(--red);
}

.latest-posts {
  width: 100%;
}

.latest-posts .posts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.latest-posts .posts .post {
  display: flex;
  flex-direction: column;
}

.latest-posts .posts .post h1 {
  font-size: 16px;
}
.latest-posts .posts .post p {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
