.list {
   display: flex;
   flex-direction: column;  
}

.content {
   width: 80%;
}

.lists {
   gap: 18px;
   display: flex;
   flex-direction: column;
}

.highlighted {
   color: rgb(127, 66, 225);
}

.list-item {
   display: flex;
   padding: 12px 0;
   flex-direction: row;
   justify-content: space-between;
}

.list-item p {
   margin: 0;
}

.list .list-item:not(:last-child) {
   border-bottom: 1px solid #d7d7d7;
}

.dropdown-card {
   padding: 0 16px;
   border-radius: 8px;
   border: 1px solid #d7d7d7;
}

.dropdown-card__header {
   display: flex;
   padding: 16px 0;
   align-items: center;
   justify-content: space-between;
}

.dropdown-card-header__title {
   margin: 0;
}

.dropdown-card__body {
   padding: 12px 0;
   border-top: 1px solid #d7d7d7;
}

.list ul {
   padding-left: 16px;
   margin: 12px 0;
}

.list ul, .list-item {
   font-size: 16px;
}