/* SCSS */
/* SCSS */
/* ===== Usage ===== */
.help-center {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    .help-center .layout-main {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

.help-center__wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
}

@media only screen and (min-width: 768px) {
    .help-center__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 992px) {
    .help-center__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.help-center__header {
    background-color: var(--clr-neutral-85);
    padding: 2rem;
}

.help-center__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

    .help-center__container .inputbox {
        display: flex;
        gap: 1rem;
    }

.help-center__title {
    font-size: 22px;
    font-weight: 600;
}

.help-center__search {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

    .help-center__search input {
        flex: 1;
        padding: 0.5rem;
    }

.help-center__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid var(--clr-neutral-80);
    background: var(--clr-surface);
    box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
}

.help-center__item-title {
    font-weight: 600;
}

    .help-center__item-title:hover {
        text-decoration: underline;
    }

.help-center__item-question {
    width: 100%;
    border-bottom: 1px solid var(--clr-neutral-75);
    padding: 0.25rem;
    font-size: 14px;
}

    .help-center__item-question:hover {
        text-decoration: none;
    }

.help-center__item-btn {
    margin-top: 1rem;
}

.help-center__item-icon {
    width: 36px;
    height: 36px;
    color: var(--clr-warning);
}

.help-center-sidebar {
    gap: 1rem;
}

.help-center-sidebar__item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--clr-neutral-70);
    font-size: 14px;
}

.help-center-sidebar__item-category {
    display: inline-block;
    font-size: 12px;
    padding: 0.125rem 1rem;
    border-radius: 1rem;
    background-color: var(--clr-neutral-70);
}

.help-center-sidebar__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-center__questions {
    display: flex;
    flex-direction: column;
}

.help-center__questions-title {
    display: flex;
    gap: 0.5rem;
}

    .help-center__questions-title .fa-info-circled svg {
        fill: #e77600;
    }

.help-center__questions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-center__questions-category {
    width: 300px;
    padding: 0.5rem;
}

.help-center__questions-title {
    padding: 0.5rem;
    font-weight: 600;
    background-color: var(--clr-neutral-75);
}

.help-center__questions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-center__questions-list-item {
    border-bottom: 1px solid var(--clr-neutral-70);
}

.help-center__questions-btn {
    align-self: center;
}

.help-center__question {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-center__question-btn {
    align-self: start;
}

.help-center__question-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid var(--clr-neutral-75);
}

.help-center__question-title {
    font-size: 1.75rem;
    font-weight: 600;
}

.help-center__question-subtitle {
    padding: 0.25rem 0;
    color: var(--clr-neutral-40);
}

.help-center__question-response {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-center__question-response-header {
    display: flex;
    justify-content: space-between;
}

    .help-center__question-response-header .question-header-left {
        display: flex;
        gap: 0.5rem;
    }

        .help-center__question-response-header .question-header-left .userimg {
            border-radius: 10rem;
        }

    .help-center__question-response-header .question-header-left__userdetail-name {
        font-weight: 600;
    }

    .help-center__question-response-header .question-header-left__userdetail-years {
        font-size: 15px;
        font-style: italic;
        color: var(--clr-neutral-50);
    }

    .help-center__question-response-header .question-header-right {
        width: 1.5rem;
        color: red;
    }

.help-center__question-response-footer {
    align-self: end;
    font-size: 14px;
}

.help-center__pendingquestion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-center__ques-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}