/* ==========================================================================
   BBX MCP - Tech Cards
   Structure: bbx-mcp-tech-cards > __inner (bbx-container) > __header + __grid > __card
   ========================================================================== */

.bbx-mcp-tech-cards {
    background: var(--wp--preset--color--base);
    border-bottom: 1px solid var(--wp--preset--color--ink-100, #e5e5e5);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
    .bbx-mcp-tech-cards {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.bbx-mcp-tech-cards__inner {
    /* max-width / margin / padding geres par bbx-container */
}

/* ---- Header ---- */
.bbx-mcp-tech-cards__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bbx-mcp-tech-cards__title {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: var(--wp--preset--color--ink-900, #111);
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.bbx-mcp-tech-cards__intro {
    font-size: 15px;
    line-height: 1.65;
    color: var(--wp--preset--color--ink-500, #6b7280);
    max-width: 42rem;
    margin: 0 auto;
}

/* ---- Grid 2x2 ---- */
.bbx-mcp-tech-cards__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bbx-mcp-tech-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Card ---- */
.bbx-mcp-tech-cards__card {
    background: var(--wp--preset--color--warm, #faf9f7);
    border-radius: 0.75rem;
    border: 1px solid var(--wp--preset--color--ink-200, #d1d5db);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bbx-mcp-tech-cards__card-head {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.bbx-mcp-tech-cards__card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--wp--preset--color--ink-900, #111);
    margin: 0;
}

.bbx-mcp-tech-cards__card-subtitle {
    font-size: 12px;
    color: var(--wp--preset--color--ink-500, #6b7280);
}

.bbx-mcp-tech-cards__card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--wp--preset--color--ink-600, #4b5563);
    margin: 0;
}

/* ---- Pros / Cons ---- */
.bbx-mcp-tech-cards__pros-cons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bbx-mcp-tech-cards__col-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.25rem;
}

.bbx-mcp-tech-cards__col-label--pros { color: #15803d; }
.bbx-mcp-tech-cards__col-label--cons { color: #b45309; }

.bbx-mcp-tech-cards__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bbx-mcp-tech-cards__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    font-size: 12px;
    color: var(--wp--preset--color--ink-600, #4b5563);
    line-height: 1.5;
}

.bbx-mcp-tech-cards__icon {
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
}

.bbx-mcp-tech-cards__icon--pro { color: var(--wp--preset--color--success); }
.bbx-mcp-tech-cards__icon--con { color: #d97706; }

/* ---- Brands footer ---- */
.bbx-mcp-tech-cards__brands {
    padding-top: 0.75rem;
    border-top: 1px solid var(--wp--preset--color--ink-100, #e5e5e5);
    font-size: 11px;
}

.bbx-mcp-tech-cards__brands-label {
    display: block;
    color: var(--wp--preset--color--ink-400, #9ca3af);
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.bbx-mcp-tech-cards__brands-list {
    color: var(--wp--preset--color--ink-700, #374151);
}
