/* ============================================================
   DEVELOPER API EXAMPLES
============================================================ */

.developer-reminders {
    display: grid;
    gap: 12px;
    margin: 0 0 48px;
}

.developer-reminder {
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.035);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

.developer-reminder strong {
    color: #fff;
    font-weight: 600;
}

.developer-reminder a {
    color: inherit;
    text-decoration: underline;
}

.developer-endpoint {
    margin-top: 72px;
}

.developer-endpoint-heading {
    margin-bottom: 24px;
}

.developer-endpoint-heading h3 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.developer-endpoint-heading code {
    font-family: monospace;
    font-size: 13px;
    color: var(--muted);
}

.developer-endpoint-heading p {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--muted);
}

.developer-code-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.developer-code-card {
    min-width: 0;
    border: 1px solid rgba(255,255,255,0.10);
    background: #11141a;
    overflow: visible;
}

.developer-code-card h4 {
    margin: 0;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.developer-code-card pre {
    margin: 0;
    padding: 14px;
    overflow-x: auto;
    white-space: pre;
}

.developer-code-card code {
    font-family: monospace;
    font-size: 9px;
    line-height: 1.55;
    color: #d7d7d7;
}

@media (max-width: 1100px) {
    .developer-code-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .developer-code-grid {
        grid-template-columns: 1fr;
    }
}

.developer-documentation a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.developer-documentation a:hover {
    color: #ffffff;
}