.module-quick-links-panel {
    display:flex;
    flex-wrap: wrap;
    gap:3rem;
    background-color:var(--light-gray);
    background-image:var(--background-medium-tan-dots);
    background-position:bottom right;
}

.module-quick-links-panel .outer-wrapper {
    width:100%;
    padding-top:0;
}

.module-quick-links-panel .posts-wrapper {
    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
    justify-content: space-between;
    gap:3rem;
}

.module-quick-links-panel h1,
.module-quick-links-panel h2,
.module-quick-links-panel h3,
.module-quick-links-panel h4,
.module-quick-links-panel h5,
.module-quick-links-panel h6 {
    margin:0;
}

.module-quick-links-panel .intro-wrapper {
    text-align: center;
    padding:2rem;
    width:100%;
}

.module-quick-links-panel .intro-wrapper strong {
    color:var(--dark-orange);
}

.module-quick-links-panel .posts-wrapper .quick-link {
    border:1px solid var(--medium-gray);
    width:100%;
    background:#fff;
    border-radius: 7px;
    height:100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    display:none;
    transition: all .2s ease;
}

.module-quick-links-panel .posts-wrapper .quick-link a {
    display:flex;
    flex-wrap: wrap;
    gap:1rem;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    padding: 3rem 2rem;
}

.module-quick-links-panel .posts-wrapper .quick-link i {
    color:var(--dark-orange);
    font-size:4rem;
    transition: transform .2s ease;
}

.module-quick-links-panel .posts-wrapper .quick-link .icon {
    width:100%;
}

.module-quick-links-panel .posts-wrapper .quick-link .title {
    text-transform: uppercase;
    font-size:1.9rem;
    line-height: 2.2rem;
    width:100%;
    padding-top:1rem;
    font-weight: 700;
}

/* hover fun */

.module-quick-links-panel .posts-wrapper .quick-link:hover {
    margin-top:-1rem;
}

.module-quick-links-panel .posts-wrapper .quick-link:hover a {
    
    text-decoration: underline;
}

.module-quick-links-panel .posts-wrapper .quick-link:hover i {
    transform:scale(1.5) scaleX(-1);
}

.audience-filter-wrapper {
    padding: 0;
    color: #000;
    font-size: 2.2rem;
    line-height: 2.8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    border:0;
    background-color: transparent;
    padding-bottom:2rem;
}

.audience-filter-wrapper select {
    background-color: transparent;
    border:0;
    border-bottom:2px solid #000;
    outline: none; /* Remove blue outline */
}

#audience-filter-wrapper select:focus {
    border: 1px solid #aaa; /* Optional: Add a subtle border change on focus */
    outline: none; /* Ensure the blue outline is removed */
}

@media (min-width:1200px) {

    .module-quick-links-panel {
        margin-top:-5rem;
        padding-top:5rem;
    }

    .module-quick-links-panel .outer-wrapper {
        padding-top:3rem;
    }    

    .module-quick-links-panel h2 {
       font-size:5rem;
       line-height: 5.5rem;
    }

    .module-quick-links-panel .intro-wrapper {
        text-align: left;
        padding:2rem 0;
    }

    .module-quick-links-panel .posts-wrapper {
        display:grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        align-items:center;
        justify-content: space-between;
        gap:2rem;
        width:80%;
    }

    .module-quick-links-panel .posts-wrapper .quick-link .title {
        font-size:2.2rem;
        line-height: 2.6rem;
    }
}