/* ============================================================
   tutor-profile.css
   Public tutor profile page ("/tutor/{slug}").

   Every rule here is scoped under the .tutor-profile-* prefix so
   nothing bleeds onto (or gets overridden by) any other page's CSS.
   Colors reuse the existing Elimys blue brand palette (#21374C /
   #3A648A / #4f86b8 — the same tokens tutor-listing.css and
   tutor-offering-taxonomy-search.css use) so the page still reads as
   part of the same site, even though its selectors are fully isolated.
   ============================================================ */

.tutor-profile-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
    font-size: 1.02rem;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.tutor-profile-hero {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(33, 55, 76, 0.08);
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Only rendered at all when Model.CoverPhotoUrl is set (see
   _TutorProfileHero.cshtml) — no placeholder/gradient/reserved height
   when a tutor has no cover. */
.tutor-profile-hero__cover {
    position: relative;
    z-index: 1;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.tutor-profile-hero__content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
}

/* Wrapping the photo (rather than offsetting it directly) gives it its own
   stacking context, so it always paints above the cover — never underneath
   it — and lets the overlap offset stay independent of the info column,
   which never moves. Without a cover, no modifier class applies here, so
   margin-top stays at the default 0 — zero offset. */
.tutor-profile-hero__photo-wrap {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.tutor-profile-hero__content--with-cover .tutor-profile-hero__photo-wrap {
    margin-top: -36px;
}

.tutor-profile-hero__photo {
    display: block;
    width: 172px;
    height: 172px;
    border-radius: 10px;
    object-fit: cover;
    border: 4px solid #fff;
    background: #fff;
    box-shadow: 0 4px 12px rgba(33, 55, 76, 0.14);
}

.tutor-profile-hero__info {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 700px;
    padding-top: 0.35rem;
}

.tutor-profile-hero__name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tutor-profile-hero__name {
    font-size: 2rem;
    font-weight: 800;
    color: #21374C;
    margin: 0;
}

/* Hero-scoped size only — the shared .tutor-profile-badge base size
   (used by the Offerings "Primary" tag and Credentials/Reviews badges)
   is untouched. */
.tutor-profile-hero__verify-badge {
    font-size: 0.8rem;
    padding: 0.22rem 0.65rem;
}

.tutor-profile-hero__title {
    font-size: 1.25rem;
    color: #3A648A;
    font-weight: 600;
    margin-top: 0.2rem;
}

.tutor-profile-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
}

.tutor-profile-hero__modes {
    margin-top: 0.4rem;
}

.tutor-profile-hero__meta-item i {
    color: #3A648A;
    margin-right: 0.25rem;
}

/* Teaching-mode icon gets a subtle teal accent, distinct from the
   location pin's muted Elimys blue — text stays the same neutral color. */
.tutor-profile-hero__modes .tutor-profile-hero__meta-item i {
    color: #0f766e;
}

.tutor-profile-hero__rating {
    color: #21374C;
    font-weight: 600;
}

.tutor-profile-hero__rating i {
    color: #f5a623;
}

.tutor-profile-hero__rating-count {
    font-size: 0.875rem;
    font-weight: 400;
    color: #6c757d;
}

/* "New on Elimys" — a light accent (icon + teal text), not another pill,
   so it stays secondary to the name/headline and doesn't compete with the
   verification badge. Reuses the same teal already used for the app's
   active-state accent (see _MainLayout mobile menu). */
.tutor-profile-hero__new-badge {
    color: #0f766e;
    font-weight: 600;
}

.tutor-profile-hero__new-badge i {
    color: #0f766e;
}

.tutor-profile-hero__bio {
    margin-top: 0.85rem;
    max-width: 640px;
    color: #343a40;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.55;
    white-space: pre-wrap;
    max-height: 4.65em;
    overflow: hidden;
    transition: max-height 0.2s ease;
}

.tutor-profile-hero__bio.tutor-profile-hero__bio--expanded {
    max-height: none;
}

.tutor-profile-bio-toggle {
    background: none;
    border: none;
    padding: 0.35rem 0 0;
    color: #3A648A;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .tutor-profile-hero__photo {
        width: 140px;
        height: 140px;
        border-radius: 9px;
    }

    .tutor-profile-hero__content--with-cover .tutor-profile-hero__photo-wrap {
        margin-top: -30px;
    }
}

@media (max-width: 767.98px) {
    .tutor-profile-hero__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem 1.1rem 1.5rem;
        gap: 0.85rem;
    }

    .tutor-profile-hero__photo {
        width: 116px;
        height: 116px;
        border-radius: 8px;
    }

    .tutor-profile-hero__content--with-cover .tutor-profile-hero__photo-wrap {
        margin-top: -24px;
    }

    .tutor-profile-hero__info {
        padding-top: 0;
        width: 100%;
        max-width: none;
    }

    .tutor-profile-hero__name-row,
    .tutor-profile-hero__meta {
        justify-content: center;
    }

    .tutor-profile-hero__bio {
        max-width: none;
    }
}

/* ── Badges & tags (shared) ────────────────────────────────────────────── */

.tutor-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
}

/* Subtle semantic colors — green for verified is a genuine positive signal;
   amber (not red) for unverified since it's a neutral/pending state, not
   an error. Shared by the hero's identity badge and the Reviews/Credentials
   "Verified" badges, which represent the same underlying trust concept. */
.tutor-profile-badge--verified {
    color: #287A50;
    background-color: #E9F6EF;
}

.tutor-profile-badge--unverified {
    color: #8A6518;
    background-color: #FFF4D8;
}

.tutor-profile-badge--primary {
    color: #21374C;
    background-color: rgba(58, 100, 138, 0.14);
}

.tutor-profile-badge--sm {
    font-size: 0.72rem;
    padding: 0.15rem 0.55rem;
}

.tutor-profile-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 1rem;
    color: #21374C;
    background: rgba(58, 100, 138, 0.08);
    border-radius: 4px;
    margin: 0.2rem 0.4rem 0.2rem 0;
}

/* Semantic chip variants used by the offering cards — the base
   .tutor-profile-tag rule above stays the default for Locations/
   Credentials, which don't opt into a variant. */
.tutor-profile-tag--mode {
    font-size: 0.88rem;
    color: #246B72;
    background: #EAF4F6;
}

.tutor-profile-tag--academic {
    font-size: 0.88rem;
    color: #62548A;
    background: #F1EFF8;
}

.tutor-profile-tag--neutral {
    font-size: 0.88rem;
    color: #34495E;
    background: #F1F4F6;
}

/* ── In-page section nav ────────────────────────────────────────────────── */

.tutor-profile-sectionnav {
    position: sticky;
    top: 0;
    z-index: 15;
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.6rem 0.1rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tutor-profile-sectionnav::-webkit-scrollbar {
    display: none;
}

.tutor-profile-sectionnav a {
    flex: 0 0 auto;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3A648A;
    background: rgba(58, 100, 138, 0.08);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.tutor-profile-sectionnav a:hover,
.tutor-profile-sectionnav a.tutor-profile-sectionnav__link--active {
    color: #fff;
    background: #3A648A;
}

/* ── Section shell ──────────────────────────────────────────────────────── */

.tutor-profile-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tutor-profile-section {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 8px rgba(33, 55, 76, 0.06);
}

.tutor-profile-section__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2F4E6F;
    margin-bottom: 1.25rem;
}

.tutor-profile-section__title i {
    color: #3A648A;
    margin-right: 0.5rem;
}

/* ── Offerings ──────────────────────────────────────────────────────────── */

.tutor-profile-offerings {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.tutor-profile-offering-card {
    display: flex;
    flex-direction: column;
    flex: 0 1 340px;
    border: 1px solid rgba(33, 55, 76, 0.08);
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.tutor-profile-offering-card__body {
    flex: 1 1 auto;
}

.tutor-profile-offering-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.tutor-profile-offering-card__subject {
    font-size: 1.35rem;
    font-weight: 600;
    color: #21374C;
    margin: 0;
}

.tutor-profile-offering-card__category {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

.tutor-profile-offering-card__description {
    font-size: 1rem;
    line-height: 1.45;
    color: #495057;
    margin: 0.6rem 0 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tutor-offering-primary {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .7rem;
    border-radius: 4px;
    background: #FFF3D6;
    color: #8A5A00;
    font-size: .75rem;
    font-weight: 600;
}

.tutor-profile-offering-card__tags {
    margin-top: 0.65rem;
}

.tutor-profile-offering-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(33, 55, 76, 0.08);
}

.tutor-profile-offering-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* Requester CTA buttons (Ask a Question / Request Tutoring / Continue Conversation / etc.) —
   same pill + brand-navy language as .tutor-profile-sectionnav a above, so these read as part
   of the same page rather than a generic Bootstrap control. */
.tutor-profile-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1.15rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    border: 1.5px solid #3A648A;
    background: #3A648A;
    color: #fff;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

    .tutor-profile-cta-btn:hover,
    .tutor-profile-cta-btn:focus {
        background: #21374C;
        border-color: #21374C;
        color: #fff;
        text-decoration: none;
    }

    .tutor-profile-cta-btn:focus-visible {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(58, 100, 138, 0.35);
    }

/* Secondary action in a pair (e.g. "Continue Conversation" next to "Request Tutoring") —
   tinted rather than solid, matching .btn-outline-elimys's tint-to-solid hover pattern. */
.tutor-profile-cta-btn--outline {
    background: rgba(58, 100, 138, 0.08);
    border-color: rgba(58, 100, 138, 0.35);
    color: #3A648A;
}

    .tutor-profile-cta-btn--outline:hover,
    .tutor-profile-cta-btn--outline:focus {
        background: #3A648A;
        border-color: #3A648A;
        color: #fff;
    }

/* Positive/actionable state — a confirmed engagement or a proposal awaiting review. */
.tutor-profile-cta-btn--success {
    background: #2F8F5B;
    border-color: #2F8F5B;
}

    .tutor-profile-cta-btn--success:hover,
    .tutor-profile-cta-btn--success:focus {
        background: #236B44;
        border-color: #236B44;
    }

@media (max-width: 480px) {
    .tutor-profile-offering-card__actions .tutor-profile-cta-btn {
        flex: 1 1 auto;
    }
}

.tutor-profile-offering-card__price {
    display: flex;
    flex-direction: column;
}

.tutor-profile-offering-card__amount {
    font-weight: 700;
    font-size: 1.18rem;
    color: #21374C;
}

.tutor-profile-offering-card__basis {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.1rem;
}

.tutor-profile-offering-card__negotiable {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1B8A63;
}

/* Scoped to the Lessons & Pricing heading only — softer than the shared
   .tutor-profile-section__title navy, but still stronger than body text. */
.tutor-lessons__title,
.tutor-lessons__title i {
    color: #2F4E6F;
}

.tutor-lessons__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 991.98px) {
    .tutor-lessons__layout {
        grid-template-columns: 1fr;
    }
}

/* A single offering gets room to breathe instead of sitting in a
   340px card next to empty space — still left-aligned, not stretched. */
.tutor-profile-offerings--single .tutor-profile-offering-card {
    flex: 0 1 620px;
    max-width: 620px;
    padding: 1.5rem;
}

.tutor-lessons__summary {
    background: #F7F9FB;
    border: 1px solid rgba(33, 55, 76, 0.08);
    border-radius: 0.5rem;
    padding: 1.1rem 1.25rem;
}

.tutor-lessons__summary-title {
    font-size: 1rem;
    font-weight: 600;
    color: #21374C;
    margin: 0 0 0.75rem;
}

.tutor-lessons__summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.92rem;
    color: #495057;
}

.tutor-lessons__summary-price {
    margin-top: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(33, 55, 76, 0.08);
    font-size: 1.05rem;
    font-weight: 700;
    color: #21374C;
}

.tutor-lessons__summary-negotiable {
    margin-top: 0.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1B8A63;
}

/* ── Locations ──────────────────────────────────────────────────────────── */

.tutor-profile-locations {
    display: grid;
    gap: 0.875rem;
}

/* 2+ locations: auto-fit wraps naturally — 2 columns fills the row evenly,
   3 fits when there's room, 4+ wraps into further rows. No horizontal
   scrolling and no cramped cards, since auto-fit never packs a column
   narrower than the minmax floor. */
.tutor-profile-locations--multiple {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* A single teaching location shouldn't stretch across the whole section —
   cap it to roughly the width one card would get in a two-column row
   (half the row, minus half the gap) instead of the full section width. */
.tutor-profile-locations--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(480px, calc(50% - 0.4375rem));
}

.tutor-profile-location-card {
    border: 1px solid rgba(33, 55, 76, 0.08);
    border-radius: 0.5rem;
    padding: 1.1rem 1.25rem;
}

.tutor-profile-location-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.tutor-profile-location-card__title-wrap {
    min-width: 0;
    flex: 1 1 auto;
}

/* The location itself is the primary card heading — what a learner scans
   for first — with the location type demoted to muted supporting text
   underneath it (previously the other way around). */
.tutor-profile-location-card__address {
    font-weight: 600;
    font-size: 1.1rem;
    color: #21374C;
    overflow-wrap: break-word;
}

.tutor-profile-location-card__address i {
    color: #3A648A;
    margin-right: 0.3rem;
}

.tutor-profile-location-card__type {
    font-size: 0.92rem;
    font-weight: 500;
    color: #6c757d;
    margin-top: 0.2rem;
}

.tutor-profile-badge--primary {
    flex-shrink: 0;
}

.tutor-profile-location-card__tags {
    margin-top: 0.65rem;
}

.tutor-profile-location-card__fee {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(33, 55, 76, 0.08);
    font-size: 0.92rem;
}

.tutor-profile-location-card__fee-label {
    color: #6c757d;
}

.tutor-profile-location-card__fee-value {
    font-weight: 600;
    color: #21374C;
    white-space: nowrap;
}

.tutor-profile-location-card__description {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0.6rem 0 0;
}

@media (max-width: 767.98px) {
    .tutor-profile-locations--single,
    .tutor-profile-locations--multiple {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

/* ── Media / gallery ────────────────────────────────────────────────────── */

.tutor-profile-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.tutor-profile-media-item {
    position: relative;
    border: 0;
    padding: 0;
    aspect-ratio: 1 / 1;
    border-radius: 0.6rem;
    overflow: hidden;
    background: #f1f3f5;
    cursor: pointer;
}

.tutor-profile-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tutor-profile-media-item__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #adb5bd;
    font-size: 1.5rem;
}

.tutor-profile-media-item__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    background: rgba(33, 55, 76, 0.25);
}

.tutor-profile-media-item__badge {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: #fff;
}

.tutor-profile-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1060;
}

.tutor-profile-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
}

.tutor-profile-lightbox__panel {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: 5vh auto;
    display: flex;
    flex-direction: column;
}

.tutor-profile-lightbox__close {
    position: absolute;
    top: -2.4rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
}

.tutor-profile-lightbox__body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutor-profile-lightbox__body img,
.tutor-profile-lightbox__body video,
.tutor-profile-lightbox__body iframe {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 0.5rem;
    border: 0;
}

/* ── Reviews ────────────────────────────────────────────────────────────── */

.tutor-profile-reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.tutor-profile-reviews-summary__score {
    font-size: 2.75rem;
    font-weight: 700;
    color: #21374C;
    line-height: 1;
}

.tutor-profile-stars {
    color: #f5a623;
    font-size: 1.1rem;
}

.tutor-profile-stars--sm {
    font-size: 0.92rem;
}

.tutor-profile-review-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tutor-profile-review-card {
    border-top: 1px solid rgba(33, 55, 76, 0.08);
    padding-top: 1rem;
}

.tutor-profile-review-card__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tutor-profile-review-card__name {
    font-weight: 600;
    font-size: 1.05rem;
    color: #21374C;
}

.tutor-profile-review-card__date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.15rem;
}

.tutor-profile-review-card__comment {
    margin: 0.6rem 0 0;
    color: #343a40;
    font-size: 1rem;
    line-height: 1.55;
}

.tutor-profile-review-card__response {
    margin-top: 0.6rem;
    padding: 0.7rem 0.9rem;
    background: rgba(58, 100, 138, 0.06);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: #343a40;
}

.tutor-profile-review-card__response p {
    margin: 0.2rem 0 0;
}

/* ── Availability ───────────────────────────────────────────────────────── */

.tutor-profile-availability {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 230px));
    gap: 1rem;
    justify-content: start;
}

.tutor-profile-availability-day {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(33, 55, 76, 0.08);
    border-radius: 0.5rem;
    background: #F7F9FB;
    min-width: 0;
}

.tutor-profile-availability-day__name {
    font-weight: 600;
    font-size: 1.18rem;
    color: #21374C;
    padding-top: 0;
}

.tutor-profile-availability-day__slots {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 0;
}

.tutor-profile-availability-slot {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(33, 55, 76, 0.08);
    border-radius: 0.6rem;
    background: #fff;
}

.tutor-profile-availability-slot__time {
    font-weight: 600;
    font-size: 1rem;
    color: #21374C;
}

.tutor-profile-availability-slot__mode {
    font-size: 0.85rem;
    color: #6c757d;
}

@media (max-width: 767.98px) {
    .tutor-profile-availability {
        grid-template-columns: 1fr;
    }
}

.tutor-profile-availability__note {
    margin-top: 0.85rem;
    font-size: 1rem;
}

/* ── Credentials ────────────────────────────────────────────────────────── */

.tutor-profile-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.tutor-profile-credential-row {
    display: flex;
    gap: 0.85rem;
}

.tutor-profile-credential-row__icon {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 100, 138, 0.1);
    color: #3A648A;
}

.tutor-profile-credential-row__title-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tutor-profile-credential-row__title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #21374C;
}

.tutor-profile-credential-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

.tutor-profile-credential-row__meta span:not(:last-child)::after {
    content: '•';
    margin-left: 0.5rem;
    color: #ced4da;
}
