.call-resources-wrapper {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;

    .filter-header {
        font-family: 'Roboto', sans-serif;
        color: #a5a5a5;
        margin-bottom: 1rem;
    }

    .filter-type {
        font-family: 'Roboto', sans-serif;
        border-bottom: 1px solid #ddd;
        padding-bottom: 0.25rem;
        font-weight: bold;
    }

    .search-submit {
        width: 50%;
        background-color: #7cc34c;
        border: none;
        padding: 8px 0px 8px 0px;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
        margin-top: 0.5rem;
        align-self: flex-end;
    }

    .search-submit:hover {
        width: 55%;
        background-color: #4f8b26;
    }

    .date-dropdown {
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .date-dropdown:hover {
        background-color: #d7d7d7;
    }

    .call-category-list,
    .call-tag-list {
        margin: 0rem 0rem 0rem 1rem;
        list-style: none; 
        transition: all 0.3s;
    }

    .call-category-list:hover,
    .call-tag-list:hover {
        margin: 0rem 0rem 0rem 1.1rem;
        list-style: none; 
        font-weight: bold;
    }
}
  
.call-sidebar {
    display: flex;
    flex-direction: column;
    justify-self: flex-start;
    gap: 1rem;
    width: 250px;
    flex-shrink: 0;
    border: 1px solid #7cc34c;
    padding: 1rem;
    box-shadow: 10px 10px 0px #7cc34c;
}

.search-field {
    margin-bottom: 1rem;
}
  
.call-grid {
    flex: 1;
}
  
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}
  
.resource-card {
    background: #fff;
    border: 1px solid #7cc34c;
    padding: 1rem;
    transition: box-shadow 0.3s;
    box-shadow: 5px 5px 0px #7cc34c;

    .resource-title {
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 26px;
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
    }

    .resource-date {
        padding-top: 1rem;
    }
}
  
.resource-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 0px #4f8b26;
}

.thumbnail {
    display: flex;
    justify-content: center;
}
  
.thumbnail img {
    width: 100%;
    height: auto;
}

#call-search-input {
    border-radius: 10px;
    transition: all 0.3s ease;
}

#call-search-input:hover {
    background-color: #d7d7d7;
}

#call-search-form {
    display: flex;
    flex-direction: column;
}

#call-category-filters a.active,
#call-tag-filters a.active {
    font-weight: bold;
    color: #0073aa;
    text-decoration: underline;
}