.pgd-filters {
    margin-bottom: 30px;
}

.filter-controls {
    margin-bottom: 15px;
}

.pgd-filters select {
    margin-right: 15px;
    padding: 8px;
    min-width: 200px;
}

.pgd-reset-button {
    padding: 8px 16px;
    color: black;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.pgd-reset-button:hover {
    background-color: #e5e5e5;
}

.person-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.person-content {
    position: relative;
    min-height: 200px;
}

.person-photo {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 200px;
}

.person-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.person-info {
    overflow: hidden;
}

.person-info h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    line-height: 1.2;
}

.person-excerpt {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.person-interests {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

.person-website {
    display: inline-block;
    padding: 5px 15px;
    background: #f5f5f5;
    text-decoration: none;
    border-radius: 3px;
}

.person-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .person-photo {
        float: none;
        margin: 0 0 20px 0;
        max-width: 100%;
    }

    .person-photo img {
        width: 300px;
    }

    .person-content {
        min-height: 0;
    }
}