.detail-breadcrumb {
    background: #E8F5F3;
    padding: 16px 0;
    margin-bottom: 0;
}

.detail-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    color: #000;
    justify-content: center;
}

.detail-breadcrumb-nav a {
    color: #000;
    text-decoration: none;
    transition: color var(--transition);
}

.detail-breadcrumb-nav a:hover {
    color: var(--clr-teal);
}

.detail-breadcrumb-nav span {
    color: #999;
}


.members-page-section {
    padding-bottom: 60px;
}

.members-page-header {
    margin-top: 37px;
}

.members-page-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 24px;
    color: #1A171B;
    margin-bottom: 5px;
}

.members-page-desc {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin-bottom: 28px;
}

.members-stats {
    display: flex;
    gap: 21px;
    margin-bottom: 52px;
}

.members-stat-box {
    width: 220px;
    height: 100px;
    border: 1px solid #036B57;
    background-color: #E8F5F3;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 20px;
}

.stat-number {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 30px;
    color: #1A171B;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 12px;
    color: #036B57;
}

/* Legend */
.members-legend {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lora', serif;
    font-size: 14px;
    color: #1A171B;
}

.legend-item::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-member::before {
    background-color: #036B57;
}

.legend-observer::before {
    background-color: #D39633;
}

/* Ülke Grid */
.members-grid-wrap {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.member-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    position: relative;
}

.member-code {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 20px;
    color: #1A171B;
    min-width: 28px;
}

.member-flag img {
    width: 75px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
}

.member-name {
    display: block;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 18px;
    color: #1A171B;
}

.member-type {
    display: block;
    font-family: 'Lora', serif;
    font-size: 12px;
}

.type-member {
    color: #036B57;
}

.type-observer {
    color: #C9A84C;
}

.member-host {
    display: block;
    font-family: 'Lora', serif;
    font-size: 12px;
    color: #036B57;
}

.member-row:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.member-row:nth-child(3n+1),
.member-row:nth-child(3n+2) {
    border-right: 1px solid #e8e8e8;
}

@media (max-width: 768px) {
    .members-page-section {
        padding-bottom: 40px;
    }

    .members-page-header {
        margin-top: 24px;
    }

    .members-page-title {
        font-size: 20px;
    }

    .members-page-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .members-stats {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 32px;
    }

    .members-stat-box {
        width: calc(50% - 6px);
        height: auto;
        padding: 14px 10px;
    }

    .stat-number {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .members-grid-wrap {
        grid-template-columns: 1fr;
    }

    .member-row {
        border-right: none !important;
    }

    .member-code {
        font-size: 16px;
        min-width: 24px;
    }

    .member-flag img {
        width: 56px;
        height: 38px;
    }

    .member-name {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .members-stat-box {
        width: 100%;
    }
}