/* Headings */
.md-content h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #222;
    /* margin-top: 24px; */
    /* 1.5em → 24px */
    margin-bottom: 0px;
    font-size: 32px;
    /* 0.5em → 8px */
    line-height: 1;
}

.md-content h2,

.md-content h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #222;
    font-size: 20px;
    margin-top: 28px;
    /* 1.5em → 24px */
    margin-bottom: 28px;
    /* 0.5em → 8px */
    line-height: 1;
}

/* .md-content strong {
    font-weight: 300 !important;
} */

.md-content h2 {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 4.8px;
    font-size: 20px;
    /* 0.3em → 4.8px */
}

/* Reserved keyword section titles */
.md-typeset .doc-section-title,
.md-typeset strong,
.md-typeset strong:has(+ table),
.md-typeset strong:has(+ .highlight),
.md-typeset strong:has(+ p) {
    font-weight: 400 !important;
    font-size: 16px !important;
}

/* Target strong inside code blocks generated by codehilite or superfences */
.codehilite strong,
.highlight strong,
pre code strong,
.md-typeset pre code strong {
    font-weight: 400 !important;
    font-size: 16px !important;
}

/* Body text */
.md-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    /* 1rem = 16px (same as 1em) */
}

/* Code blocks */
.md-typeset pre>code {
    font-size: 14px;
    line-height: 1.5;
    padding: 16px;
    /* 1em → 16px */
}

/* Table base styles */
.md-typeset table {
    /* font-size: 10px; */
    /* base value, can be overridden per cell */
    line-height: 1;
    font-weight: 300;
    border-radius: 5px;
}

/* Table headers */
.md-typeset table th {
    font-weight: 500 !important;
    font-size: 16px !important;
}

/* All table data cells */
.md-typeset table td {
    padding: 6px;
    vertical-align: top;
    font-weight: 400;
}

/* First column only */
.md-typeset table td:first-child {
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Second column only */
/* Second column only - including all child elements inside */
.md-typeset table td:nth-child(n),
.md-typeset table td:nth-child(n) * {
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* Reduce font size and remove bold from admonition title */
.md-typeset .admonition-title {
    font-weight: normal;
    font-size: 16px;
}

/* Admonitions (Key Features box) */
.md-typeset .admonition {
    font-size: 14px;
}

/* Clean spacing for definition lists */
.md-typeset dl {
    margin-top: 16px;
    /* 1em → 16px */
    margin-bottom: 32px;
    /* 2em → 32px */
}