:root {
    --black: #232323;
    --grey: #595959;
    --blue: #4b4faa;
    --yellow: #e3ae1e;
    --light-blue: #f1f2ff;
    --header: #dde4ec;
    --blue: #0000ff;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

html {
    scrollbar-gutter: stable;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    font-family: "Proza Libre", sans-serif;
    line-height: 1.1;
}

h1 {
    font-size: 2.5rem;

    @media screen and (width < 768px) {
        font-size: 2rem;
    }

    @media screen and (width < 576px) {
        font-size: 1.75rem;
    }
}

h2 {
    font-size: 2rem;
    @media screen and (width < 768px) {
        font-size: 1.75rem;
    }

    @media screen and (width < 576px) {
        font-size: 1.5rem;
    }
}

h3 {
    font-size: 1.75rem;
    @media screen and (width < 768px) {
        font-size: 1.5rem;
    }

    @media screen and (width < 576px) {
        font-size: 1.25rem;
    }
}

h4 {
    font-size: 1.5rem;
    @media screen and (width < 768px) {
        font-size: 1.25rem;
    }

    @media screen and (width < 576px) {
        font-size: 1.1rem;
    }
}

h5 {
    font-size: 1.25rem;
    @media screen and (width < 768px) {
        font-size: 1.1rem;
    }
}

img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

a {
    color: var(--black);
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

p {
    font-size: 16px;
    line-height: 1.4;
    color: var(--black);
}

label {
    font-size: 24px;
    font-weight: 600;
}

section {
    padding-block: 2rem;
}

.home-section {
    padding-inline: 4vw;
}

.home-banner {
    display: grid;
    gap: 1.5rem;
    margin-block: 1rem 3rem;

    @media screen and (width > 800px) {
        grid-template-columns: 2fr 1fr;
    }
}

.home-banner-block-img {
    height: 300px;
    margin-bottom: 0.5rem;

    img {
        border-radius: 12px;
        height: 100%;
    }

    @media screen and (width > 800px) {
        height: 450px;
    }
}

.home-banner-block-content,
.home-category-card-content,
.home-category-list-content,
.home-team-content,
.home-team-post,
.article-info,
.post-author-block,
.post-card-content,
.category-block-content,
.home-banner-side-block {
    display: flex;
    flex-flow: column;
    gap: 0.35rem;
}

.content-category,
.content-author {
    color: var(--grey);
    font-size: 14px;
}

.content-title {
    font-size: 18px;
    font-weight: 700;
}

.home-banner-side {
    overflow: hidden;
}

.home-banner-side-wrapper {
    width: 100%;
    overflow-x: scroll;
    border-top: 4px solid var(--yellow);
    margin-top: 0.5rem;
}

.home-banner-side-posts {
    display: flex;
    gap: 0.75rem;
    width: fit-content;
    padding-block: 0.75rem;

    @media screen and (width > 800px) {
        flex-flow: column;

        .home-banner-side-block:not(:last-child) {
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--grey);
        }
    }
}

.home-banner-side-block {
    width: 250px;
    border-right: 1px solid var(--grey);
    padding-right: 0.5rem;
    @media screen and (width > 800px) {
        border-right: none;
        width: 100%;
    }
}

.home-category-cards-wrapper {
    display: grid;
    gap: 1.5rem;
    margin-block: 0.75rem 3rem;

    @media screen and (width > 480px) {
        grid-template-columns: 1fr 1fr;
    }

    @media screen and (width > 700px) {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.home-category-card-img {
    height: 250px;
    margin-bottom: 0.5rem;

    img {
        height: 100%;
        border-radius: 12px;
        box-shadow: 0 0 1px 1px #00000046;
    }
}

.home-category-list {
    display: grid;
    grid-template-columns: 130px auto;
    gap: 0.5rem;
    align-items: center;

    img {
        height: 140px;
        border-radius: 8px;
    }
}

.home-category-list-wrapper {
    display: grid;
    gap: 1rem;
    margin-block: 0.75rem 3rem;

    @media screen and (width > 800px) {
        grid-template-columns: 1fr 1fr;
    }
}

.home-team-data {
    display: grid;
    gap: 2rem;
    padding: 6vw;
    margin-inline: -4vw;
    background-color: var(--light-blue);
    margin-bottom: 3rem;

    label {
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    @media screen and (width > 800px) {
        grid-template-columns: 1fr 1fr;
        padding: 4vw;
    }
}

.home-teams {
    padding: 1rem;
    border: 2px solid var(--yellow);
    border-radius: 12px;
    container-type: inline-size;
}

.home-team-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 0.75rem;
}

@container (min-width: 30rem) {
    .home-team-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-team-block {
    align-items: center;
    display: flex;
    flex-flow: column;
    text-align: center;

    img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        box-shadow: 0 0 1px 1px #00000046;
    }
}

.home-team-posts {
    margin-block: auto;
}

.home-team-posts-wrapper {
    margin-top: 0.75rem;
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.author-page {
    background: linear-gradient(
        to bottom,
        var(--light-blue) 120px,
        transparent
    );
}

.author-detail-wrapper {
    max-width: 700px;
    margin-inline: auto;
    padding-inline: 4vw;
}

.author-details {
    display: flex;
    flex-flow: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;

    @media screen and (width > 800px) {
        flex-flow: row-reverse;
        justify-content: flex-end;
    }
}

.author-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.author-image {
    height: 250px;
    width: 180px;

    img {
        border-radius: 8px;
        height: 100%;
    }
}

.author-bio {
    line-height: 1.3;
    margin-top: 1rem;

    p {
        font-size: 18px;
        margin-bottom: 0.5rem;
    }
}

.author-post-wrapper,
.category-posts {
    padding: 4vw;
    display: grid;
    gap: 1rem;

    @media screen and (width > 800px) {
        grid-template-columns: 1fr 300px;
    }
}

.author-posts-block,
.related-block,
.category-post-wrapper {
    display: grid;
    gap: 1rem;
    margin-top: 0.75rem;

    @media screen and (width > 520px) {
        grid-template-columns: 1fr 1fr;
    }

    @media screen and (width > 800px) {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.post-card {
    padding: 0.75rem;
    border: 1px solid #59595933;
    border-radius: 12px;
    box-shadow: 0 0 4px 1px #0000000d;

    a:hover {
        text-decoration: none;
        .content-title {
            text-decoration: underline;
        }
    }
}

.post-card-image {
    height: 200px;
    margin-bottom: 0.5rem;

    img {
        height: 100%;
        border-radius: 6px 6px 0 0;
    }
}

.category-banner {
    padding-inline: 4vw;
    display: grid;
    gap: 2rem;

    @media screen and (width > 700px) {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.category-banner-block {
    h2 {
        line-height: 1.3;
    }

    img {
        height: 250px;
    }

    a:hover {
        text-decoration: none;
        padding-bottom: 5px;

        h2 {
            text-decoration: underline;
            text-decoration-color: var(--blue);
            text-decoration-thickness: 3px;
            text-underline-offset: 4px;
        }
    }
}

.category-label {
    margin: 2rem auto;
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.post-page {
    display: grid;
    grid-template-columns: 1fr min(100% - 40px, 70rem) 1fr;

    > .kpo-ads {
        grid-column: span 3;
    }

    > .post-content-container {
        grid-column: 2;
        margin-top: 1rem;
    }
}

@media (width > 1024px) {
    .post-content-container {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 1rem;
    }
}

.article-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.check-badge-container {
    position: relative;
    &:hover {
        .check-badge-message {
            display: block;
        }
    }
}

.check-badge {
    padding: 4px 12px;
    font-size: 12px;
    color: green;
    border: 1px solid green;
    border-radius: 12px;
    cursor: pointer;

    &:hover {
        background-color: green;
        color: #fff;
    }
}

.check-badge-message {
    position: absolute;
    top: 25px;
    right: 0;
    max-width: 520px;
    width: 520px;
    background-color: #fff;
    padding: 6px;
    border: 1px solid green;
    border-radius: 8px;
    display: none;
    z-index: 100;

    @media (width < 560px) {
        width: calc(100vw - 30px);
    }
    a {
        text-decoration: underline;
        color: var(--blue);
    }
    p {
        margin-bottom: 0.25rem;
    }
    &:hover {
        display: block;
    }
}

.reference-container {
    border: 1px solid #98b0ca;
    border-radius: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.reference-header {
    padding: 0.5rem 1.25rem 0.75rem;
    background-color: var(--header);
    border-radius: 1rem;
    transition: 100ms ease;

    h3 {
        margin: 0;
    }
}

.reference-header.show-header {
    border-radius: 1rem 1rem 0 0;
    color: var(--blue);
}

.ref-button {
    font-size: 17px;
    cursor: pointer;
    color: #222;
    font-weight: 500;
    width: 100%;
    display: inline-block;

    &:hover {
        text-decoration: none;
        color: var(--blue);
    }
}

.ref-button::after {
    content: "\002B";
    margin-left: 5px;
    font-size: 22px;
}

.ref-button.min::after {
    content: "\2212";
    margin-left: 5px;
    font-size: 22px;
}

.reference-body {
    padding: 1rem;
    word-break: break-word;

    p {
        margin-bottom: 0.25rem;
    }

    ol {
        margin: 0.75rem 1.25rem 0;
    }

    li:not(:last-child) {
        margin-bottom: 0.75rem;
    }
}

.reference-item a,
.reference-message a {
    text-decoration: underline;
    color: var(--blue);
}

.post-author-tab-section {
    margin-bottom: 2rem;
}

.tabs-container {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.tab {
    padding: 0.5rem 1rem;
    border: 1px solid var(--grey);
    border-radius: 0.75rem 0.75rem 0 0;
    font-size: 14px;
    cursor: pointer;
    &:hover {
        background-color: var(--header);
    }
}
.tab.active-tab {
    background-color: var(--header);
}
.tab-info,
.author-tooltip-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    align-items: center;

    h4 {
        margin-bottom: 0.25rem;
    }
}
.tab-bio {
    p {
        margin-bottom: 0.75rem;
    }
    a {
        color: var(--blue);
        text-decoration: underline;
    }
}

.tab-container-info:not(:last-child) {
    margin-bottom: 0.75rem;
}

.tab-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    min-width: 100px;
    min-height: 100px;
}

.tab-message {
    padding: 1rem;
    border: 1px solid var(--grey);
    border-radius: 0 0.75rem 0.75rem;
    display: none;
}

.tab-message.active-box {
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.post-social {
    img {
        width: 27px;
        height: 27px;
        padding-top: 5px;
    }

    a {
        margin-right: 0.5rem;
    }
}

.post-block,
.page-content {
    line-height: 1.6;
    font-size: 21px;

    a {
        text-decoration: underline;
        color: var(--blue);
    }

    p {
        line-height: 1.6;
        font-size: 21px;
        margin-bottom: 1rem;
    }

    ul,
    ol {
        padding-left: 2rem;
        padding-bottom: 1rem;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
        margin-bottom: 1rem;
    }
}

.video-embed > iframe,
.embed-wrapper > iframe {
    width: 100%;
}

.image-embed {
    width: fit-content;
    margin: 2rem auto;
    color: rgba(33, 37, 41, 0.5);
    font-size: 12px;
}

@media screen and (width > 800px) {
    .imgHeight {
        height: 650px;
    }

    .imgEqual {
        height: 650px;
        width: 650px;
    }

    .imgWidth {
        width: 700px;
    }
}

.stop-scroll {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.helpful-questionnaire {
    margin: 3rem 0;
    place-content: center;
    display: grid;
}

.helpful-questionnaire-btn {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

.question-btn {
    width: 70px;
    height: 70px;
    text-align: center;
    font-size: 20px;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.yes-dialog-btn {
    border: 1px solid green;
    color: green;

    &:hover {
        background-color: green;
        color: #fff;
    }
}

.no-dialog-btn {
    border: 1px solid red;
    color: red;

    &:hover {
        background-color: red;
        color: #fff;
    }
}

#questionDialog {
    width: calc(100vw - 80px);
    max-width: 800px;
    margin: auto;
    border: 2px solid #8a8a8a7d;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 1px 6px #8a8a8ad1;
}

.dialog-close-btn {
    position: absolute;
    top: 5px;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
}

.dialog-feedback-options {
    display: flex;
    flex-flow: column;
    gap: 10px;
    margin-top: 1rem;
}

.dialog-page,
.form-response {
    display: none;
}

.dialog-page.active {
    display: block;
}

.form-response.active {
    display: flex;
    flex-flow: column;
    gap: 1rem;
    text-align: center;
}

.dialog-feedback-option {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 1rem;
    align-items: center;
    cursor: pointer;
    border: 1px solid #fff;

    &:hover {
        border: 1px solid #8a8a8a52;
        border-radius: 12px;
        background-color: #8a8a8a0a;
    }

    img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 50%;
    }
}

.feedback-form {
    margin-top: 1rem;
    display: flex;
    flex-flow: column;
    gap: 1rem;

    .dialog-feedback-option {
        border: 1px solid #8a8a8a52;
        border-radius: 12px;
        background-color: #8a8a8a0a;
        cursor: default;
    }
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0.75rem;
    border-radius: 12px;
    outline: none;
    border: 1px solid #8a8a8a;
    font-size: 17px;
}

.submit-btn {
    background-color: #02838d;
    padding: 1rem;
    font-size: 16px;
    border: 1px solid #02838d;
    border-radius: 32px;
    width: 260px;
    margin: 0 auto;
    cursor: pointer;
    color: #fff;

    &:hover {
        background-color: #02838ddb;
    }
}

.feedback-form-option-btn {
    margin-left: auto;
    margin-top: -10px;
    cursor: pointer;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-response {
    display: none;
    text-align: center;
}

.form-response.active {
    display: flex;
}

#loader-response {
    display: none;
}

#loader-response.active {
    display: block;
}

#success-response,
#error-response {
    display: none;
}

#success-response.active,
#error-response.active {
    display: flex;
}

.error-message {
    color: var(--blue);
}

.static-page img,
.home-static-content img {
    max-width: 400px;
    margin: 1rem auto;
    display: flex;
}

.d-none {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0;
}

sup a {
    text-decoration: none !important;
    color: var(--blue);
    font-size: 13px;
}

.reference-tool-tip-wrapper {
    position: relative;
    display: inline-block;
}

.reference-tool-tip {
    display: none;
    width: 350px;
    max-width: 80vw;
    background: #fff;
    padding: 1rem 1.25rem 1.25rem;
    border: 1px solid #000;
    border-radius: 12px;
    font-size: 16px;
    z-index: 1000;

    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0.125rem 0.5rem rgba(28, 14, 64, 0.15);

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

@media screen and (width > 800px) {
    .reference-tool-tip-wrapper:hover .reference-tool-tip {
        display: block;
    }
}

.highlight-flash {
    animation: red-flash 1s ease-out;
}

@keyframes red-flash {
    0% {
        background-color: var(--blue);
        opacity: 0.1;
    }
    100% {
        background-color: #f5f5f5;
        box-shadow: 0 0 12px 6px rgba(255, 0, 0, 0);
    }
}

.reference-tool-tip-phone {
    position: absolute;
    background-color: #fff;
    right: 0;
    left: 0;
    width: fit-content;
    max-width: 80vw;
    margin-inline: auto;
    padding: 1rem;
    font-size: 14px;
    border: 1px solid #222;
    border-radius: 12px;
    box-shadow: 0 0.125rem 0.5rem rgba(28, 14, 64, 0.15);
    word-break: break-word;
    z-index: 100;

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

.post-table-content {
    margin-block: 2rem 1rem;
    border: 1px solid #88888847;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgb(136, 136, 136);
    padding: 1rem;
    border-radius: 12px;
    border-left: 5px solid var(--blue);
    box-shadow: 0 2px 6px -1px #8888885c;
    font-size: 16px;

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

.table-header,
.sticky-table-header {
    font-weight: 600;
}

.table-body {
    margin-left: 2rem;
    margin-top: 0.5rem;
    display: flex;
    flex-flow: column;
    gap: 0.5rem;

    a {
        text-decoration: none;
    }
}

.sticky-table-body {
    position: fixed;
    left: 5vw;
    z-index: 100;
    background-color: #fff;
    padding: 2rem;
    width: 90vw;
    border: 1px solid #88888835;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgba(136, 136, 136, 0.208);
    border-radius: 12px;
    box-shadow: 0 2px 2px 2px var(--grey);
    transition: 300ms ease-in;
    display: none;
    flex-flow: column;
    gap: 0.5rem;
    font-size: 16px;
    transition: 200ms ease-in;
    border-left: 5px solid var(--blue);
    max-height: 90vh;
    overflow-y: auto;
    height: fit-content;

    a {
        text-decoration: none;
        color: var(--black);
    }

    span {
        width: fit-content;
    }
}

.top-visible {
    display: flex;
    top: 60px;
}

.sticky-table-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #6767f4;
    padding: 0.75rem 1rem;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 16px;
    transition: 200ms ease-in-out;

    span {
        cursor: pointer;
    }
}

.sticky-table-body-close {
    position: absolute;
    top: 15px;
    right: 1rem;
    font-size: 18px;
    cursor: pointer;
}

.dynamic-table-wrapper {
    width: 100%;
    margin-bottom: 2rem;

    @media screen and (width < 768px) {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

.dynamic-table {
    min-width: 700px;
    margin-inline: auto;
    border: 1px solid var(--grey);
    border-radius: 6px;
    text-align: left;
    font-size: 18px;
    border-collapse: separate;
    border-spacing: 0;

    th,
    td {
        border-inline: none;
        padding: 0.5rem 0.75rem;
    }

    tr:not(:last-child) td {
        border-bottom: 1px solid var(--grey);
    }

    tr td:not(:last-child) {
        border-right: 1px solid var(--grey);
    }

    thead {
        font-size: 20px;
        background-color: var(--header);
    }
}

.table-link:hover {
    color: #0056b3;
}

.table-link.active {
    font-weight: bold;
    color: var(--blue);
    position: relative;
}
.toc-mobile span {
    align-items: center;
    position: relative;
    padding-left: 1.5em;
}

.toc-mobile span:has(.table-link-mobile.active)::before {
    content: "\2022"; /* bullet */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: 1.2em;
}

.sticky-table-body-close {
    position: absolute !important;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--grey);
}

.transparent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 3; /* make sure it's on top */
    backdrop-filter: blur(2px);
}

.sidebar-related-block {
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
    margin-block: 0.75rem;
}

/* header */

header {
    position: relative;
}

.upper-header-container {
    display: grid;
    grid-template-columns: 1fr min(100% - 40px, 70rem) 1fr;

    .upper-header {
        grid-column: 2;
    }
}

.upper-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    align-items: center;
    min-height: 80px;

    @media (width > 960px) {
        .hamburger-menu {
            display: none;
        }
    }
}

.header-logo img {
    width: 200px;
    height: 60px;
}

@media (width < 960px) {
    .lower-header {
        display: none;
    }
}

.navbar {
    padding: 1rem 0;
    font-size: 18px;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 1fr min(100% - 40px, 70rem) 1fr;

    > .navbar-nav {
        grid-column: 2;
    }
}

.navbar-nav {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.logo {
    a:hover {
        color: var(--blue);
    }

    img {
        height: 50px;
        width: 200px;
    }

    h1 {
        margin: 0px;
    }
}

/* hamburger menu */

#menu__toggle {
    opacity: 0;
}
#menu__toggle:checked + .menu__btn {
    position: fixed;
}

#menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box-wrapper {
    left: 0 !important;
}
.menu__btn {
    position: absolute;
    top: 43px;
    left: 7vw;
    width: 26px;
    height: 25px;
    cursor: pointer;
    z-index: 20;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #000;
    transition-duration: 0.25s;
}
.menu__btn > span::before {
    content: "";
    top: -8px;
}
.menu__btn > span::after {
    content: "";
    top: 8px;
}
.menu__box-wrapper {
    display: flex;
    flex-flow: column;
    gap: 50px;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #fff;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    transition-duration: 0.25s;
    z-index: 15;

    .footer-social-links {
        align-items: center;
        margin-inline: auto;
    }

    .footer-social-item img {
        top: 0;
    }
}
.menu__item {
    display: block;
    padding: 12px 24px;
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition-duration: 0.25s;
    text-align: left;
    border-bottom: 1px solid #22222247;
}

.hide-search {
    display: none;
}

.searchbar {
    cursor: pointer;
}

#togglesearch {
    position: absolute;
    bottom: -75px;
    z-index: 1000000;
    margin: 0 10vw;
    border: 1px groove rgba(0, 0, 0, 0.27);
    border-radius: 8px;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.27);
    width: 80vw;
}

#togglesearch .container {
    border-radius: 8px;
    padding: 0;
}

.gsc-control-cse {
    border-radius: 8px;
}

/* footer */

footer {
    background-color: var(--light-blue);
    display: grid;
    grid-template-columns: 1fr min(100% - 40px, 70rem) 1fr;
    box-shadow: rgb(221, 217, 223) 0px 0px 6px 2px;

    > .footer-content {
        grid-column: 2;
    }
}

.footer-header {
    padding: 3rem 0;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    flex-flow: column;

    @media (min-width: 990px) {
        flex-flow: row;
    }

    > img {
        width: 200px;
        height: 60px;
    }
}

.footer-body {
    margin-bottom: 2rem;
    display: flex;
    flex-flow: column-reverse;
    gap: 2rem;

    @media (min-width: 990px) {
        flex-flow: row;
        justify-content: space-between;
    }
}

.footer-link-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
    column-gap: 1rem;
    font-weight: 500;

    > a {
        width: fit-content;
    }
}

.footer-note {
    max-width: 450px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-item img {
    width: 38px;
    position: relative;
    top: -4px;
}

.static-page {
    display: grid;
    grid-template-columns: 1fr min(100% - 40px, 70rem) 1fr;

    > .static-page-content {
        grid-column: 2;
        margin-top: 1rem;
    }
}

.static-user-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;

    @media screen and (width > 40rem) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static-user-block {
    box-shadow: 0 1px 3px #0000003b;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    width: 100%;

    img {
        width: 120px;
        aspect-ratio: 1;
        object-fit: cover;
        margin-bottom: 8px;
        border-radius: 50%;
        object-position: top;
    }

    h5 {
        margin-bottom: 0.75rem;
    }
}
