.resource-list-widget {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.resource-list-filters {
    background: #fafafa;
    border-radius: 20px;
    padding: 32px 24px;
    min-width: 260px;
    max-width: 300px;
}

.resource-list-search {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.resource-list-search input[type="text"] {
    flex: 1;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 1rem;
}

.resource-list-search button {
    background: #1d3c6b;
    color: #fff;
    border-radius: 8px;
    border: none;
    padding: 8px 18px;
    font-weight: bold;
    font-size: 1rem;
}

.filter-group {
    margin-bottom: 18px;
}

.filter-group h5 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    cursor: pointer;
}

.resource-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.resource-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card-header {
    background: #1d3c6b;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px 12px 0 0;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.resource-card-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 12px;
}

.resource-card-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-align: center;
}

.resource-card-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 18px;
    text-align: center;
}

.resource-card-download {
    display: block;
    width: 100%;
    background: #F2BC12;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 12px;
    text-align: center;
    padding: 12px 0;
    text-decoration: none;
    margin-top: auto;
}
