.main {
  /* display: flex; */
}

.aside,
.content {
  min-height: 100dvh;
}

.aside {
  background: var(--aside-backgroud-color, #7264d6);
  padding: 24px;
}

/* #: Profile */
.profile {
  /* padding: 16px 0; */
}

.profile .picture-wrapper {
  display: flex;
  gap: 2px;
  flex-direction: column;
  /* align-items: flex-end; */
}

.profile .picture,
.profile .qrcode {
  width: 134px;
  height: 134px;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.profile .picture {
  width: 100%;
  height: initial;
}
.profile .qrcode {
  /* display: none; */
}
.profile .display-name {
  margin-top: 8px;
  color: var(--gray-darkest-color, #2e2e48);
  font-weight: 800;
  line-height: 1.25;
}

.profile .sms-link {
  font-size: 1.6rem;
  line-height: 1.33;
  margin-top: 4px;
  color: var(--white-color);
  text-decoration: none;
}

.profile .sms-cta {
  text-align: center;
  padding: 8px 12px;
  color: var(--white-color);
  background-color: var(--primary-color);
}

.profile .cta-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.profile .role {
  margin-top: 4px;
  background: linear-gradient(90deg, #a478e8 0%, #516cf7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.profile .quote-wrapper {
  margin-top: 16px;
}

.profile .horizontal-seperator {
  margin: 16px 0;
}

.profile .quote,
.profile .quote-author {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  color: var(--gray-dark-color);
  line-height: 1.33;
  letter-spacing: 0.1rem;
  width: 100%;
}

.profile .quote {
  font-size: 1.8rem;
  font-family: 'Bad Script';
}

.profile .quote-author {
  margin-top: 4px;
  font-size: 1.2rem;
}

.profile .attribute-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.profile .attribute-wrapper {
  display: flex;
  justify-content: flex-start;
  column-gap: 8px;
  align-items: center;
}

.profile .attribute-icon-wrapper {
  display: flex;
  align-items: center;
  justify-self: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  background-color: var(--gray-lightest-color);
  border-radius: 50%;
}

.profile .attribute-icon {
  width: 100%;
  height: 100%;
}

.profile .attribute-detail {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  flex: 1;
  overflow-y: hidden;
}
.profile .attribute-name,
.profile .attribute-value {
  overflow-wrap: anywhere;
}
.profile .attribute-name {
  font-size: 1.4rem;
  color: var(--gray-default-color);
}

.profile .attribute-value {
  font-size: 1.4rem;
  color: var(--gray-dark-color);
}

.profile .attribute-icon-wrapper.filled {
  padding: 0;
  background-color: var(--background-color, transparent);
}

.profile .list-with-heading {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
/* # Profile */

/* #: Content */
.content {
  background-color: var(--gray-lightest-color);
  padding: 24px;
}

.content .section {
  padding: 8px;
  background-color: #fff;
  border-radius: 4px;
}

.content .section + .section {
  margin-top: 32px;
}

.content .section .section-content {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.content .section .section-content.vertical {
  flex-direction: column;
}

.content .section-content .items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content .section-content .items .item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 4px;
}

.content .section-content .items .item:hover {
  background-color: var(--gray-lightest-color);
}

.content .edu-icon,
.content .experience-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
}

.content .edu-icon img,
.content .experience-icon img {
  width: 100%;
  height: 100%;
}

.content .edu-details,
.content .experience-details {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: space-between;
}

.content .edu-details .part,
.content .experience-details .part {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  height: 100%;
}

/* .content .edu-details .basic,
.content .experience-details .basic {
  flex: 1;
} */

.content .edu-details .time,
.content .experience-details .time {
  flex: 1;
  min-width: 100px;
  text-align: end;
}

.content .edu-details .text,
.content .experience-details .text {
  color: var(--gray-darkest-color);
  font-size: 1.4rem;
  overflow-wrap: anywhere;
}
/* # Content */
