.description-text {
    margin-top: 5px;
    color: #42525a;
    font-size: 20px;
    font-weight: lighter;
}

.searchbar-group {
    margin-top: 10px;
    height: 60px;
    display: flex;
    align-items: center;
}

.searchbar-form {
    display: flex;
    height: 90%;
    width: 100%;
}

.searchbar {
    width: 100%;
    border-radius: 8px 0 0 8px;
    border: 0.5px solid black;
    border-right: none;
    padding-left: 8px;
    font-size: 23px;
}

.search-button {
    width: 50px;
    border-radius: 0 8px 8px 0;
    border: 0.5px solid black;
    background-color: #3e7280;
    cursor: pointer;
}

.search-button:hover {
    background-color: #333;
}

.search-icon {
    color: white;
    font-size: 23px;
}

.portal-resource__eyebrow {
    color: #54727b;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.h1-upsize {
    font-size: 40px;
}

.inline-group {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.inline-group p {
    margin: 0px 0px 17px 0px;
}

.sort-filter-group {
    display: flex;
    justify-content: flex-end;
    margin: 0px 42px 17px 0px;
}

.sort-filter-toggle {
    padding: 10px 16px;
    background-color: #54727b;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.sort-filter-toggle:hover {
    background-color: #333;
}

.sort-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 98;
}

.sort-filter-overlay.active {
    display: block;
}

.sort-filter-panel {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    z-index: 99;
    padding: 24px;
    transition: right 0.3s ease;
}

.sort-filter-panel.active {
    right: 0;
}

.sort-filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sort-filter-panel-header h2 {
    font-weight: bold;
    margin: 0;
}

.sort-filter-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #54727b;
}

.sort-filter-close:hover {
    color: #000;
}

.sort-filter-panel h3 {
    margin: 15px 0px;
}

.sort-filter-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort-filter-panel li {
    margin-bottom: 8px;
}

.sort-filter-panel .label-list {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

.sort-filter-panel .label-list span {
    text-transform: capitalize;
}

.sort-filter-panel .label-list:hover {
    background-color: #f0f0f0;
}

.sort-filter-panel input[type="radio"] {
    accent-color: #54727b;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.sort-filter-panel input[type="checkbox"] {
    accent-color: #54727b;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.filter-label {
    padding: 10px 12px;
}

.result-bubble {
    padding: 10px 18px;
    border: 1px solid #dbe6ea;
    border-radius: 999px;
    background: #fbfcfd;
    color: #45616b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.hr-filter {
    margin-left: 10px;
}

.clear-filter {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.clear-filter-btn {
    border-radius: 8px;
    border: 0.5px solid #3e7280;
    padding: 8px 10px;
    text-decoration: none;
    color: white;
    background-color: #3e7280;
    cursor: pointer;
}

.clear-filter-btn:hover {
    background-color: #333;
}

.paging {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.paging-btn {
    border-radius: 8px;
    border: 0.5px solid #3e7280;
    padding: 8px 10px;
    text-decoration: none;
    color: white;
    background-color: #3e7280;
    cursor: pointer;
}

.paging-btn:hover {
    background-color: #333;
}