* {
    box-sizing: border-box;
}

.nav-link > span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand {
    background-image: url("/static/img/logo.svg");
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    width: 99px;
    height: 34px;
    text-indent: -9999px;
} [data-bs-theme="dark"] .brand {
    background-image: url("/static/img/logo-white.svg");
}

article {
    word-wrap: break-word;
    font-size: 18px;
    padding: 2rem 0 2rem 0;
}

.card-cover a {
    color: #fff;
    text-decoration: none;
}

.dlc-category-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 10px;
    height: auto;
    min-height: 192px;
    flex-wrap: nowrap;
}

.dlc-category-number {
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 600;
    font-size: 7rem;
    line-height: 124px;
    text-align: center;
    color: #0067b8;
    margin-right: 37px;
    width: 100px;
}

.dlc-category-content-block {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.dlc-category-title-block {
    min-width: 0;
    max-width: 45rem
}

.dlc-category-title {
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 34px;
    color: #0067b8;
    text-decoration: none
}

.dlc-category-title:hover {
    text-decoration: underline
}

.dlc-category-description {
    font-family: 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    color: var(--bs-body-color, #000);
    max-width: 60rem;
    margin-top: 1rem
}

.dlc-category-divider {
    border: 0;
    border-top: .0625rem solid #505050;
    margin: 0
}

.blog-tags {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tag {
    display: inline-block;
    padding: .4rem .8rem;
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background-color: var(--bs-light-bg-subtle);
    border: 1px solid var(--bs-secondary-border-subtle);
    border-radius: 512px;
    transition: color .1s, background-color .2s, border-color .1s;
} .tag:hover {
    border-color: var(--bs-light-border-subtle);
    background-color: #00000010;
} .tag:active {
    border-color: var(--bs-light-border-subtle);
    background-color: #00000020;
}

@media screen and (max-width: 990px) {
    .dlc-category-block {
        gap: 0;
    }
    .dlc-category-content-block {
        width: 80%;
    }
}

.nav-link {
    border-radius: .5rem;
} .nav-link:hover {
    background-color: #00000010;
}

.nav-link > span {
    padding: .5rem 0 .5rem 0;
}
.nav-link.active > span {
    font-weight: 600;
    box-shadow: inset 0 -3px 0 #0c65c5;
}

@media screen and (max-width: 990px) {
    .navbar .navbar-nav {
        margin: 2rem 0 2rem 0;
    }
    .nav-link {
        display: block;
    }
    .nav-link > span {
        padding: .5rem;
        margin: 0 .5rem 0 .5rem;
    }
    .nav-link.active > span {
        box-shadow: inset -3px 0 0 #0c65c5;
    }
}

/* Post */
ul.blog-post-meta {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
} ul.blog-post-meta li {
    float: left;
    margin: .25rem;
}

/* Dropdown */
.dropdown-item {
    transition: color .1s, background-color .2s;
}
.dropdown-item:active, .dropdown-item:focus {
    color: var(--bs-nav-link-color);
    background-color: #00000010;
}