/* ─── Single Mexico – Lovable-style layout ─── */
:root {
    --admc-bg: #ffffff;
    --admc-fg: hsl(30, 10%, 15%);
    --admc-fg-muted: hsl(30, 10%, 45%);
    --admc-primary: #FF7900;
    --admc-border: hsl(30, 10%, 90%);
    --admc-muted-bg: hsl(40, 30%, 96%);
    --admc-font-display: 'Speedee', 'Inter', system-ui, sans-serif;
    --admc-font-body: 'Inter', system-ui, sans-serif;
}

.admc-single { background: var(--admc-bg); min-height: 100vh; font-family: var(--admc-font-body); color: var(--admc-fg); }
.admc-single *, .admc-single *::before, .admc-single *::after { box-sizing: border-box; }

.admc-single__container { max-width: 1200px; margin: 0 auto; padding: 32px 16px; }

/* Breadcrumb */
.admc-single__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--admc-fg-muted); margin-bottom: 24px; }
.admc-single__breadcrumb-link { display: inline-flex; align-items: center; gap: 4px; color: var(--admc-fg-muted); text-decoration: none; transition: color 0.2s; }
.admc-single__breadcrumb-link:hover { color: var(--admc-primary); }
.admc-single__breadcrumb-sep { color: var(--admc-fg-muted); }
.admc-single__breadcrumb-current { color: var(--admc-fg); }

/* Grid: article + sidebar */
.admc-single__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) {
    .admc-single__grid { grid-template-columns: 2fr 1fr; }
}

/* Badges */
.admc-single__badges { margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }

/* Title */
.admc-single__title {
    font-family: var(--admc-font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    color: var(--admc-fg);
    margin: 0 0 16px;
}

/* Excerpt */
.admc-single__excerpt {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--admc-fg-muted);
    margin: 0 0 24px;
}

/* Meta bar */
.admc-single__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--admc-border);
    font-size: 0.875rem;
    color: var(--admc-fg-muted);
}
.admc-single__meta-info { display: flex; align-items: center; gap: 8px; }
.admc-single__meta-info strong { color: var(--admc-fg); }
.admc-single__share-wrap { position: relative; margin-left: auto; }
.admc-single__share {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: none; cursor: pointer;
    font-size: 0.875rem; color: var(--admc-fg-muted);
    transition: color 0.2s;
}
.admc-single__share:hover { color: var(--admc-primary); }

/* Share dropdown */
.admc-single__share-dropdown {
    display: none;
    position: absolute; right: 0; top: calc(100% + 8px);
    background: #fff; border: 1px solid var(--admc-border);
    border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    min-width: 180px; z-index: 100; overflow: hidden;
}
.admc-single__share-wrap.is-open .admc-single__share-dropdown { display: block; }
.admc-single__share-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: 0.875rem; color: var(--admc-fg);
    text-decoration: none; transition: background 0.15s;
}
.admc-single__share-option:hover { background: var(--admc-muted-bg); }

/* Hero image */
.admc-single__hero-img { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.admc-single__hero-img img { width: 100%; height: auto; display: block; }

/* Content (prose) */
.admc-single__content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(45,45,45,0.9);
}
.admc-single__content h2 { font-family: var(--admc-font-display); font-weight: 700; font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--admc-fg); }
.admc-single__content h3 { font-family: var(--admc-font-display); font-weight: 700; font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--admc-fg); }
.admc-single__content p { margin-bottom: 1.25rem; }
.admc-single__content img { border-radius: 12px; margin: 2rem 0; width: 100%; height: auto; }
.admc-single__content a { color: var(--admc-primary); text-decoration: none; }
.admc-single__content a:hover { text-decoration: underline; }
.admc-single__content blockquote { border-left: 4px solid var(--admc-primary); padding-left: 16px; margin: 1.5rem 0; font-style: italic; color: var(--admc-fg-muted); }
.admc-single__content ul, .admc-single__content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.admc-single__content li { margin-bottom: 0.5rem; }

/* Tags */
.admc-single__tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--admc-border); }
.admc-single__tags-title { font-family: var(--admc-font-display); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--admc-fg-muted); margin: 0 0 12px; }
.admc-single__tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
.admc-single__tag {
    background: var(--admc-muted-bg); color: var(--admc-fg-muted);
    font-size: 0.875rem; padding: 6px 12px; border-radius: 9999px;
    cursor: pointer; transition: background 0.2s, color 0.2s;
}
.admc-single__tag:hover { background: rgba(255,121,0,0.1); color: var(--admc-primary); }

/* Related */
.admc-single__related { margin-top: 3rem; }
.admc-single__related-title { font-family: var(--admc-font-display); font-weight: 700; font-size: 1.25rem; color: var(--admc-fg); margin: 0 0 24px; }
.admc-single__related-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .admc-single__related-grid { grid-template-columns: 1fr 1fr; } }
.admc-single__related-card {
    display: flex; flex-direction: column;
    border-radius: 12px; overflow: hidden;
    background: var(--admc-bg); border: 1px solid var(--admc-border);
    text-decoration: none; color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}
.admc-single__related-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.admc-single__related-img { aspect-ratio: 16/9; overflow: hidden; }
.admc-single__related-img img { width: 100%; height: 100%; object-fit: cover; }
.admc-single__related-body { padding: 16px; }
.admc-single__related-card-title { font-family: var(--admc-font-display); font-weight: 700; font-size: 1rem; line-height: 1.3; margin: 0 0 8px; color: var(--admc-fg); }
.admc-single__related-excerpt { font-size: 0.875rem; color: var(--admc-fg-muted); line-height: 1.5; margin: 0; }

/* Sidebar */
.admc-single__sidebar { display: none; }
@media (min-width: 1024px) { .admc-single__sidebar { display: block; } }
.admc-single__sidebar-sticky { position: sticky; top: 32px; }
