﻿
.info-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 16px 26px;
}

.info-hero {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 16px;
    border: 1px solid var(--line, #e5e7eb);
    border-radius: 16px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.info-hero__left {
    min-width: 0;
}

.info-h1 {
    margin: 0 0 8px;
    font-size: 1.55rem;
    line-height: 1.1;
    letter-spacing: .2px;
}

.info-lead {
    margin: 0 0 14px;
    color: var(--muted, #6b7280);
    font-size: .98rem;
}

.info-search {
    display: grid;
    gap: 8px;
    max-width: 520px;
}

.info-label {
    font-weight: 800;
    font-size: .92rem;
    color: #111827;
}

.info-input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid var(--line, #e5e7eb);
    background: #fff;
    outline: none;
}

    .info-input:focus {
        border-color: #111827;
        box-shadow: 0 0 0 3px rgba(17,24,39,.12);
    }

.info-hint {
    font-size: .9rem;
    color: var(--muted, #6b7280);
}

.info-hero__right {
    display: grid;
    gap: 10px;
    align-content: start;
}

.info-kpi {
    border: 1px solid var(--line, #e5e7eb);
    border-radius: 14px;
    padding: 12px;
    background: #fff;
}

.info-kpi__n {
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.1;
}

.info-kpi__t {
    margin-top: 2px;
    color: var(--muted, #6b7280);
    font-size: .9rem;
}

.info-grid {
    margin-top: 14px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--line, #e5e7eb);
    border-radius: 16px;
    background: #fff;
    padding: 14px;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

    .info-card:hover {
        transform: translateY(-2px);
        border-color: rgba(17,24,39,.25);
        box-shadow: 0 18px 40px rgba(0,0,0,.08);
    }

.info-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.info-card__title {
    font-weight: 900;
    font-size: 1rem;
    line-height: 1.2;
}

.info-card__chev {
    font-size: 1.25rem;
    opacity: .55;
}

.info-card__desc {
    color: var(--muted, #6b7280);
    font-size: .93rem;
    line-height: 1.35;
}

.info-empty {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px dashed var(--line, #e5e7eb);
    color: var(--muted, #6b7280);
    background: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .info-hero {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .info-shell {
        padding: 14px 12px 22px;
    }

    .info-h1 {
        font-size: 1.35rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}
