

    .theses-wrapper {
        margin-top: 24px;
        width: 100%;
        font-feature-settings: "ss01";
    }

    .theses-header-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 24px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: var(--shadow);
        margin-bottom: 24px;
    }

    .theses-header-title {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .theses-header-title i {
        font-size: 1.6rem;
        color: #7c3aed;
        background: #f5f3ff;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
        border-radius: 14px;
    }

    .theses-header-title h2 {
        font-size: 1.25rem;
        color: var(--primary);
        font-weight: 800;
        margin: 0;
    }

    .theses-header-title p {
        color: var(--muted);
        font-size: 0.85rem;
        margin: 4px 0 0 0;
    }

    .theses-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .thesis-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 24px 26px;
        box-shadow: var(--shadow);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .thesis-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    .thesis-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 5px;
        height: 100%;
    }

    .thesis-card.phd::before {
        background: #7c3aed;
    }

    .thesis-card.msc::before {
        background: #0284c7;
    }

    .thesis-card.bsc::before {
        background: #059669;
    }

    .thesis-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    .thesis-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
        font-weight: 800;
        padding: 5px 12px;
        border-radius: 10px;
    }

    .badge-phd {
        background: #f5f3ff;
        color: #6d28d9;
        border: 1px solid #ddd6fe;
    }

    .badge-msc {
        background: #f0f9ff;
        color: #0369a1;
        border: 1px solid #bae6fd;
    }

    .badge-bsc {
        background: #ecfdf5;
        color: #047857;
        border: 1px solid #a7f3d0;
    }

    .thesis-university {
        color: var(--muted);
        font-size: 0.82rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .thesis-title {
        font-size: 1.08rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.75;
        margin: 0 0 16px 0;
    }

    .thesis-professors {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 12px;
        padding-top: 14px;
        border-top: 1px dashed var(--border);
        background: #fafbfc;
        margin: 0 -26px -26px -26px;
        padding: 16px 26px;
        border-radius: 0 0 20px 20px;
    }

    .prof-group {
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .prof-group i {
        font-size: 1.1rem;
        margin-top: 2px;
    }

    .prof-supervisor i {
        color: #059669;
    }

    .prof-advisor i {
        color: #d97706;
    }

    .prof-content {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .prof-label {
        font-size: 0.76rem;
        font-weight: 800;
        color: var(--muted);
    }

    .prof-names {
        font-size: 0.86rem;
        font-weight: 700;
        color: var(--primary);
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .theses-header-card {
            flex-direction: column;
            text-align: center;
        }

        .theses-header-title {
            flex-direction: column;
        }

        .thesis-card {
            padding: 20px 18px;
        }

        .thesis-professors {
            margin: 0 -18px -20px -18px;
            padding: 14px 18px;
            grid-template-columns: 1fr;
        }

        .thesis-top-row {
            flex-direction: column;
            align-items: flex-start;
        }
    }
