#council-members{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.council-member {
    position: relative;
    flex: 0 0 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    overflow: hidden;
}
.council-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.council-img img {
    min-height: 100%;
}
.council-popup-button {
    width: 40px;
    height: 40px;
    justify-items: center;
    border-radius: 10px 0px 0px 0px;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: -40px;
    right: 0;
}
.council-popup-button:hover {
   background: #2e4c928d!important;
}
.council-details {
    position: absolute;
    bottom: 0;
    background: #ffffff;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    line-height: 1.4;
}
.council-popup {
    border-top: #0000002e 1px solid;
    margin-top: 10px;
    padding-top: 10px;
    line-height: 1.5;
}
.council-popup a {
    color: #0056a4;
    text-decoration: none;
}