.student-profile-hero {
    display: grid;
    grid-template-columns: minmax(14rem, 1.15fr) minmax(18rem, 1.5fr) auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.student-profile-hero__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.student-profile-hero__avatar {
    display: grid;
    flex: 0 0 4rem;
    width: 4rem;
    height: 4rem;
    place-items: center;
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    background: #d1fae5;
    color: #047857;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.student-profile-hero__avatar-wrap {
    position: relative;
    flex: 0 0 4rem;
    width: 4rem;
    height: 4rem;
}

.student-profile-hero__avatar--photo {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: 9999px;
    object-fit: cover;
}

.student-profile-hero__avatar-wrap--editable:hover .student-profile-hero__avatar-edit,
.student-profile-hero__avatar-wrap--editable:focus-within .student-profile-hero__avatar-edit {
    opacity: 1;
}

.student-profile-hero__avatar-edit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border-radius: 9999px;
    background: rgb(0 0 0 / 0.45);
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.student-profile-hero__avatar-edit-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.student-profile-hero__avatar-loading {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.72);
}

.student-profile-hero__identity-text {
    min-width: 0;
}

.student-profile-hero__eyebrow,
.student-profile-hero__label {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
}

.student-profile-hero__eyebrow {
    margin-bottom: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.student-profile-hero__name {
    overflow: hidden;
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.student-profile-hero__details {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 0 1.5rem;
    border-right: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
}

.student-profile-hero__detail {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.25rem;
}

.student-profile-hero__details .student-profile-hero__value {
    overflow: visible;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.student-profile-hero__value {
    overflow: hidden;
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.student-profile-hero__value--email {
    overflow: visible;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.student-profile-hero--compact {
    grid-template-columns: 1fr;
    margin-bottom: 0.25rem;
}

.student-profile-hero--compact .student-profile-hero__eyebrow {
    line-height: 1.45;
    overflow-wrap: anywhere;
    white-space: normal;
}

.profile-calendar-color {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1f2937;
    font-weight: 600;
}

.profile-calendar-color__swatch {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border: 1px solid rgb(0 0 0 / 0.08);
    border-radius: 9999px;
}

.professor-self-profile-page .fi-page-header,
.parent-self-profile-page .fi-page-header {
    margin-bottom: 1.25rem;
}

.professor-self-profile-page .profile-change-password-action,
.parent-self-profile-page .profile-change-password-action {
    margin-bottom: 0.25rem;
}

.professor-self-profile-page .profile-readonly-email input[disabled],
.parent-self-profile-page .profile-readonly-email input[disabled] {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

.student-profile-hero__meta {
    overflow: hidden;
    color: #6b7280;
    font-size: 0.75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.student-profile-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(8.5rem, 1fr));
    gap: 0.75rem;
}

.student-profile-hero--no-stats {
    grid-template-columns: minmax(14rem, 1fr) minmax(0, 2fr);
}

.student-profile-hero--no-stats .student-profile-hero__details {
    border-right: 0;
    padding-right: 0;
}

.student-profile-hero--no-stats .student-profile-hero__value {
    white-space: normal;
    overflow-wrap: anywhere;
}

.student-profile-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #d1fae5;
    border-radius: 0.625rem;
    background: #f0fdf4;
}

.student-profile-stat__icon {
    display: grid;
    flex: 0 0 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 0.5rem;
    background: #d1fae5;
    color: #059669;
}

.student-profile-stat__icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.student-profile-stat strong,
.student-profile-stat span {
    display: block;
}

.student-profile-stat strong {
    color: #1f2937;
    font-size: 1.125rem;
    line-height: 1.15;
}

.student-profile-stat span {
    margin-top: 0.125rem;
    color: #6b7280;
    font-size: 0.6875rem;
    white-space: nowrap;
}

.student-profile-stat__programs {
    font-size: 0.9375rem;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
}

.fi-parent-portal .student-profile-hero__avatar {
    border-color: var(--parent-emerald-200, #a7f3d0);
    background: var(--parent-emerald-50, #ecfdf5);
    color: var(--parent-primary, #006b5d);
}

.fi-panel-admin .student-heading-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.1875rem 0.5rem;
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    vertical-align: middle;
    white-space: nowrap;
}

.fi-panel-admin .student-heading-badge--inactive {
    border-color: #e4e4e7;
    background: #f4f4f5;
    color: #52525b;
}

.fi-panel-admin .fi-page-has-sub-navigation-top .fi-page-main {
    gap: 1.25rem;
}

.fi-panel-admin .fi-page-sub-navigation-tabs {
    position: sticky;
    top: 4rem;
    z-index: 15;
    width: 100%;
    justify-content: flex-start;
    gap: 0.25rem;
    margin-inline: 0;
    padding: 0.375rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.fi-panel-admin .fi-page-sub-navigation-tabs .fi-tabs-item {
    background: transparent;
    box-shadow: none;
}

.fi-panel-admin .fi-page-sub-navigation-tabs .fi-tabs-item:not(.fi-active):hover {
    background: #f9fafb;
}

.fi-panel-admin .fi-page-sub-navigation-tabs .fi-tabs-item.fi-active {
    background: #f0fdfa;
    box-shadow: inset 0 0 0 1px #99f6e4;
}

.fi-panel-admin .fi-page-sub-navigation-tabs .fi-tabs-item.fi-active .fi-tabs-item-label {
    font-weight: 600;
}

.fi-panel-admin .fi-page-sub-navigation-tabs .fi-badge {
    padding: 0.0625rem 0.375rem;
    font-size: 0.6875rem;
    line-height: 1.25;
}

.fi-panel-admin .student-enrollments {
    height: 100%;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.fi-panel-admin .student-enrollments__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fi-panel-admin .student-enrollments__title {
    margin: 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
}

.fi-panel-admin .student-enrollments__subtitle {
    margin: 0.25rem 0 0;
    color: #6b7280;
    font-size: 0.8125rem;
}

.fi-panel-admin .student-enrollments__empty {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.fi-panel-admin .student-enrollments__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fi-panel-admin .student-enrollment-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fafafa;
}

.fi-panel-admin .student-enrollment-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.fi-panel-admin .student-enrollment-card__heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.fi-panel-admin .student-enrollment-card__program {
    margin: 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
}

.fi-panel-admin .student-enrollment-card__status {
    padding: 0.125rem 0.5rem;
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
}

.fi-panel-admin .student-enrollment-card__status--inactive {
    border-color: #e4e4e7;
    background: #f4f4f5;
    color: #52525b;
}

.fi-panel-admin .student-enrollment-card__actions {
    display: flex;
    gap: 0.375rem;
}

.fi-panel-admin .student-enrollment-card__action {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #52525b;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.fi-panel-admin .student-enrollment-card__action:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    color: #1f2937;
}

.fi-panel-admin .student-enrollment-card__action--danger:hover {
    border-color: #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.fi-panel-admin .student-enrollment-card__params {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.875rem 1.5rem;
    margin: 0;
    align-items: start;
}

.fi-panel-admin .student-enrollment-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    align-items: start;
}

.fi-panel-admin .student-enrollment-card__footer-section {
    min-width: 0;
}

.fi-panel-admin .student-enrollment-card__footer-title {
    margin: 0 0 0.625rem;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fi-panel-admin .student-enrollment-card__footer-empty {
    margin: 0;
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 600;
}

.fi-panel-admin .student-enrollment-card__detail {
    min-width: 0;
}

.fi-panel-admin .student-enrollment-card__detail dt {
    margin-bottom: 0.125rem;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
}

.fi-panel-admin .student-enrollment-card__detail dd {
    margin: 0;
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.fi-panel-admin .student-enrollment-card__professors {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.fi-panel-admin .student-enrollment-card__admin-note {
    margin: 0.875rem 0 0;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    background: #f8fafc;
    color: #334155;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.45;
    white-space: pre-wrap;
}

.fi-panel-admin .student-enrollment-card__admin-note-label {
    display: block;
    margin-bottom: 0.125rem;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
}

.fi-panel-admin .student-enrollment-card__tuition {
    color: #6b7280;
    font-size: 0.8125rem;
    font-weight: 500;
}

.fi-panel-admin .student-enrollment-card__quota-list {
    display: grid;
    gap: 0.625rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fi-panel-admin .student-enrollment-card__quota-item,
.fi-panel-admin .student-enrollment-card__quota-total {
    display: grid;
    gap: 0.375rem;
}

.fi-panel-admin .student-enrollment-card__quota-total {
    margin-top: 0.625rem;
    padding-top: 0.625rem;
    border-top: 1px solid #e5e7eb;
}

.fi-panel-admin .student-enrollment-card__quota-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    color: #1f2937;
    font-size: 0.8125rem;
}

.fi-panel-admin .student-enrollment-card__quota-head strong {
    font-weight: 600;
}

.fi-panel-admin .student-enrollment-card__quota-head span:last-child {
    color: #4b5563;
    font-weight: 600;
    white-space: nowrap;
}

.fi-panel-admin .student-enrollment-card__quota-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.875rem;
    color: #6b7280;
    font-size: 0.75rem;
}

.fi-panel-admin .student-enrollment-card__quota-stats strong {
    color: #1f2937;
    font-weight: 700;
}

.fi-panel-admin .student-enrollment-card__quota-meta {
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
}

.fi-panel-admin .student-enrollment-card__progress {
    overflow: hidden;
    height: 0.375rem;
    border-radius: 9999px;
    background: #e5e7eb;
}

.fi-panel-admin .student-enrollment-card__progress-fill {
    height: 100%;
    border-radius: inherit;
    transition: width 0.2s ease;
}

.fi-panel-admin .student-enrollment-card__progress-fill--met {
    background: #059669;
}

.fi-panel-admin .student-enrollment-card__progress-fill--short {
    background: #d97706;
}

.fi-panel-admin .student-enrollment-card__progress-fill--over {
    background: #2563eb;
}

.fi-panel-admin .student-enrollment-card__highlights {
    display: grid;
    gap: 0.625rem;
}

.fi-panel-admin .student-enrollment-card__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.625rem;
    background: #ffffff;
}

.fi-panel-admin .student-enrollment-card__highlight-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #6b7280;
}

.fi-panel-admin .student-enrollment-card__highlight-label {
    display: block;
    margin-bottom: 0.125rem;
    color: #6b7280;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.fi-panel-admin .student-enrollment-card__highlight-value {
    display: block;
    color: #1f2937;
    font-size: 0.8125rem;
    font-weight: 600;
}

.fi-panel-admin .student-enrollment-card__highlight--signed {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.fi-panel-admin .student-enrollment-card__highlight--signed .student-enrollment-card__highlight-icon,
.fi-panel-admin .student-enrollment-card__highlight--signed .student-enrollment-card__highlight-value {
    color: #047857;
}

.fi-panel-admin .student-enrollment-card__highlight--unsigned {
    border-color: #fecaca;
    background: #fef2f2;
}

.fi-panel-admin .student-enrollment-card__highlight--unsigned .student-enrollment-card__highlight-icon,
.fi-panel-admin .student-enrollment-card__highlight--unsigned .student-enrollment-card__highlight-value {
    color: #dc2626;
}

.fi-panel-admin .student-enrollment-card__highlight--paid {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.fi-panel-admin .student-enrollment-card__highlight--paid .student-enrollment-card__highlight-icon,
.fi-panel-admin .student-enrollment-card__highlight--paid .student-enrollment-card__highlight-value {
    color: #047857;
}

.fi-panel-admin .student-enrollment-card__highlight--partial {
    border-color: #fed7aa;
    background: #fff7ed;
}

.fi-panel-admin .student-enrollment-card__highlight--partial .student-enrollment-card__highlight-icon,
.fi-panel-admin .student-enrollment-card__highlight--partial .student-enrollment-card__highlight-value {
    color: #c2410c;
}

.fi-panel-admin .student-enrollment-card__highlight--unpaid {
    border-color: #fecaca;
    background: #fef2f2;
}

.fi-panel-admin .student-enrollment-card__highlight--unpaid .student-enrollment-card__highlight-icon,
.fi-panel-admin .student-enrollment-card__highlight--unpaid .student-enrollment-card__highlight-value {
    color: #dc2626;
}

.fi-panel-admin .student-enrollment-card__account {
    min-width: 0;
}

.fi-panel-admin .student-enrollment-card__account-number {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.fi-panel-admin .student-enrollment-card__account-number code {
    padding: 0.125rem 0.375rem;
    border-radius: 0.375rem;
    background: #f3f4f6;
    color: #111827;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    font-weight: 600;
}

.fi-panel-admin .student-enrollment-card__copy {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.375rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background: #ffffff;
    color: #52525b;
    font-size: 0.6875rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.fi-panel-admin .student-enrollment-card__copy:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    color: #1f2937;
}

.fi-panel-admin .student-enrollment-card__copy svg {
    width: 0.875rem;
    height: 0.875rem;
}

.fi-panel-admin .student-lesson-card.fi-ta-record {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 0.5rem;
    padding: 0.75rem 0.875rem;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.05);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fi-panel-admin .student-lesson-card.fi-ta-record::before {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 3px;
    background: #0d9488;
    content: "";
}

.fi-panel-admin .student-lesson-card--probe.fi-ta-record::before {
    background: #ea580c;
}

.fi-panel-admin .student-lesson-card--probe.fi-ta-record {
    background: #fffbf7;
    border-color: #fed7aa;
}

.fi-panel-admin .student-lesson-card--probe .parent-lesson-card__probe-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    background: #ffedd5;
    color: #c2410c;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 0.2rem 0.5rem;
    text-transform: uppercase;
}

.fi-panel-admin .student-lesson-card.fi-clickable:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.07);
}

.fi-panel-admin .student-lesson-card.fi-ta-record .fi-ta-record-content-ctn {
    padding-block: 0;
}

.fi-panel-admin .student-lesson-card.fi-ta-record .fi-ta-record-content {
    padding-inline: 0 !important;
}

.fi-panel-admin .student-lesson-card .fi-ta-col {
    width: 100%;
    padding: 0;
}

.fi-panel-admin .student-lesson-card .fi-ta-text,
.fi-panel-admin .student-lesson-card .fi-ta-text-item {
    display: block;
    width: 100%;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__layout {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__top-left {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__top-right {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__student {
    color: #18181b;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__program-tag,
.fi-panel-admin .student-lesson-card .parent-lesson-card__duration-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3125rem 0.625rem;
    border: 1px solid transparent;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
}

.fi-panel-admin .student-lesson-card .lesson-status-badge,
.fi-panel-admin .student-lesson-card .school-week-badge {
    font-size: 0.8125rem;
    line-height: 1.25;
    padding: 0.3125rem 0.625rem;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__program-tag {
    border-color: #99f6e4;
    background: #f0fdfa;
    color: #0f766e;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__duration-tag {
    border-color: #e4e4e7;
    background: #f4f4f5;
    color: #52525b;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__when {
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: right;
    white-space: nowrap;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__meta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.375rem;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__body {
    margin-top: 0.625rem;
    padding-top: 0.625rem;
    border-top: 1px solid #f4f4f5;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__notes {
    margin: 0;
    color: #374151;
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.6;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__notes--empty {
    color: #6b7280;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__notes--cancelled {
    color: #991b1b;
    font-style: normal;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__notes-label {
    font-weight: 600;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.625rem;
    padding-top: 0.625rem;
    border-top: 1px solid #f4f4f5;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3f3f46;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__meta-icon {
    width: 1.0625rem;
    height: 1.0625rem;
    flex-shrink: 0;
    color: #52525b;
}

.fi-panel-admin .student-lesson-card .parent-lesson-card__footer-sep {
    color: #d4d4d8;
    font-size: 0.875rem;
    line-height: 1;
}

@media (max-width: 1279px) {
    .student-profile-hero {
        grid-template-columns: 1fr 1.5fr;
    }

    .student-profile-hero__details {
        padding-right: 0;
        border-right: 0;
    }

    .student-profile-hero__stats {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .student-profile-hero {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem;
    }

    .student-profile-hero__details {
        grid-template-columns: 1fr;
        padding: 1.25rem 0 0;
        border-top: 1px solid #e5e7eb;
        border-left: 0;
    }

    .student-profile-hero__stats {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .fi-panel-admin .student-enrollment-card__params {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fi-panel-admin .student-enrollment-card__footer {
        grid-template-columns: 1fr;
    }

    .fi-panel-admin .student-lesson-card .parent-lesson-card__top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .fi-panel-admin .student-lesson-card .parent-lesson-card__top-right {
        width: 100%;
        align-items: flex-start;
    }

    .fi-panel-admin .student-lesson-card .parent-lesson-card__when {
        text-align: left;
        white-space: normal;
    }

    .fi-panel-admin .student-lesson-card .parent-lesson-card__meta-badges {
        justify-content: flex-start;
    }

    .fi-panel-admin .student-lesson-card .parent-lesson-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }

    .fi-panel-admin .student-lesson-card .parent-lesson-card__footer-sep {
        display: none;
    }
}
