.oebk-member-main {
    width: min(1120px, calc(100% - 32px));
    margin: 48px auto 72px;
}

.oebk-preview-note {
    margin-bottom: 24px;
    padding: 14px 16px;
    border-left: 4px solid #dba617;
    background: #fff8df;
}

.oebk-member-profile {
    overflow: hidden;
    border: 1px solid #dcdcde;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.oebk-profile-header {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 32px;
    align-items: center;
    padding: 36px;
    background: linear-gradient(135deg, #f1f7fa, #ffffff);
}

.oebk-profile-photo,
.oebk-card-photo {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    background: #dce9ee;
}

.oebk-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oebk-profile-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    font-size: clamp(2rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #2d5968;
}

.oebk-profile-eyebrow,
.oebk-card-label {
    margin: 0 0 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a6b77;
}

.oebk-profile-heading h1,
.oebk-directory-header h1 {
    margin: 0;
}

.oebk-profile-place {
    margin: 8px 0 0;
    font-size: 1.05rem;
}

.oebk-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.oebk-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9f3f6;
    font-size: 0.82rem;
    font-weight: 600;
}

.oebk-profile-section {
    padding: 28px 36px;
    border-top: 1px solid #e7e7e7;
}

.oebk-profile-section h2 {
    margin-top: 0;
    font-size: 1.25rem;
}

.oebk-profile-section address {
    font-style: normal;
}

.oebk-chip-list,
.oebk-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.oebk-chip-list li {
    padding: 7px 11px;
    border-radius: 999px;
    background: #f0f0f1;
}

.oebk-button {
    display: inline-flex;
    padding: 11px 16px;
    border-radius: 8px;
    background: #1f6075;
    color: #fff;
    text-decoration: none;
}

.oebk-directory-header {
    margin-bottom: 28px;
}

.oebk-member-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.oebk-member-card {
    overflow: hidden;
    border: 1px solid #dcdcde;
    border-radius: 16px;
    background: #fff;
}

.oebk-card-link {
    display: block;
    height: 100%;
    padding: 24px;
    color: inherit;
    text-decoration: none;
}

.oebk-card-photo {
    width: 110px;
    margin-bottom: 20px;
}

.oebk-card-body h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.oebk-card-more {
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
    color: #1f6075;
}

@media (max-width: 850px) {
    .oebk-member-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .oebk-profile-header {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .oebk-profile-photo {
        width: 150px;
    }

    .oebk-profile-section {
        padding: 24px;
    }

    .oebk-member-grid {
        grid-template-columns: 1fr;
    }
}


.oebk-directory-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
    margin: 0 0 18px;
    padding: 20px;
    border: 1px solid #dcdcde;
    border-radius: 14px;
    background: #fff;
}

.oebk-filter-field {
    display: grid;
    gap: 6px;
}

.oebk-filter-search {
    grid-column: span 2;
}

.oebk-filter-field label,
.oebk-filter-checkbox {
    font-weight: 600;
}

.oebk-filter-field input,
.oebk-filter-field select {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #8c8f94;
    border-radius: 7px;
    background: #fff;
}

.oebk-filter-checkbox {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 42px;
}

.oebk-filter-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.oebk-filter-reset {
    font-weight: 600;
}

.oebk-result-count {
    margin: 0 0 18px;
    font-weight: 600;
}

.oebk-no-results {
    padding: 32px;
    border: 1px solid #dcdcde;
    border-radius: 14px;
    background: #fff;
}

@media (max-width: 900px) {
    .oebk-directory-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .oebk-filter-search {
        grid-column: span 2;
    }
}

@media (max-width: 620px) {
    .oebk-directory-filters {
        grid-template-columns: 1fr;
    }

    .oebk-filter-search {
        grid-column: auto;
    }
}


.oebk-public-addqual-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.oebk-public-addqual-list li {
    display: grid;
    gap: 3px;
    padding: 11px 13px;
    border-radius: 9px;
    background: #f5f7f8;
}

.oebk-public-addqual-list span {
    font-size: 0.88rem;
    color: #50575e;
}
