/* =============================================================================
   Lake Locator — Single Lake Page Styles
   ============================================================================= */

.ll-single-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */

.ll-single-hero {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

@media (max-width: 680px) {
    .ll-single-hero {
        grid-template-columns: 1fr;
    }
}

/* ── SVG shape ─────────────────────────────────────────────────────────────── */

.ll-single-svg {
    background: #f0f4f8;
    border-radius: 12px;
    padding: 16px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-single-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ll-single-path {
    fill: #4299e1;
    stroke: #2b6cb0;
    stroke-width: 1.5;
}

/* ── Hero info ─────────────────────────────────────────────────────────────── */

.ll-single-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.1;
    color: #1a202c;
}

.ll-single-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.ll-stat {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
}

.ll-stat-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #718096;
    margin-bottom: 3px;
}

.ll-stat-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
}

.ll-stat-value a {
    color: #2b6cb0;
    text-decoration: none;
}

.ll-stat-value a:hover {
    text-decoration: underline;
}

/* ── Species ───────────────────────────────────────────────────────────────── */

.ll-single-species {
    margin-bottom: 24px;
}

.ll-single-species-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #718096;
    margin-bottom: 8px;
}

.ll-species-chip {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
    margin: 0 4px 4px 0;
}

/* ── Actions ───────────────────────────────────────────────────────────────── */

.ll-single-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ll-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.15s;
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.ll-btn:hover { opacity: 0.85; }

.ll-btn-primary {
    background: #2b6cb0;
    color: #fff;
}

.ll-btn-secondary {
    background: #f7fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

/* ── Content ───────────────────────────────────────────────────────────────── */

.ll-single-content {
    font-size: 16px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 48px;
    max-width: 720px;
}

/* ── Sections ──────────────────────────────────────────────────────────────── */

.ll-single-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
    margin-bottom: 40px;
}

.ll-single-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px;
}

.ll-placeholder {
    color: #718096;
    font-size: 15px;
    font-style: italic;
}

.ll-placeholder a {
    color: #2b6cb0;
}
