.openings-content {
    background-color: #f8f8f9;
}
aside {
    background-color: white;
    padding: 0.8rem;
    height: fit-content;
    margin-bottom: 1rem;
}
aside .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    padding-bottom: 1rem;
}
aside .search-forms {
    display: flex;
}
aside .search-forms input {
    width: 100%;
    border: none;
    background-color: #f8f8f9;
    padding: 0 8px;
}
aside .search-forms button {
    border: none;
    background-color: var(--primary);
    padding: 6px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
aside .search-forms input:focus {
    border: 1px solid var(--primary);
    outline: none;
    border-right: 0;
}
aside h3 {
    font-size: 1rem;
}
aside div.select-dropdown__job select::-ms-input-placeholder {
    color: #75758a;
}
aside div.select-dropdown__job select::placeholder {
    opacity: 1;
    color: #1b1b1b;
}
aside div.select-dropdown__job select:focus {
    border: 1px solid var(--primary);
    outline: none;
}
aside div.select-dropdown__job select {
    width: 100%;
    padding: 10px 8px;
    background-color: #f8f8f9;
    border: none;
    margin-top: 8px;
}

aside div.submit-filter-form {
    margin-top: 8px;
}

aside div.submit-filter-form button {
    background-color: var(--primary);
    color: white;
    font-size: 0.875rem;
    padding: 0.8rem 1rem;
    width: 100%;
    border: none;
    cursor: pointer;
}

.job-card {
    background-color: white;
    padding: 0.8rem;
    margin-bottom: 1rem;
}
.job-card h2 a {
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--primary);
}
.job-card h2 {
    padding-bottom: 0.5rem;
    font-weight: 300;
}
.job-card p {
    font-size: 0.875rem;
}
.job-card p span:first-child {
    padding-left: 0;
}
.job-card p span {
    position: relative;
    padding: 0 0.3rem;
    line-height: 1.8rem;
}
.experience span,
.deadline span {
    line-height: 1.8rem;
    font-size: 0.875rem;
}
.experience span:last-child,
.deadline span:last-child {
    font-weight: 300;
}
.deadline {
    margin-bottom: 1rem;
}
.deadline hr {
    display: none;
}
.job-card .job-descriptions p,
.job-card .job-descriptions ul {
    font-weight: 300 !important;
    padding-top: 0.3rem;
    line-height: 1.8rem;
    list-style-position: inside;
}
.job-card p span:last-of-type::after {
    content: "";
}
.job-card p span::after {
    position: absolute;
    content: "|";
    right: -0.7rem;
    transform: translateX(-50%);
}
.openings-content .container {
    padding-bottom: 2rem;
}
.mob-nav {
    max-width: 1280px;
    padding: 1rem;
    margin: 0 auto;
}
.mob-nav a {
    text-decoration: none;
    color: var(--primary);
}
.job-descriptions {
    margin-top: 0.8rem;
}

@media (min-width: 768px) {
    .openings-content {
        position: relative;
    }
    aside {
        position: sticky;
        top: 90px;
        padding: 1.3rem;
        flex: 1 0 30%;
        margin-bottom: 0;
    }
    aside h3 {
        font-size: unset;
    }
    aside + section .job-card {
        margin-bottom: 0.7rem;
    }
    aside + section .job-card:last-of-type {
        margin-bottom: 0;
    }
    aside + section {
        flex: 1 1 70%;
    }
    .job-card {
        background-color: white;
        padding: 1.3rem;
    }
    .job-card h2 a {
        font-size: unset;
        text-decoration: none;
        color: var(--primary);
    }
    .experience span,
    .deadline span {
        font-size: unset;
    }
    .job-card p {
        font-size: unset;
    }
    .job-card h2 {
        padding-bottom: 1rem;
        font-weight: 300;
    }
    .job-card p span:first-child {
        padding-left: 0;
    }
    .job-card p span {
        position: relative;
        padding: 0 0.7rem;
        line-height: 1.8rem;
    }
    .experience span,
    .deadline span {
        line-height: 1.8rem;
    }
    .experience span:last-child,
    .deadline span:last-child {
        font-weight: 300;
    }
    .job-card p span:last-of-type::after {
        content: "";
    }
    .job-card p span::after {
        position: absolute;
        content: "|";
        right: -0.7rem;
        transform: translateX(-50%);
    }
    .openings-content .container {
        display: flex;
        gap: 4rem;
        /* padding-top: 4rem; */
        padding-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .mob-nav {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* skeletons */
.skeleton {
    /* display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite; */
    padding: 20px;
    background-color: white;
    text-align: center;
}
@keyframes pulse {
    0% {
        background-color: #e0e0e0;
    }
    50% {
        background-color: #f0f0f0;
    }
    100% {
        background-color: #e0e0e0;
    }
}

#jobs-numbers {
    width: 50px;
    height: 8px;
    border-radius: 4px;
    padding: 4px;
    background-color: #ccc;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        background-color: #e0e0e0;
    }
    50% {
        background-color: #f0f0f0;
    }
    100% {
        background-color: #e0e0e0;
    }
}
