#sp-login-modal {
  width: 300px;
  border-radius: 8px;
}

#sp-close-login-modal {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

#sp-login-overlay {
  backdrop-filter: blur(4px);
}

.load-more-button {
  margin-top: 8px;
  padding: 8px 16px;
  border: 1px solid #d1d1d1;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #012f6d;
  width: fit-content;
  align-self: center;
  cursor: pointer;
}

.sp_at_list_bookmark_container {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  overflow-y: auto;
}

.sp_at_list_bookmark_container_content {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 378px));
  grid-auto-rows: 1fr;
  column-gap: 24px;
  row-gap: 36px;
}

@media screen and (max-width: 767px) {
  .sp_at_list_bookmark_container_content {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

.list-bookmark-item {
  width: 100%;
  max-width: 378px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list-bookmark-item--header {
  overflow: hidden;
  border-radius: 8px;
}

.bookmarked-icon-mark {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5px;
  right: 5px;
  z-index: 2;
}

.list-bookmark-item--image {
  width: 100%;
  height: 178px;
  overflow: hidden;
  position: relative;
}

.bookmarked-icon-mark>img {
  width: 15px;
  height: 15px;
}

.list-bookmark-item--image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.list-bookmark-item--body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-bookmark-item--body a {
  text-decoration: none;
}

.list-bookmark-item--title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color-primary);
}

.list-bookmark-item--footer {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.list-bookmark-item--author {
  color: var(--color-accent);
}

.list-bookmark-item--date {
  color: var(--color-primary);
}

.list-bookmark-item--separator {
  width: 2px;
  height: 100%;
  background-color: var(--disabled-color);
}

/* empty state style */
.sp_at_empty_state_notification {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
}

.sp_at_empty_state_notification--icon-wrapper {
  padding: 12px 0;
}

.sp_at_empty_state_notification--icon {
  opacity: 0.7;
  width: 262px;
  height: auto;
}

.sp_at_empty_state_notification--description-wrapper p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  max-width: 454px;
}
