
.msc-wrap {
    margin: 0 auto;
    padding: 48px 20px;
}

.msc-header {
    text-align: center;
    margin-bottom: 32px;
}

.msc-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.msc-highlight {
    color: #2563EB;
}

.msc-subheading {
    font-size: 15px;
    color: #172b4c;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 640px;
}

.msc-summary-box {
    background: #fff;
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
}

.msc-avg-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.msc-avg-num {
    font-size: 56px;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.msc-avg-stars {
    margin: 8px 0 4px;
}

.msc-avg-label {
    font-size: 13px;
    color: #6B7280;
    white-space: nowrap;
}

.msc-bars {
    flex: 1;
}

.msc-bar-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
}

.msc-bar-n {
    font-size: 13px;
    color: #374151;
    min-width: 8px;
    text-align: right;
}

.msc-bar-star {
    color: #F59E0B;
    font-size: 13px;
}

.msc-bar-track {
    flex: 1;
    height: 8px;
    background: #F3F4F6;
    border-radius: 4px;
    overflow: hidden;
}

.msc-bar-fill {
    height: 100%;
    background: #F59E0B;
    border-radius: 4px;
    transition: width .5s ease;
}

.msc-bar-c {
    font-size: 12px;
    color: #9CA3AF;
    min-width: 18px;
    text-align: right;
}

.msc-stars .msc-s {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1;
}

.msc-stars .msc-s.on {
    color: #F59E0B;
}

.msc-cstars .msc-s {
    font-size: 15px;
}

.msc-form-card {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    overflow: hidden;
}

.msc-form-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    cursor: pointer;
    user-select: none;
}

.msc-form-toggle:hover {
    background: #FAFAFA;
}

.msc-chevron {
    font-size: 16px;
    color: #6B7280;
    transition: transform .2s;
    display: inline-block;
    line-height: 1;
}

.msc-chevron.open {
    transform: rotate(180deg);
}

.msc-form-inner {
    padding: 0 24px 24px;
    display: none;
}

.msc-stars-pick {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 16px;
}

.msc-sp {
    font-size: 30px;
    color: #D1D5DB;
    cursor: pointer;
    transition: color .1s, transform .1s;
    line-height: 1;
}

.msc-sp.on {
    color: #F59E0B;
}

.msc-sp:hover {
    color: #F59E0B;
    transform: scale(1.1);
}

.msc-sp-hint {
    font-size: 13px;
    color: #F59E0B;
    margin-left: 8px;
}

.msc-sp-hint.sel {
    color: #D97706;
    font-weight: 600;
}

.msc-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.msc-inp {
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #374151;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    font-family: inherit;
    background: #fff;
}

.msc-inp:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
}

.msc-inp-full {
    margin-bottom: 12px;
}

.msc-ta {
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #374151;
    min-height: 90px;
    resize: vertical;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    font-family: inherit;
    display: block;
    margin-bottom: 12px;
    background: #fff;
}

.msc-ta:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
}

.msc-msg {
    font-size: 13px;
    min-height: 18px;
    margin: 0 0 10px;
    line-height: 1.4;
}

.msc-msg.err {
    color: #EF4444;
}

.msc-msg.ok {
    color: #16A34A;
}

.msc-btn-submit {
    background: #2563EB;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
}

.msc-btn-submit:hover {
    background: #1D4ED8;
}

.msc-btn-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.msc-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
}

.msc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.msc-card-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.msc-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0;
}

.msc-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.msc-author-row1 {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.msc-aname {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}

.msc-verified {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #DCFCE7;
    color: #16A34A;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
}

.msc-date {
    font-size: 12px;
    color: #9CA3AF;
}

.msc-card-body {
    margin-bottom: 12px;
}

.msc-ctitle {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
    margin: 0 0 5px;
}

.msc-ctext {
    font-size: 14px;
    color: #374151;
    line-height: 1.65;
    margin: 0;
    white-space: pre-line;
}

.msc-helpful {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #F3F4F6;
    padding-top: 12px;
    flex-wrap: wrap;
}

.msc-hl-label {
    font-size: 13px;
    color: #9CA3AF;
}

.msc-hl-btn {
    border: 1px solid #E5E7EB;
    background: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 13px;
    cursor: pointer;
    color: #374151;
    transition: all .15s;
    font-family: inherit;
}

.msc-hl-btn:hover:not(.voted) {
    border-color: #3B82F6;
    color: #2563EB;
    background: #EFF6FF;
}

.msc-hl-btn.voted {
    background: #EFF6FF;
    border-color: #3B82F6;
    color: #2563EB;
    cursor: default;
}

.msc-empty-box {
    width: 100%;
    text-align: center;
    color: #6B7280;
    font-size: 15px;
    padding: 8px 0;
    margin: 0;
}

@media (max-width: 600px) {
    .msc-row2 {
        grid-template-columns: 1fr;
    }

    .msc-summary-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }

    .msc-avg-block {
        flex-direction: row;
        gap: 14px;
        align-items: center;
        min-width: unset;
    }

    .msc-avg-num {
        font-size: 40px;
    }

    .msc-bars {
        width: 100%;
    }

    .msc-form-inner {
        padding: 0 16px 20px;
    }

    .msc-form-toggle {
        padding: 16px;
    }

    .msc-card {
        padding: 16px;
    }

    .msc-card-top {
        flex-direction: column;
        gap: 10px;
    }
}
.comment-user {
    width: 100%;
    max-width: 1220px;
    padding: 0 20px;
    margin: auto;
    background: #f6f6f663;
    border-radius: 12px;
}