/* Membership Comparison Table */

.mcp-wrap {
    margin: 2rem 0;
    font-family: inherit;
}

.mcp-title {
    margin-bottom: 1.25rem;
    text-align: center;
}

.mcp-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mcp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    line-height: 1.4;
}

/* Header */
.mcp-table thead tr {
    background: #1a1a2e;
    color: #fff;
}

.mcp-table thead th {
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
}

.mcp-table thead th.mcp-plan-highlight {
    background: #c9a96e;
    color: #1a1a2e;
}

/* Body rows */
.mcp-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
}

.mcp-table tbody tr:nth-child(odd) {
    background: #f9f9f9;
}

.mcp-table tbody tr:nth-child(even) {
    background: #fff;
}

.mcp-table tbody tr:hover {
    background: #f1f6ff;
}

.mcp-table td {
    padding: 0.75rem 1.25rem;
    border-right: 1px solid #e8e8e8;
    text-align: left;
    vertical-align: middle;
}

/* Value tokens */
.mcp-check {
    color: #2e7d32;
    font-size: 1.25rem;
    font-weight: 700;
}

.mcp-dash {
    color: #aaa;
    font-size: 1.1rem;
}

.mcp-text-val {
    color: #444;
    font-size: 0.88rem;
}

.mcp-check-text {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    text-align: left;
}

.mcp-check-text .mcp-check {
    flex-shrink: 0;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 680px) {
    .mcp-table thead {
        display: none;
    }

    .mcp-table,
    .mcp-table tbody,
    .mcp-table tr,
    .mcp-table td {
        display: block;
        width: 100%;
    }

    .mcp-table tr {
        margin-bottom: 0.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        overflow: hidden;
    }

    .mcp-table td {
        text-align: left;
        padding: 0.6rem 1rem;
    }

    .mcp-table td::before {
        content: attr(data-label) ': ';
        font-weight: 600;
        color: #555;
        font-size: 0.8rem;
        display: block;
        margin-bottom: 2px;
    }
}
