.phone-insight-panel {
    width: 100%;
    margin: 25px 0 32px;
}

.phone-insight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.phone-insight-badges span {
    padding: 7px 12px;
    border: 1px solid #ead9d2;
    border-radius: 999px;
    background: #fff8f5;
    color: #d96041;
    font-size: 13px;
    font-weight: 700;
}

.phone-insight-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

.phone-insight-card {
    min-width: 0;
    min-height: 320px;
    padding: 26px;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.035);
    box-sizing: border-box;
}

.phone-insight-card h3 {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.3;
    color: #222;
}

.phone-insight-card p {
    margin: 0 0 18px;
    color: #555;
    line-height: 1.6;
}

.phone-insight-card ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.phone-insight-card li {
    position: relative;
    padding-left: 34px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.phone-insight-card li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.phone-insight-card.is-positive li::before,
.phone-insight-card.is-audience li::before {
    content: "✓";
    background: #e9f8ef;
    color: #218838;
}

.phone-insight-card.is-caution li::before {
    content: "!";
    background: #fff3d9;
    color: #a56b00;
}

.phone-insight-card.is-audience strong {
    color: #222;
}

@media (max-width: 900px) {
    .phone-insight-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phone-insight-card.is-audience {
        grid-column: 1 / -1;
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .phone-insight-columns {
        grid-template-columns: 1fr;
    }

    .phone-insight-card,
    .phone-insight-card.is-audience {
        grid-column: auto;
        min-height: auto;
        padding: 20px;
    }

    .phone-insight-card h3 {
        font-size: 18px;
    }
}