/* CSS File for sc_member_category_archive.php */

.member-category-archive-grid {
    display: grid;
    grid-template-columns: 1fr;  /* Single column layout */
    grid-gap: 60px;
    margin-bottom: 40px;
}

.member-item {
    display: flex;
    align-items: flex-start;
}

.member-logo {
    flex-shrink: 0;  /* Prevent the logo from shrinking */
    width: 100px;    /* Fixed width for the logo */
    margin-right: 20px;
}

.member-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.member-details {
    flex-grow: 1;   /* Allow the details to expand as needed */
}

.member-title {
    font-size: 1.3em;
    margin: 0;
    display: flex;
    align-items: center;
}

.member-level {
    font-size: 1em;
    color: #666;
    margin-left: 10px;
}

.member-excerpt {
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.5em;
    color: #333;
}
