.help-article-list {
    width: 100%;
}

/* Search Section */
.help-article-list__search {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.help-article-list__search-form {
    width: 100%;
    max-width: 600px;
}

.help-article-list__search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.help-article-list__search-icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 1;
}

.help-article-list__search-input {
    width: 100%;
    padding: 14px 20px 14px 55px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.help-article-list__search-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.help-article-list__search-input:focus {
    outline: none;
    border-color: rgba(116, 240, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(116, 240, 255, 0.1);
}

/* Filter Buttons */
.help-article-list__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 80px;
}

.help-article-list__filters button.help-article-list__filter-btn {
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.help-article-list__filters button.help-article-list__filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(116, 240, 255, 0.3);
}

.help-article-list__filters button.help-article-list__filter-btn.active {
    background: linear-gradient(247.89deg, #74F0FF -43.16%, #366EFC 89.93%);
    border-color: rgba(63, 140, 255, 1);
    color: #ffffff;
}

/* Container */
.help-article-list__container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Group Section */
.help-article-list__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-article-list__group-title {
    margin: 0;
    color: #ffffff;
}

.help-article-list__group-description {
    margin: 0;
    color: #ffffff;
}

/* Items List */
.help-article-list__items {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Article Item */
.help-article-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px 30px;
    border-radius: 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid #FFFFFF26;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 15px;
}

.help-article-list__item:hover {
    background: rgba(0,0,0,0.3);
    transform: translateX(5px);
}

.help-article-list__item-title {
    margin-bottom: 0;
    flex: 1;
    font-weight: 500;
    color: #ffffff;
}

.help-article-list__item-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.help-article-list__item:hover .help-article-list__item-arrow {
    transform: translateX(3px);
}

/* Loading State */
.help-article-list__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.help-article-list__loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(116, 240, 255, 0.2);
    border-top: 4px solid #74F0FF;
    border-radius: 50%;
    animation: help-article-list-spin 1s linear infinite;
}

@keyframes help-article-list-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* No Results */
.help-article-list__no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .help-article-list__filters{
        margin-bottom: 60px;
    }

    .help-article-list__group-title.h4{
        font-size: 22px;
    }

    .help-article-list__item{
        padding: 30px 20px;
    }

    .help-article-list__item-title{
        font-size: 20px;
    }
}
