@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root{
    --line:#E7E7EA;
    --brand:#B9185A;
    --brand-dark:#7D0F3E;
    --brand-tint:#FCE9F0;
  }
.md-ellipsis {
    font-weight: 500;
}
.md-header {
    /* background: linear-gradient(135deg, #a30c37 0%, #d81b60 100%); */
    background:linear-gradient(100deg, var(--brand-dark), var(--brand));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.md-tabs {
  /* background-color: #7d0928; */
  background:var(--brand-dark);;
}
.md-tabs__item {
  border-bottom:2px solid transparent;
}
.md-tabs__item--active {
    border-bottom-color:#fff;
}
.md-content {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
}
.md-content article {
}
.md-content h1 {
    font-family: Open Sans, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 8px;
}
h1::before {
  content: "";
  width: 4px;
  height: 32px;
  background: var(--brand);
  border-radius: 2px;
  display: inline-block;
}
.md-content h2 {
    font-family: Open Sans, sans-serif;
    margin-top: 1.8rem;
    color: #0f172a;
    font-weight: 500;
    font-size: 1.3rem;
    border-bottom:1px solid var(--line);
}
.md-content p, .md-content li {
    /* font-family: 'Inter', system-ui, -apple-system, sans-serif; */
    font-family: Open Sans, sans-serif;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 20px;
    text-align: left;
    line-height: 32px;
    font-weight: 400;
}