.fc-report-page {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-report-hero {
    padding: 18px;
    border-radius: 20px;
    background:
        linear-gradient(135deg,
            rgba(47, 111, 237, .12),
            rgba(124, 58, 237, .07));
    border: 1px solid rgba(47, 111, 237, .12);
}

.fc-report-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(47, 111, 237, .10);
    color: #2f6fed;
    font-size: 11px;
    font-weight: 800;
}

.fc-report-title {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.8;
}

.fc-report-subtitle {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 2;
}

.fc-report-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.fc-report-profile-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .06);
}

.fc-report-profile-label {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.fc-report-profile-value {
    font-size: 13px;
    font-weight: 800;
}

.fc-report-section {
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
}

.fc-report-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 10px;
    background: rgba(47, 111, 237, .09);
    color: #2f6fed;
    font-size: 11px;
    font-weight: 900;
}

.fc-report-section-content {
    margin-top: 10px;
    color: #334155;
    font-size: 14px;
    line-height: 2.25;
    text-align: justify;
    overflow-wrap: anywhere;
}

.fc-report-section-content a {
    color: #2f6fed;
    font-weight: 800;
}

.fc-report-heading {
    margin: 4px 2px 0;
    font-size: 16px;
    font-weight: 900;
}

.fc-university-card {
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
}

.fc-university-order {
    color: #2f6fed;
    font-size: 11px;
    font-weight: 900;
}

.fc-university-name {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 900;
}

.fc-university-meta {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.fc-university-tag {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 800;
}

.fc-report-student-note {
    padding: 16px;
    border: 1px solid rgba(245, 158, 11, .22);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(245, 158, 11, .09),
            rgba(251, 191, 36, .04)
        );
}

.fc-report-student-note-title {
    color: #92400e;
    font-size: 14px;
    font-weight: 900;
}

.fc-report-student-note-content {
    margin-top: 9px;
    color: #78350f;
    font-size: 14px;
    font-weight: 700;
    line-height: 2.25;
    text-align: right;
    overflow-wrap: anywhere;
    unicode-bidi: plaintext;
}

.fc-report-student-note-content a {
    color: #b45309;
    font-weight: 900;
}

.fc-report-empty {
    padding: 18px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

@media (min-width: 720px) {
    .fc-report-profile {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-report-section,
    .fc-report-student-note {
        padding: 22px;
    }

    .fc-report-section-content,
    .fc-report-student-note-content {
        font-size: 15px;
    }
}
