

/*========================================
a00. Initialize it
==========================================*/

:root {
    --color-primary: #0b0c0c;
    --link-color: #0077b3;
    --color-background: #ebf8ff;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-style: normal;
    line-height: 1.5;
    color: var(--color-primary);
    margin: 0; /* Remove default body margin */
}

.wrapper {
    max-width: 100%; /* Set maximum width to 100% */
    margin: 0 auto; /* Center the content horizontally */
    padding: 0 1cm; /* Add 1cm padding to the left and right */
    box-sizing: border-box; /* Include padding in the width calculation */
}

.header {
    padding: 1rem 0 0 0;
}

.main_content {
    flex-direction: column;
    flex: 1 0 auto;
}

.side_content {
    flex-shrink: 0;
}

/*========================================
a01. Navigation
==========================================*/

.langsung_ke_konten {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.brand {
    font-weight: bolder;
    font-size: 2em;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-right a {
    padding: 0 1rem 0 0;
    font-size: 2em;
}

/*========================================
a02. Mini Hero
==========================================*/

.mini_hero {
    margin: 10px 0 0 0;
}

.mini_hero h1 {
    font-size: 13cqw;
    font-weight: bolder;
    line-height: 1;
    margin: 0 0 20px 0;
}

.mini_hero p {
    font-size: 4cqw;
}

/*========================================
a03. Article
==========================================*/

h2 {
    font-size: 2.5em;
    margin: 0;
    font-weight: bold;
}

h3 {
    border-top: 1px solid var(--link-color);
    border-bottom: 1px solid var(--link-color);
    padding: 5px 0 5px 0;
}

a {
    color: var(--link-color);
    text-decoration: underline;
}

p {
    font-size: 1.5em;
}

.list_artikel {
    background-color: var(--color-background);
    border-radius: 10px;
    padding: 2rem;
    margin: 0 0 1em 0;
}

.pratinjau_artikel {
    max-height: calc(5em * 1.33);
    overflow: hidden;
    position: relative;
}

.pratinjau_artikel p::after {
    content: "";
    background: linear-gradient(to right, transparent, #ebf8ff 80%);
    display: block;
    height: calc(1em * 1.5 + 1px);
    position: absolute;
    inset-block-end: 0;
    pointer-events: none;
    width: 100%;
}

.artikel img {
    width: 100%;
    height: auto;
}

.featured_image {
    height: 615px;
    margin-bottom: 15px;
}

.featured_image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    margin: 0 0 1em 0;
}

blockquote {
    background-color: var(--color-background);
    font-size: 1.5em;
    border-left: 10px solid var(--link-color);
    margin: 0; /* Ensure blockquote has no margin */
}

code {
    font-size: 0.9em;
    color: #B11414;
}

:not(pre)>code[class*=language-], pre[class*=language-] {
    background-color: #ffffff;
    border-radius: 0px;
    border-left: 15px solid var(--link-color);
    font-size: 1.2em;
    margin: 0; /* Ensure code blocks have no margin */
}

.artikel ul li {
    font-size: 1.5em;
    display: flow;
    padding: .5rem;
}

.artikel ul li::before {
    content: "\2022";
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--link-color);
    margin-right: 1rem;
    font-size: 1em;
    color: transparent;
    display: inline-block;
    position: relative;
    top: 9px;
}

.artikel ol {
    counter-reset: steps;
}

.artikel ol li {
    font-size: 1.5em;
    display: flow;
    counter-increment: steps;
    padding: .5rem;
}

.artikel ol li::before {
    content: counter(steps)".";
    margin-right: 0.5rem;
    font-weight: 900;
    color: var(--link-color);
}

.artikel ol ol li::before {
    content: counter(steps);
    background: var(--link-color);
    color: white;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    line-height: 1em;
    aspect-ratio: 1;
}

.artikel ol li::marker {
    font-size: 1.5em;
    font-weight: 900;
}

.artikel table {
    border-color: var(--link-color);
    font-size: 1.2em;
    margin: 0; /* Ensure tables have no margin */
}

.artikel tr:nth-child(even) {
    background: var(--color-background);
}

form {
    font-size: 1.2em;
    margin: 0; /* Ensure forms have no margin */
}

[type=submit], [type=button] {
    background-color: var(--link-color);
    border-radius: 5px;
    border: none;
    border-bottom: solid 5px #002f46;
    color: #fff;
    font-size: 1.2em;
    font-weight: 900;
}

/*========================================
a04. Pagination
==========================================*/

.pagination {
    font-size: 1.5em;
    margin: 0 0 1em 0;
}

.pagination a:last-child {
    padding: 0 0 0 10px;
}

.arrow {
    color: var(--link-color)
}

/*========================================
a05. Side Bar
==========================================*/

.sidebar ul {
    padding: 0px;
}

li::marker {
    color: var(--link-color
