.article-sidebar {
  width: 320px;
}
@media (max-width: 991px) {
  .article-sidebar {
    width: 100%;
    order: -1;
  }
}
.article-sidebar .sidebar-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 12px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .article-sidebar .sidebar-card {
    margin-bottom: 20px;
  }
}
.article-sidebar .sidebar-card:last-child {
  margin-bottom: 0;
}
.article-sidebar .sidebar-card.art-card .art-toggle {
  display: none;
}
@media (max-width: 991px) {
  .article-sidebar .sidebar-card.art-card .art-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0 !important;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }
}
.article-sidebar .sidebar-card.art-card ul {
  list-style: none;
}
@media (max-width: 991px) {
  .article-sidebar .sidebar-card.art-card ul {
    position: static;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    box-shadow: none;
    z-index: 100;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 991px) {
  .article-sidebar .sidebar-card.art-card ul.expanded {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding: 10px;
  }
}
.article-sidebar .sidebar-card.art-card ul li {
  margin-bottom: 2.4px;
}
.article-sidebar .sidebar-card.art-card ul li a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-left: 2px solid transparent;
  border-radius: 3px;
  font-family: "Inter 28pt", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.4;
}
.article-sidebar .sidebar-card.art-card ul li a:hover {
  background: rgba(181, 0, 30, 0.08);
  color: #b5001e;
}
.article-sidebar .sidebar-card.art-card ul li.active a {
  background: rgba(181, 0, 30, 0.0509803922);
  color: #b5001e;
  border-left-color: #b5001e;
  font-weight: 500;
}
.article-sidebar .sidebar-card .author-info {
  gap: 12px;
  margin-bottom: 15px;
}
.article-sidebar .sidebar-card .author-info .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(181, 0, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-sidebar .sidebar-card .author-info .author-details {
  flex: 1;
}
.article-sidebar .sidebar-card .author-info .author-details .auth-name {
  font-family: "Inter 28pt", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.article-sidebar .sidebar-card .author-info .author-details p {
  font-family: "Inter 28pt", sans-serif;
  font-size: 12px;
  color: rgb(154, 144, 128);
}
.article-sidebar .sidebar-card .author-meta {
  gap: 12px;
}
.article-sidebar .sidebar-card .author-meta .meta-column {
  flex: 1;
}
.article-sidebar .sidebar-card .author-meta .meta-column .label {
  font-family: "Inter 28pt", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgb(154, 144, 128);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.article-sidebar .sidebar-card .author-meta .meta-column .value {
  font-family: "Inter 28pt", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #111827;
}
.article-sidebar .sidebar-content {
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .article-sidebar .sidebar-content {
    position: static;
  }
}
.article-sidebar .sidebar-content img {
  filter: grayscale(1);
  transition: all 0.2s ease-in-out;
}
.article-sidebar .sidebar-content img:hover {
  filter: grayscale(0) !important;
}
.article-sidebar .sidebar-content img.twitter {
  filter: opacity(0.5);
}
@media (max-width: 991px) {
  .article-sidebar .toc-card {
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
  }
}
.article-sidebar .toc-card .toc-toggle {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 991px) {
  .article-sidebar .toc-card .toc-toggle {
    display: flex;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .article-sidebar .toc-card .toc-nav {
    position: relative;
  }
}
.article-sidebar .toc-card .toc-nav .toc-list {
  list-style: none;
}
@media (max-width: 991px) {
  .article-sidebar .toc-card .toc-nav .toc-list {
    position: static;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    box-shadow: none;
    z-index: 100;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 991px) {
  .article-sidebar .toc-card .toc-nav .toc-list.expanded {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding: 10px;
  }
}
.article-sidebar .toc-card .toc-nav .toc-list .toc-item {
  margin-bottom: 5px;
}
.article-sidebar .toc-card .toc-nav .toc-list .toc-item:last-child {
  margin-bottom: 0;
}
.article-sidebar .toc-card .toc-nav .toc-list .toc-item a {
  display: block;
  padding: 6px 10px;
  border-left: 3px solid transparent;
  border-radius: 4px;
  font-family: "Inter 28pt", sans-serif;
  font-size: 13px;
  color: #4b5563;
}
.article-sidebar .toc-card .toc-nav .toc-list .toc-item a:hover {
  background: rgba(181, 0, 30, 0.08);
  color: #b5001e;
}
.article-sidebar .toc-card .toc-nav .toc-list .toc-item.active a {
  background: rgba(181, 0, 30, 0.0509803922);
  color: #b5001e;
  border-left-color: #b5001e;
  font-weight: 500;
}

/*# sourceMappingURL=sidebar.css.map */
