/* stylelint-disable @stylistic/selector-list-comma-newline-after */

h1 {
    color: black !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
    font-weight: 700 !important;
}

mark {
    background-color: yellow; /* Highlight color */
    font-weight: bold; /* Optional: Make the text bold */
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
    margin-bottom: 10px;
}

hr {
    display: none;
}

a {
    color: var(--primary-color);
}

article p {
    line-height: 1.8;
    font-size: 18px;
    color: rgb(60, 60, 59);
    font-family: "Inter", sans-serif;
}

article p:not(:first-child):not(:last-child) {
    margin-top: 20px;
    margin-bottom: 20px;
}

li p:not(:last-child) {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

article ul li,
article ol li {
    font-size: 18px;
    line-height: 1.8;
    color: rgb(60, 60, 59);
    font-family: "Inter", sans-serif;
}

/* post */
.author {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.info {
    color: rgb(60, 60, 59, 0.7);
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

article {
    width: 100% !important;
    max-width: 100% !important;
    padding: 50px;
    border-radius: 15px;
    background-color: white;
}

.profile {
    border-radius: 15px;
    padding: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: white;
}

.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    background-color: orange;
    font-family: "Inter", sans-serif;
}

/* code */
.highlight__panel {
    display: none;
}

pre, code {
    font-size: 17px;
    border-radius: 5px;
    overflow-x: auto;
    color: #ffffff;
    background-color: #08090a;
    font-family: "Fira Code", monospace;
}

code {
    padding: 5px;
}

/* svg */
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

/* nav */
.nav-item {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500 !important;
    color: var(--primary-color) !important;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}