/* =======================================================
   💎 Totoline Report Card v10.1 (톤 통일 버전)
======================================================= */

.mt-report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* 카드 */
.mt-report-card {
    display: flex;
    flex-direction: column;
    padding: 20px 22px;

    /* 토토라인 기본 카드 톤 */
    background:
        radial-gradient(circle at 20% 0%, rgba(120,132,255,0.18) 0%, transparent 55%),
        linear-gradient(145deg, #2d3042 0%, #202230 55%, #191a26 100%);
    border-radius: 12px;

    border: 1px solid rgba(122,132,255,0.18);
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.35),
        0 4px 14px rgba(0,0,0,0.45);

    color: #e7e9f7;
    text-decoration: none !important;
    transition: 0.25s ease;
}

.mt-report-card:hover {
    transform: translateY(-3px);
    border-color: rgba(160,170,255,0.55);
    box-shadow:
        0 10px 26px rgba(0,0,0,0.75),
        0 0 16px rgba(122,132,255,0.45);
}

.mt-report-card * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 상단 */
.mt-report-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 28px;
    margin-bottom: 14px;
}

/* 상태 배지 */
.mt-status {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.10);
    background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.16), rgba(0,0,0,0.15));
}

.mt-status.safe    { color: #93ffd0; border-color: rgba(84,214,153,0.6); }
.mt-status.warn    { color: #ffe8a0; border-color: rgba(255,216,108,0.6); }
.mt-status.proc    { color: #a9d5ff; border-color: rgba(139,201,255,0.6); }
.mt-status.danger  { color: #ffb0b0; border-color: rgba(255,107,107,0.65); }
.mt-status.neutral { color: #d3d6e2; border-color: rgba(106,108,120,0.6); }

.mt-date {
    font-size: 12px;
    color: #9fa5c8;
}

/* 제목 */
.mt-report-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    height: 46px;
    overflow: hidden;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 정보 줄 */
.mt-report-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 3px 0;
}

.mt-report-info span:first-child {
    color: #9aa1b8;
}

.mt-report-info span:last-child {
    color: #e4e7ff;
}

.mt-domain {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
    color: #9dd1ff;
}

/* 도메인 아래 빛줄 */
.mt-domain-line {
    width: 100%;
    height: 1px;
    margin: 8px 0 12px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.03),
        rgba(140,150,255,0.25),
        rgba(255,255,255,0.03)
    );
}

/* 하단 */
.mt-report-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mt-money {
    color: #ffd86c;
    font-size: 14px;
    font-weight: 700;
}

.mt-cmt {
    color: #b8bed8;
    font-size: 12px;
}

/* 모바일 */
@media (max-width: 768px) {
    .mt-report-grid {
        grid-template-columns: 1fr;
    }
}
